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 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(""); } @@ -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 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 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 targetClass, fi } } - /** - * @since 9.1.2 - */ - private static Optional parseDocumentFromSAXSource(SAXSource source, Class 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 clazz = (Class) 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 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 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 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 set method for the svcLvl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSvcLvl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceLevel8Choice } - * - * - */ - public List getSvcLvl() { - if (svcLvl == null) { - svcLvl = new ArrayList(); - } - return this.svcLvl; - } - - /** - * Gets the value of the lclInstrm property. - * - * @return - * possible object is - * {@link LocalInstrument2Choice } - * - */ - public LocalInstrument2Choice getLclInstrm() { - return lclInstrm; - } - - /** - * Sets the value of the lclInstrm property. - * - * @param value - * allowed object is - * {@link LocalInstrument2Choice } - * - */ - public PaymentTypeInformation28 setLclInstrm(LocalInstrument2Choice value) { - this.lclInstrm = value; - return this; - } - - /** - * Gets the value of the ctgyPurp property. - * - * @return - * possible object is - * {@link CategoryPurpose1Choice } - * - */ - public CategoryPurpose1Choice getCtgyPurp() { - return ctgyPurp; - } - - /** - * Sets the value of the ctgyPurp property. - * - * @param value - * allowed object is - * {@link CategoryPurpose1Choice } - * - */ - public PaymentTypeInformation28 setCtgyPurp(CategoryPurpose1Choice value) { - this.ctgyPurp = 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); - } - - /** - * Adds a new item to the svcLvl list. - * @see #getSvcLvl() - * - */ - public PaymentTypeInformation28 addSvcLvl(ServiceLevel8Choice svcLvl) { - getSvcLvl().add(svcLvl); - return this; - } - -} diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest1.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest1.java index 3980cdc95..55f1b845c 100644 --- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest1.java +++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -25,7 +27,8 @@ }) public class SettlementTimeRequest1 { - @XmlElement(name = "CLSTm", required = true) + @XmlElement(name = "CLSTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar clsTm; @@ -34,7 +37,7 @@ public class SettlementTimeRequest1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCLSTm() { @@ -46,7 +49,7 @@ public XMLGregorianCalendar getCLSTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementTimeRequest1 setCLSTm(XMLGregorianCalendar value) { diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionParties8.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionParties8.java deleted file mode 100644 index 05ebb3471..000000000 --- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionParties8.java +++ /dev/null @@ -1,685 +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; - - -/** - * Provides further details on the parties specific to the individual transaction. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TransactionParties8", propOrder = { - "ultmtDbtr", - "dbtr", - "dbtrAcct", - "initgPty", - "dbtrAgt", - "dbtrAgtAcct", - "prvsInstgAgt1", - "prvsInstgAgt1Acct", - "prvsInstgAgt2", - "prvsInstgAgt2Acct", - "prvsInstgAgt3", - "prvsInstgAgt3Acct", - "intrmyAgt1", - "intrmyAgt1Acct", - "intrmyAgt2", - "intrmyAgt2Acct", - "intrmyAgt3", - "intrmyAgt3Acct", - "cdtrAgt", - "cdtrAgtAcct", - "cdtr", - "cdtrAcct", - "ultmtCdtr" -}) -public class TransactionParties8 { - - @XmlElement(name = "UltmtDbtr") - protected Party40Choice ultmtDbtr; - @XmlElement(name = "Dbtr", required = true) - protected Party40Choice dbtr; - @XmlElement(name = "DbtrAcct") - protected CashAccount38 dbtrAcct; - @XmlElement(name = "InitgPty") - protected Party40Choice initgPty; - @XmlElement(name = "DbtrAgt") - protected BranchAndFinancialInstitutionIdentification6 dbtrAgt; - @XmlElement(name = "DbtrAgtAcct") - protected CashAccount38 dbtrAgtAcct; - @XmlElement(name = "PrvsInstgAgt1") - protected BranchAndFinancialInstitutionIdentification6 prvsInstgAgt1; - @XmlElement(name = "PrvsInstgAgt1Acct") - protected CashAccount38 prvsInstgAgt1Acct; - @XmlElement(name = "PrvsInstgAgt2") - protected BranchAndFinancialInstitutionIdentification6 prvsInstgAgt2; - @XmlElement(name = "PrvsInstgAgt2Acct") - protected CashAccount38 prvsInstgAgt2Acct; - @XmlElement(name = "PrvsInstgAgt3") - protected BranchAndFinancialInstitutionIdentification6 prvsInstgAgt3; - @XmlElement(name = "PrvsInstgAgt3Acct") - protected CashAccount38 prvsInstgAgt3Acct; - @XmlElement(name = "IntrmyAgt1") - protected BranchAndFinancialInstitutionIdentification6 intrmyAgt1; - @XmlElement(name = "IntrmyAgt1Acct") - protected CashAccount38 intrmyAgt1Acct; - @XmlElement(name = "IntrmyAgt2") - protected BranchAndFinancialInstitutionIdentification6 intrmyAgt2; - @XmlElement(name = "IntrmyAgt2Acct") - protected CashAccount38 intrmyAgt2Acct; - @XmlElement(name = "IntrmyAgt3") - protected BranchAndFinancialInstitutionIdentification6 intrmyAgt3; - @XmlElement(name = "IntrmyAgt3Acct") - protected CashAccount38 intrmyAgt3Acct; - @XmlElement(name = "CdtrAgt") - protected BranchAndFinancialInstitutionIdentification6 cdtrAgt; - @XmlElement(name = "CdtrAgtAcct") - protected CashAccount38 cdtrAgtAcct; - @XmlElement(name = "Cdtr", required = true) - protected Party40Choice cdtr; - @XmlElement(name = "CdtrAcct") - protected CashAccount38 cdtrAcct; - @XmlElement(name = "UltmtCdtr") - protected Party40Choice ultmtCdtr; - - /** - * Gets the value of the ultmtDbtr property. - * - * @return - * possible object is - * {@link Party40Choice } - * - */ - public Party40Choice getUltmtDbtr() { - return ultmtDbtr; - } - - /** - * Sets the value of the ultmtDbtr property. - * - * @param value - * allowed object is - * {@link Party40Choice } - * - */ - public TransactionParties8 setUltmtDbtr(Party40Choice value) { - this.ultmtDbtr = value; - return this; - } - - /** - * Gets the value of the dbtr property. - * - * @return - * possible object is - * {@link Party40Choice } - * - */ - public Party40Choice getDbtr() { - return dbtr; - } - - /** - * Sets the value of the dbtr property. - * - * @param value - * allowed object is - * {@link Party40Choice } - * - */ - public TransactionParties8 setDbtr(Party40Choice value) { - this.dbtr = value; - return this; - } - - /** - * Gets the value of the dbtrAcct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getDbtrAcct() { - return dbtrAcct; - } - - /** - * Sets the value of the dbtrAcct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setDbtrAcct(CashAccount38 value) { - this.dbtrAcct = value; - return this; - } - - /** - * Gets the value of the initgPty property. - * - * @return - * possible object is - * {@link Party40Choice } - * - */ - public Party40Choice getInitgPty() { - return initgPty; - } - - /** - * Sets the value of the initgPty property. - * - * @param value - * allowed object is - * {@link Party40Choice } - * - */ - public TransactionParties8 setInitgPty(Party40Choice value) { - this.initgPty = value; - return this; - } - - /** - * Gets the value of the dbtrAgt property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getDbtrAgt() { - return dbtrAgt; - } - - /** - * Sets the value of the dbtrAgt property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setDbtrAgt(BranchAndFinancialInstitutionIdentification6 value) { - this.dbtrAgt = value; - return this; - } - - /** - * Gets the value of the dbtrAgtAcct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getDbtrAgtAcct() { - return dbtrAgtAcct; - } - - /** - * Sets the value of the dbtrAgtAcct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setDbtrAgtAcct(CashAccount38 value) { - this.dbtrAgtAcct = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt1 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getPrvsInstgAgt1() { - return prvsInstgAgt1; - } - - /** - * Sets the value of the prvsInstgAgt1 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setPrvsInstgAgt1(BranchAndFinancialInstitutionIdentification6 value) { - this.prvsInstgAgt1 = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt1Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getPrvsInstgAgt1Acct() { - return prvsInstgAgt1Acct; - } - - /** - * Sets the value of the prvsInstgAgt1Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setPrvsInstgAgt1Acct(CashAccount38 value) { - this.prvsInstgAgt1Acct = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt2 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getPrvsInstgAgt2() { - return prvsInstgAgt2; - } - - /** - * Sets the value of the prvsInstgAgt2 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setPrvsInstgAgt2(BranchAndFinancialInstitutionIdentification6 value) { - this.prvsInstgAgt2 = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt2Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getPrvsInstgAgt2Acct() { - return prvsInstgAgt2Acct; - } - - /** - * Sets the value of the prvsInstgAgt2Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setPrvsInstgAgt2Acct(CashAccount38 value) { - this.prvsInstgAgt2Acct = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt3 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getPrvsInstgAgt3() { - return prvsInstgAgt3; - } - - /** - * Sets the value of the prvsInstgAgt3 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setPrvsInstgAgt3(BranchAndFinancialInstitutionIdentification6 value) { - this.prvsInstgAgt3 = value; - return this; - } - - /** - * Gets the value of the prvsInstgAgt3Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getPrvsInstgAgt3Acct() { - return prvsInstgAgt3Acct; - } - - /** - * Sets the value of the prvsInstgAgt3Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setPrvsInstgAgt3Acct(CashAccount38 value) { - this.prvsInstgAgt3Acct = value; - return this; - } - - /** - * Gets the value of the intrmyAgt1 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getIntrmyAgt1() { - return intrmyAgt1; - } - - /** - * Sets the value of the intrmyAgt1 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setIntrmyAgt1(BranchAndFinancialInstitutionIdentification6 value) { - this.intrmyAgt1 = value; - return this; - } - - /** - * Gets the value of the intrmyAgt1Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getIntrmyAgt1Acct() { - return intrmyAgt1Acct; - } - - /** - * Sets the value of the intrmyAgt1Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setIntrmyAgt1Acct(CashAccount38 value) { - this.intrmyAgt1Acct = value; - return this; - } - - /** - * Gets the value of the intrmyAgt2 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getIntrmyAgt2() { - return intrmyAgt2; - } - - /** - * Sets the value of the intrmyAgt2 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setIntrmyAgt2(BranchAndFinancialInstitutionIdentification6 value) { - this.intrmyAgt2 = value; - return this; - } - - /** - * Gets the value of the intrmyAgt2Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getIntrmyAgt2Acct() { - return intrmyAgt2Acct; - } - - /** - * Sets the value of the intrmyAgt2Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setIntrmyAgt2Acct(CashAccount38 value) { - this.intrmyAgt2Acct = value; - return this; - } - - /** - * Gets the value of the intrmyAgt3 property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getIntrmyAgt3() { - return intrmyAgt3; - } - - /** - * Sets the value of the intrmyAgt3 property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setIntrmyAgt3(BranchAndFinancialInstitutionIdentification6 value) { - this.intrmyAgt3 = value; - return this; - } - - /** - * Gets the value of the intrmyAgt3Acct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getIntrmyAgt3Acct() { - return intrmyAgt3Acct; - } - - /** - * Sets the value of the intrmyAgt3Acct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setIntrmyAgt3Acct(CashAccount38 value) { - this.intrmyAgt3Acct = value; - return this; - } - - /** - * Gets the value of the cdtrAgt property. - * - * @return - * possible object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public BranchAndFinancialInstitutionIdentification6 getCdtrAgt() { - return cdtrAgt; - } - - /** - * Sets the value of the cdtrAgt property. - * - * @param value - * allowed object is - * {@link BranchAndFinancialInstitutionIdentification6 } - * - */ - public TransactionParties8 setCdtrAgt(BranchAndFinancialInstitutionIdentification6 value) { - this.cdtrAgt = value; - return this; - } - - /** - * Gets the value of the cdtrAgtAcct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getCdtrAgtAcct() { - return cdtrAgtAcct; - } - - /** - * Sets the value of the cdtrAgtAcct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setCdtrAgtAcct(CashAccount38 value) { - this.cdtrAgtAcct = value; - return this; - } - - /** - * Gets the value of the cdtr property. - * - * @return - * possible object is - * {@link Party40Choice } - * - */ - public Party40Choice getCdtr() { - return cdtr; - } - - /** - * Sets the value of the cdtr property. - * - * @param value - * allowed object is - * {@link Party40Choice } - * - */ - public TransactionParties8 setCdtr(Party40Choice value) { - this.cdtr = value; - return this; - } - - /** - * Gets the value of the cdtrAcct property. - * - * @return - * possible object is - * {@link CashAccount38 } - * - */ - public CashAccount38 getCdtrAcct() { - return cdtrAcct; - } - - /** - * Sets the value of the cdtrAcct property. - * - * @param value - * allowed object is - * {@link CashAccount38 } - * - */ - public TransactionParties8 setCdtrAcct(CashAccount38 value) { - this.cdtrAcct = value; - return this; - } - - /** - * Gets the value of the ultmtCdtr property. - * - * @return - * possible object is - * {@link Party40Choice } - * - */ - public Party40Choice getUltmtCdtr() { - return ultmtCdtr; - } - - /** - * Sets the value of the ultmtCdtr property. - * - * @param value - * allowed object is - * {@link Party40Choice } - * - */ - public TransactionParties8 setUltmtCdtr(Party40Choice value) { - this.ultmtCdtr = 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-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100102.java index ccc7487c9..b732c6441 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100102 parse(String xml) { - return ((MxPain00100102) MxReadImpl.parse(MxPain00100102 .class, xml, _classes)); + return ((MxPain00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100103.java index b58e9f4df..411221efc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100103 parse(String xml) { - return ((MxPain00100103) MxReadImpl.parse(MxPain00100103 .class, xml, _classes)); + return ((MxPain00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100104.java index 10f074990..4f4d6f2ed 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100104 parse(String xml) { - return ((MxPain00100104) MxReadImpl.parse(MxPain00100104 .class, xml, _classes)); + return ((MxPain00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100105.java index a2c0fb1a7..36cb11059 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100105 parse(String xml) { - return ((MxPain00100105) MxReadImpl.parse(MxPain00100105 .class, xml, _classes)); + return ((MxPain00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100106.java index 812dc3a67..1964f7f99 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100106 parse(String xml) { - return ((MxPain00100106) MxReadImpl.parse(MxPain00100106 .class, xml, _classes)); + return ((MxPain00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100107.java index a9436d6d1..a6962bc37 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100107 parse(String xml) { - return ((MxPain00100107) MxReadImpl.parse(MxPain00100107 .class, xml, _classes)); + return ((MxPain00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100108.java index d5076f0c9..92e96bc00 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100108 parse(String xml) { - return ((MxPain00100108) MxReadImpl.parse(MxPain00100108 .class, xml, _classes)); + return ((MxPain00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100109.java index 4fef4740e..e18036319 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100109 parse(String xml) { - return ((MxPain00100109) MxReadImpl.parse(MxPain00100109 .class, xml, _classes)); + return ((MxPain00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100110.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100110.java index b9e139ae5..e4f62e7ea 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100110.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100110 parse(String xml) { - return ((MxPain00100110) MxReadImpl.parse(MxPain00100110 .class, xml, _classes)); + return ((MxPain00100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100110 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100111.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100111.java index 3fa016535..41725e122 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100111.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100111 parse(String xml) { - return ((MxPain00100111) MxReadImpl.parse(MxPain00100111 .class, xml, _classes)); + return ((MxPain00100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100111 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100303.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100303.java index 51aa3cec5..b772131bc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100303.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00100303.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00100303 parse(String xml) { - return ((MxPain00100303) MxReadImpl.parse(MxPain00100303 .class, xml, _classes)); + return ((MxPain00100303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00100303 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00100303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00100303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200102.java index 2faf09cd9..b36b58f3d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200102 parse(String xml) { - return ((MxPain00200102) MxReadImpl.parse(MxPain00200102 .class, xml, _classes)); + return ((MxPain00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200103.java index 64302dfc6..2cd02cc4e 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200103 parse(String xml) { - return ((MxPain00200103) MxReadImpl.parse(MxPain00200103 .class, xml, _classes)); + return ((MxPain00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200104.java index 2fbdcf43d..e51f01a0c 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200104 parse(String xml) { - return ((MxPain00200104) MxReadImpl.parse(MxPain00200104 .class, xml, _classes)); + return ((MxPain00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200105.java index c6fe29faa..50016f8db 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200105 parse(String xml) { - return ((MxPain00200105) MxReadImpl.parse(MxPain00200105 .class, xml, _classes)); + return ((MxPain00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200106.java index ac21d9901..366ada03a 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200106 parse(String xml) { - return ((MxPain00200106) MxReadImpl.parse(MxPain00200106 .class, xml, _classes)); + return ((MxPain00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200107.java index 2a0df0069..cefb345bc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200107 parse(String xml) { - return ((MxPain00200107) MxReadImpl.parse(MxPain00200107 .class, xml, _classes)); + return ((MxPain00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200108.java index 2244850a9..acd4bc54d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200108 parse(String xml) { - return ((MxPain00200108) MxReadImpl.parse(MxPain00200108 .class, xml, _classes)); + return ((MxPain00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200109.java index bf5df79ff..feab1f957 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200109 parse(String xml) { - return ((MxPain00200109) MxReadImpl.parse(MxPain00200109 .class, xml, _classes)); + return ((MxPain00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200110.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200110.java index 14ae0ac04..0c5225afc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200110.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200110 parse(String xml) { - return ((MxPain00200110) MxReadImpl.parse(MxPain00200110 .class, xml, _classes)); + return ((MxPain00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200110 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200111.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200111.java index aeff55837..2a56a6860 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200111.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200111 parse(String xml) { - return ((MxPain00200111) MxReadImpl.parse(MxPain00200111 .class, xml, _classes)); + return ((MxPain00200111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200111 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200112.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200112.java index 616e35243..a9f9796b3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200112.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200112 parse(String xml) { - return ((MxPain00200112) MxReadImpl.parse(MxPain00200112 .class, xml, _classes)); + return ((MxPain00200112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200112 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200303.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200303.java index dda9ad1c6..f83fb003f 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200303.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00200303.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00200303 parse(String xml) { - return ((MxPain00200303) MxReadImpl.parse(MxPain00200303 .class, xml, _classes)); + return ((MxPain00200303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00200303 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00200303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00200303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00600101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00600101.java index c2920dd89..bc272109c 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00600101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00600101 parse(String xml) { - return ((MxPain00600101) MxReadImpl.parse(MxPain00600101 .class, xml, _classes)); + return ((MxPain00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700101.java index 2362de4ef..4801e8ff3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700101 parse(String xml) { - return ((MxPain00700101) MxReadImpl.parse(MxPain00700101 .class, xml, _classes)); + return ((MxPain00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700102.java index e1085ab26..e955e134b 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700102 parse(String xml) { - return ((MxPain00700102) MxReadImpl.parse(MxPain00700102 .class, xml, _classes)); + return ((MxPain00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700103.java index e88e4fafc..feea34fe9 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700103 parse(String xml) { - return ((MxPain00700103) MxReadImpl.parse(MxPain00700103 .class, xml, _classes)); + return ((MxPain00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700104.java index ce22a32a9..7a76b8646 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700104 parse(String xml) { - return ((MxPain00700104) MxReadImpl.parse(MxPain00700104 .class, xml, _classes)); + return ((MxPain00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700105.java index 0b5e7d7a3..49a1e6074 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700105 parse(String xml) { - return ((MxPain00700105) MxReadImpl.parse(MxPain00700105 .class, xml, _classes)); + return ((MxPain00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700106.java index ff48a2ee4..c89cc8585 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700106 parse(String xml) { - return ((MxPain00700106) MxReadImpl.parse(MxPain00700106 .class, xml, _classes)); + return ((MxPain00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700107.java index db6f702c4..ae9098f9c 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700107 parse(String xml) { - return ((MxPain00700107) MxReadImpl.parse(MxPain00700107 .class, xml, _classes)); + return ((MxPain00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700108.java index 7f767c826..2a299dd0c 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700108 parse(String xml) { - return ((MxPain00700108) MxReadImpl.parse(MxPain00700108 .class, xml, _classes)); + return ((MxPain00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700109.java index f49f9be45..70b6684c9 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700109 parse(String xml) { - return ((MxPain00700109) MxReadImpl.parse(MxPain00700109 .class, xml, _classes)); + return ((MxPain00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700110.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700110.java index 55f664698..69d0bcc69 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700110.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700110 parse(String xml) { - return ((MxPain00700110) MxReadImpl.parse(MxPain00700110 .class, xml, _classes)); + return ((MxPain00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700110 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700111.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700111.java index d7c124f89..b0544874a 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700111.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00700111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00700111 parse(String xml) { - return ((MxPain00700111) MxReadImpl.parse(MxPain00700111 .class, xml, _classes)); + return ((MxPain00700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00700111 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800101.java index 17b411091..29c4cc633 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800101 parse(String xml) { - return ((MxPain00800101) MxReadImpl.parse(MxPain00800101 .class, xml, _classes)); + return ((MxPain00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800102.java index e76d83d36..bdffc9277 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800102 parse(String xml) { - return ((MxPain00800102) MxReadImpl.parse(MxPain00800102 .class, xml, _classes)); + return ((MxPain00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800103.java index 92e62bda6..2ff7a4376 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800103 parse(String xml) { - return ((MxPain00800103) MxReadImpl.parse(MxPain00800103 .class, xml, _classes)); + return ((MxPain00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800104.java index 94e4ae9a1..9afda9d0d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800104 parse(String xml) { - return ((MxPain00800104) MxReadImpl.parse(MxPain00800104 .class, xml, _classes)); + return ((MxPain00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800105.java index 9b7e26a86..a47592730 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800105 parse(String xml) { - return ((MxPain00800105) MxReadImpl.parse(MxPain00800105 .class, xml, _classes)); + return ((MxPain00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800106.java index 40a210495..c03e10dfb 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800106 parse(String xml) { - return ((MxPain00800106) MxReadImpl.parse(MxPain00800106 .class, xml, _classes)); + return ((MxPain00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800107.java index aef0396cc..0c1eaa9a7 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800107 parse(String xml) { - return ((MxPain00800107) MxReadImpl.parse(MxPain00800107 .class, xml, _classes)); + return ((MxPain00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800108.java index ff610ba69..f80b08d64 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800108 parse(String xml) { - return ((MxPain00800108) MxReadImpl.parse(MxPain00800108 .class, xml, _classes)); + return ((MxPain00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800109.java index 2928c5c9f..ca97bdfba 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800109 parse(String xml) { - return ((MxPain00800109) MxReadImpl.parse(MxPain00800109 .class, xml, _classes)); + return ((MxPain00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800110.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800110.java index 397f61a2d..911287612 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800110.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800110 parse(String xml) { - return ((MxPain00800110) MxReadImpl.parse(MxPain00800110 .class, xml, _classes)); + return ((MxPain00800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800110 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800302.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800302.java index f6d8901e6..912548460 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800302.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00800302.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00800302 parse(String xml) { - return ((MxPain00800302) MxReadImpl.parse(MxPain00800302 .class, xml, _classes)); + return ((MxPain00800302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00800302 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00800302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00800302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900101.java index 55460bdaf..2c57a06a1 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900101 parse(String xml) { - return ((MxPain00900101) MxReadImpl.parse(MxPain00900101 .class, xml, _classes)); + return ((MxPain00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900102.java index d029538c8..045ee535a 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900102 parse(String xml) { - return ((MxPain00900102) MxReadImpl.parse(MxPain00900102 .class, xml, _classes)); + return ((MxPain00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900103.java index ad825eac2..d34a42d3a 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900103 parse(String xml) { - return ((MxPain00900103) MxReadImpl.parse(MxPain00900103 .class, xml, _classes)); + return ((MxPain00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900104.java index e57a68998..0fd301d6f 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900104 parse(String xml) { - return ((MxPain00900104) MxReadImpl.parse(MxPain00900104 .class, xml, _classes)); + return ((MxPain00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900105.java index 7d81054cb..ecb6751c5 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900105 parse(String xml) { - return ((MxPain00900105) MxReadImpl.parse(MxPain00900105 .class, xml, _classes)); + return ((MxPain00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900106.java index 32b2296f8..c9fc96965 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900106 parse(String xml) { - return ((MxPain00900106) MxReadImpl.parse(MxPain00900106 .class, xml, _classes)); + return ((MxPain00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900107.java index 4f0886d67..03abb9cb9 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain00900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain00900107 parse(String xml) { - return ((MxPain00900107) MxReadImpl.parse(MxPain00900107 .class, xml, _classes)); + return ((MxPain00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain00900107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000101.java index eb83e271d..60ec6c940 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000101 parse(String xml) { - return ((MxPain01000101) MxReadImpl.parse(MxPain01000101 .class, xml, _classes)); + return ((MxPain01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000102.java index f67207dd4..152cc58e5 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000102 parse(String xml) { - return ((MxPain01000102) MxReadImpl.parse(MxPain01000102 .class, xml, _classes)); + return ((MxPain01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000103.java index b33083e84..b7ec68b38 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000103 parse(String xml) { - return ((MxPain01000103) MxReadImpl.parse(MxPain01000103 .class, xml, _classes)); + return ((MxPain01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000104.java index c0f73fae8..045c48761 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000104 parse(String xml) { - return ((MxPain01000104) MxReadImpl.parse(MxPain01000104 .class, xml, _classes)); + return ((MxPain01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000105.java index 65ce8e244..76ec5567f 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000105 parse(String xml) { - return ((MxPain01000105) MxReadImpl.parse(MxPain01000105 .class, xml, _classes)); + return ((MxPain01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000106.java index d0be26629..5d7da51a8 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000106 parse(String xml) { - return ((MxPain01000106) MxReadImpl.parse(MxPain01000106 .class, xml, _classes)); + return ((MxPain01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000107.java index 6c7d0af1a..8d14902de 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01000107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01000107 parse(String xml) { - return ((MxPain01000107) MxReadImpl.parse(MxPain01000107 .class, xml, _classes)); + return ((MxPain01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01000107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100101.java index 0530771d8..1a1373f48 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100101 parse(String xml) { - return ((MxPain01100101) MxReadImpl.parse(MxPain01100101 .class, xml, _classes)); + return ((MxPain01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100102.java index 5198827b5..a4ca1c873 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100102 parse(String xml) { - return ((MxPain01100102) MxReadImpl.parse(MxPain01100102 .class, xml, _classes)); + return ((MxPain01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100103.java index 74ee973d2..61c77b57d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100103 parse(String xml) { - return ((MxPain01100103) MxReadImpl.parse(MxPain01100103 .class, xml, _classes)); + return ((MxPain01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100104.java index 27fa29c11..eda0922d3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100104 parse(String xml) { - return ((MxPain01100104) MxReadImpl.parse(MxPain01100104 .class, xml, _classes)); + return ((MxPain01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100105.java index aba4ee915..9df597b59 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100105 parse(String xml) { - return ((MxPain01100105) MxReadImpl.parse(MxPain01100105 .class, xml, _classes)); + return ((MxPain01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100106.java index f332f5b35..64acfe740 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100106 parse(String xml) { - return ((MxPain01100106) MxReadImpl.parse(MxPain01100106 .class, xml, _classes)); + return ((MxPain01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100107.java index 4453231dd..50702636e 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01100107 parse(String xml) { - return ((MxPain01100107) MxReadImpl.parse(MxPain01100107 .class, xml, _classes)); + return ((MxPain01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01100107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200101.java index 88f3a4ba9..1135358b3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200101 parse(String xml) { - return ((MxPain01200101) MxReadImpl.parse(MxPain01200101 .class, xml, _classes)); + return ((MxPain01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200102.java index a0702c137..6b7ce3d40 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200102 parse(String xml) { - return ((MxPain01200102) MxReadImpl.parse(MxPain01200102 .class, xml, _classes)); + return ((MxPain01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200103.java index 9b1a38fbf..318f88465 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200103 parse(String xml) { - return ((MxPain01200103) MxReadImpl.parse(MxPain01200103 .class, xml, _classes)); + return ((MxPain01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200104.java index afc007d9f..e960deead 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200104 parse(String xml) { - return ((MxPain01200104) MxReadImpl.parse(MxPain01200104 .class, xml, _classes)); + return ((MxPain01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200105.java index 50dc1198d..365c45af8 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200105 parse(String xml) { - return ((MxPain01200105) MxReadImpl.parse(MxPain01200105 .class, xml, _classes)); + return ((MxPain01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200106.java index 4329a3803..a37409307 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200106 parse(String xml) { - return ((MxPain01200106) MxReadImpl.parse(MxPain01200106 .class, xml, _classes)); + return ((MxPain01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200107.java index b1f1d6a22..74f23bf34 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01200107 parse(String xml) { - return ((MxPain01200107) MxReadImpl.parse(MxPain01200107 .class, xml, _classes)); + return ((MxPain01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01200107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300101.java index 905c369db..c1932ced1 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300101 parse(String xml) { - return ((MxPain01300101) MxReadImpl.parse(MxPain01300101 .class, xml, _classes)); + return ((MxPain01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300102.java index 832488cfc..ffb2a030a 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300102 parse(String xml) { - return ((MxPain01300102) MxReadImpl.parse(MxPain01300102 .class, xml, _classes)); + return ((MxPain01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300103.java index 4aaad4f95..66894fd5d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300103 parse(String xml) { - return ((MxPain01300103) MxReadImpl.parse(MxPain01300103 .class, xml, _classes)); + return ((MxPain01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300104.java index 2bfda8686..c0a75858b 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300104 parse(String xml) { - return ((MxPain01300104) MxReadImpl.parse(MxPain01300104 .class, xml, _classes)); + return ((MxPain01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300105.java index 5f3ebc8c7..d1b8702e3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300105 parse(String xml) { - return ((MxPain01300105) MxReadImpl.parse(MxPain01300105 .class, xml, _classes)); + return ((MxPain01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300106.java index d2f5a8542..f5c7f8f02 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300106 parse(String xml) { - return ((MxPain01300106) MxReadImpl.parse(MxPain01300106 .class, xml, _classes)); + return ((MxPain01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300107.java index b58ab60f9..03eafe32d 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300107 parse(String xml) { - return ((MxPain01300107) MxReadImpl.parse(MxPain01300107 .class, xml, _classes)); + return ((MxPain01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300108.java index 390c3a180..94300e58b 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300108 parse(String xml) { - return ((MxPain01300108) MxReadImpl.parse(MxPain01300108 .class, xml, _classes)); + return ((MxPain01300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300109.java index 12018f1b9..459073a30 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01300109 parse(String xml) { - return ((MxPain01300109) MxReadImpl.parse(MxPain01300109 .class, xml, _classes)); + return ((MxPain01300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01300109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400101.java index 7daa1addf..d5ce95feb 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400101 parse(String xml) { - return ((MxPain01400101) MxReadImpl.parse(MxPain01400101 .class, xml, _classes)); + return ((MxPain01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400102.java index 663bf0ea4..1530ab9d9 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400102 parse(String xml) { - return ((MxPain01400102) MxReadImpl.parse(MxPain01400102 .class, xml, _classes)); + return ((MxPain01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400103.java index c07d6a708..83a0a78d1 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400103 parse(String xml) { - return ((MxPain01400103) MxReadImpl.parse(MxPain01400103 .class, xml, _classes)); + return ((MxPain01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400104.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400104.java index b017662ad..604c08830 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400104.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400104 parse(String xml) { - return ((MxPain01400104) MxReadImpl.parse(MxPain01400104 .class, xml, _classes)); + return ((MxPain01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400104 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400105.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400105.java index 4b0852b40..6e43b0859 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400105.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400105 parse(String xml) { - return ((MxPain01400105) MxReadImpl.parse(MxPain01400105 .class, xml, _classes)); + return ((MxPain01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400105 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400106.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400106.java index 791031155..4ae84bb02 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400106.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400106 parse(String xml) { - return ((MxPain01400106) MxReadImpl.parse(MxPain01400106 .class, xml, _classes)); + return ((MxPain01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400106 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400107.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400107.java index fc201fca4..82bf70cd3 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400107.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400107 parse(String xml) { - return ((MxPain01400107) MxReadImpl.parse(MxPain01400107 .class, xml, _classes)); + return ((MxPain01400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400107 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400108.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400108.java index 826fb6b94..0352c74dc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400108.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400108 parse(String xml) { - return ((MxPain01400108) MxReadImpl.parse(MxPain01400108 .class, xml, _classes)); + return ((MxPain01400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400108 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400109.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400109.java index fdd996924..f2063a6a2 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400109.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01400109 parse(String xml) { - return ((MxPain01400109) MxReadImpl.parse(MxPain01400109 .class, xml, _classes)); + return ((MxPain01400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01400109 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700101.java index b8acd1e41..0853bb47e 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01700101 parse(String xml) { - return ((MxPain01700101) MxReadImpl.parse(MxPain01700101 .class, xml, _classes)); + return ((MxPain01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700102.java index bf6afd6c4..a1ae8d21c 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01700102 parse(String xml) { - return ((MxPain01700102) MxReadImpl.parse(MxPain01700102 .class, xml, _classes)); + return ((MxPain01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01700102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700103.java index b47c86de0..0c4907f79 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01700103 parse(String xml) { - return ((MxPain01700103) MxReadImpl.parse(MxPain01700103 .class, xml, _classes)); + return ((MxPain01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01700103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800101.java index 4d16f3990..5c5a39a4e 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01800101 parse(String xml) { - return ((MxPain01800101) MxReadImpl.parse(MxPain01800101 .class, xml, _classes)); + return ((MxPain01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800102.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800102.java index efd7ab915..486f09bfc 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800102.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01800102 parse(String xml) { - return ((MxPain01800102) MxReadImpl.parse(MxPain01800102 .class, xml, _classes)); + return ((MxPain01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01800102 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800103.java index acbeb9ad3..d03137dc6 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain01800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain01800103 parse(String xml) { - return ((MxPain01800103) MxReadImpl.parse(MxPain01800103 .class, xml, _classes)); + return ((MxPain01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain01800103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800101.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800101.java index b01481a93..3848802c9 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800101.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain99800101 parse(String xml) { - return ((MxPain99800101) MxReadImpl.parse(MxPain99800101 .class, xml, _classes)); + return ((MxPain99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain99800101 parse(String xml, MxReadConfiguration conf) { + return ((MxPain99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800103.java b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800103.java index e39bb8ff4..a8aa82eb6 100644 --- a/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800103.java +++ b/model-pain-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPain99800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxPain99800103 parse(String xml) { - return ((MxPain99800103) MxReadImpl.parse(MxPain99800103 .class, xml, _classes)); + return ((MxPain99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxPain99800103 parse(String xml, MxReadConfiguration conf) { + return ((MxPain99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPain99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails7.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails7.java index 5f88eb739..33e5b0bff 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails7.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AmendmentInformationDetails7 { protected CashAccount16 orgnlDbtrAcct; @XmlElement(name = "OrgnlDbtrAgt") protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt; - @XmlElement(name = "OrgnlFnlColltnDt") + @XmlElement(name = "OrgnlFnlColltnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar orgnlFnlColltnDt; @XmlElement(name = "OrgnlFrqcy") @@ -206,7 +209,7 @@ public AmendmentInformationDetails7 setOrgnlDbtrAgt(BranchAndFinancialInstitutio * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrgnlFnlColltnDt() { @@ -218,7 +221,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmendmentInformationDetails7 setOrgnlFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails9.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails9.java index b4a13f94f..968687a00 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails9.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AmendmentInformationDetails9 { protected CashAccount24 orgnlDbtrAcct; @XmlElement(name = "OrgnlDbtrAgt") protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt; - @XmlElement(name = "OrgnlFnlColltnDt") + @XmlElement(name = "OrgnlFnlColltnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar orgnlFnlColltnDt; @XmlElement(name = "OrgnlFrqcy") @@ -206,7 +209,7 @@ public AmendmentInformationDetails9 setOrgnlDbtrAgt(BranchAndFinancialInstitutio * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrgnlFnlColltnDt() { @@ -218,7 +221,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmendmentInformationDetails9 setOrgnlFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque5.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque5.java index ba45cac49..cd45025af 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque5.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Cheque5 { @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") @@ -216,7 +219,7 @@ public Cheque5 setInstrPrty(Priority2Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getChqMtrtyDt() { @@ -228,7 +231,7 @@ public XMLGregorianCalendar getChqMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Cheque5 setChqMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque6.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque6.java index 8ebf23129..21c157600 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque6.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Cheque6 { @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") @@ -218,7 +221,7 @@ public Cheque6 setInstrPrty(Priority2Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getChqMtrtyDt() { @@ -230,7 +233,7 @@ public XMLGregorianCalendar getChqMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Cheque6 setChqMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange13.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange13.java deleted file mode 100644 index b6f5fa4c5..000000000 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange13.java +++ /dev/null @@ -1,154 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import java.math.BigDecimal; -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; - - -/** - * Describes the details of the currency exchange. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CurrencyExchange13", propOrder = { - "srcCcy", - "trgtCcy", - "xchgRate", - "unitCcy" -}) -public class CurrencyExchange13 { - - @XmlElement(name = "SrcCcy", required = true) - protected String srcCcy; - @XmlElement(name = "TrgtCcy", required = true) - protected String trgtCcy; - @XmlElement(name = "XchgRate", required = true) - protected BigDecimal xchgRate; - @XmlElement(name = "UnitCcy") - protected String unitCcy; - - /** - * Gets the value of the srcCcy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSrcCcy() { - return srcCcy; - } - - /** - * Sets the value of the srcCcy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public CurrencyExchange13 setSrcCcy(String value) { - this.srcCcy = value; - return this; - } - - /** - * Gets the value of the trgtCcy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTrgtCcy() { - return trgtCcy; - } - - /** - * Sets the value of the trgtCcy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public CurrencyExchange13 setTrgtCcy(String value) { - this.trgtCcy = value; - return this; - } - - /** - * Gets the value of the xchgRate property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getXchgRate() { - return xchgRate; - } - - /** - * Sets the value of the xchgRate property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public CurrencyExchange13 setXchgRate(BigDecimal value) { - this.xchgRate = value; - return this; - } - - /** - * Gets the value of the unitCcy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnitCcy() { - return unitCcy; - } - - /** - * Sets the value of the unitCcy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public CurrencyExchange13 setUnitCcy(String value) { - this.unitCcy = 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-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader1.java index 44f0f2f9d..8c09f0a1b 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader1.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; @@ -38,7 +40,8 @@ public class GroupHeader1 { @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") @@ -87,7 +90,7 @@ public GroupHeader1 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -99,7 +102,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader31.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader31.java index 8628ff2cd..d316da99e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader31.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader31.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader31 { @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") @@ -76,7 +79,7 @@ public GroupHeader31 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -88,7 +91,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader31 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader32.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader32.java index b47eb4555..33e33e550 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader32.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader32.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; @@ -36,7 +38,8 @@ public class GroupHeader32 { @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") @@ -80,7 +83,7 @@ public GroupHeader32 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 GroupHeader32 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader36.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader36.java index 464ab2da0..7557a6f00 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader36.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader36.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader36 { @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") @@ -74,7 +77,7 @@ public GroupHeader36 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 GroupHeader36 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader39.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader39.java index c9cfafc2b..258d18678 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader39.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader39.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; @@ -36,7 +38,8 @@ public class GroupHeader39 { @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") @@ -80,7 +83,7 @@ public GroupHeader39 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 GroupHeader39 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader40.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader40.java index e265d5d6e..4ba577bf3 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader40.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader40.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; @@ -40,7 +42,8 @@ public class GroupHeader40 { @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") @@ -92,7 +95,7 @@ public GroupHeader40 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -104,7 +107,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader40 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader45.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader45.java index 87c14355d..74fb25eba 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader45.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader45.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 GroupHeader45 { @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) @@ -72,7 +75,7 @@ public GroupHeader45 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -84,7 +87,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader45 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader46.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader46.java index dfad83d47..2b9dc82f6 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader46.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader46.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader46 { @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", required = true) @@ -71,7 +74,7 @@ public GroupHeader46 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 GroupHeader46 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader47.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader47.java index 562b4dfb3..630d79d47 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader47.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader47.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader47 { @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") @@ -76,7 +79,7 @@ public GroupHeader47 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -88,7 +91,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader47 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader48.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader48.java index e2f7bbc47..06121ba40 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader48.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader48.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; @@ -36,7 +38,8 @@ public class GroupHeader48 { @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") @@ -80,7 +83,7 @@ public GroupHeader48 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 GroupHeader48 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader52.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader52.java index 8a17414cf..cd82f18c8 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader52.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader52.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader52 { @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") @@ -74,7 +77,7 @@ public GroupHeader52 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 GroupHeader52 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader55.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader55.java index 4c83452a1..bc383557e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader55.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader55.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; @@ -36,7 +38,8 @@ public class GroupHeader55 { @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") @@ -80,7 +83,7 @@ public GroupHeader55 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 GroupHeader55 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader56.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader56.java index b0735aab7..ee0b31f36 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader56.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader56.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 GroupHeader56 { @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") @@ -89,7 +92,7 @@ public GroupHeader56 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -101,7 +104,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader56 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader74.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader74.java index 55536b866..119cce0ba 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader74.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader74.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader74 { @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") @@ -74,7 +77,7 @@ public GroupHeader74 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 GroupHeader74 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader75.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader75.java index d128c4acf..cabdd6007 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader75.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader75.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 GroupHeader75 { @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") @@ -89,7 +92,7 @@ public GroupHeader75 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -101,7 +104,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader75 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader78.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader78.java index 957be924a..55765ecbf 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader78.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader78.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 GroupHeader78 { @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) @@ -72,7 +75,7 @@ public GroupHeader78 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -84,7 +87,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader78 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader8.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader8.java index c6f8b0029..9320b6c89 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader8.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader8.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; @@ -40,7 +42,8 @@ public class GroupHeader8 { @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") @@ -92,7 +95,7 @@ public GroupHeader8 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -104,7 +107,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader8 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader80.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader80.java index 401bc6ad6..1c7d78488 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader80.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader80.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader80 { @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") @@ -76,7 +79,7 @@ public GroupHeader80 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -88,7 +91,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader80 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader83.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader83.java index 959f5143e..07518f9c0 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader83.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader83.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; @@ -36,7 +38,8 @@ public class GroupHeader83 { @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") @@ -80,7 +83,7 @@ public GroupHeader83 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 GroupHeader83 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader85.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader85.java index c750a4e9c..22bdd91ac 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader85.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader85.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; @@ -36,7 +38,8 @@ public class GroupHeader85 { @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") @@ -80,7 +83,7 @@ public GroupHeader85 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 GroupHeader85 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader86.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader86.java index c36c841a2..ef0252381 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader86.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader86.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader86 { @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") @@ -74,7 +77,7 @@ public GroupHeader86 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 GroupHeader86 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader87.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader87.java index c46244359..f47a71dd5 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader87.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader87.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader87 { @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", required = true) @@ -71,7 +74,7 @@ public GroupHeader87 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 GroupHeader87 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader88.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader88.java index 3050c6ea9..be1583a60 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader88.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader88.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 GroupHeader88 { @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") @@ -89,7 +92,7 @@ public GroupHeader88 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -101,7 +104,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader88 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader95.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader95.java index 2bec12e6f..ec919d2a0 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader95.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader95.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; @@ -37,7 +39,8 @@ public class GroupHeader95 { @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") @@ -83,7 +86,7 @@ public GroupHeader95 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -95,7 +98,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeader95 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSCTDFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSCTDFU1.java index 4625f7577..e788a046c 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSCTDFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSCTDFU1.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 GroupHeaderSCTDFU1 { @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) @@ -72,7 +75,7 @@ public GroupHeaderSCTDFU1 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -84,7 +87,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeaderSCTDFU1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSDDDFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSDDDFU1.java index b434c65c9..d4d70abca 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSDDDFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSDDDFU1.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 GroupHeaderSDDDFU1 { @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) @@ -72,7 +75,7 @@ public GroupHeaderSDDDFU1 setMsgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -84,7 +87,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GroupHeaderSDDDFU1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSEPADFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSEPADFU1.java index b6d5556e0..201e9f933 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSEPADFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeaderSEPADFU1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeaderSEPADFU1 { @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 = "DbtrAgt") @@ -68,7 +71,7 @@ public GroupHeaderSEPADFU1 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 GroupHeaderSEPADFU1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateAuthentication1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateAuthentication1.java index c1d492d4d..b1904a112 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateAuthentication1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateAuthentication1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateAuthentication1 { @XmlElement(name = "MsgAuthntcnCd") protected String msgAuthntcnCd; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "Chanl") @@ -65,7 +68,7 @@ public MandateAuthentication1 setMsgAuthntcnCd(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 MandateAuthentication1 setDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences1.java index bf851c30f..dd83eff76 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateOccurrences1 { protected Frequency1Code frqcy; @XmlElement(name = "Drtn") protected DatePeriodDetails1 drtn; - @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; @@ -124,7 +128,7 @@ public MandateOccurrences1 setDrtn(DatePeriodDetails1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstColltnDt() { @@ -136,7 +140,7 @@ public XMLGregorianCalendar getFrstColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences1 setFrstColltnDt(XMLGregorianCalendar value) { @@ -149,7 +153,7 @@ public MandateOccurrences1 setFrstColltnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlColltnDt() { @@ -161,7 +165,7 @@ public XMLGregorianCalendar getFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences1 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences2.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences2.java index 2d7d43766..0ad1c4bca 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences2.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateOccurrences2 { protected Frequency6Code frqcy; @XmlElement(name = "Drtn") protected DatePeriodDetails1 drtn; - @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; @@ -124,7 +128,7 @@ public MandateOccurrences2 setDrtn(DatePeriodDetails1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstColltnDt() { @@ -136,7 +140,7 @@ public XMLGregorianCalendar getFrstColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences2 setFrstColltnDt(XMLGregorianCalendar value) { @@ -149,7 +153,7 @@ public MandateOccurrences2 setFrstColltnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlColltnDt() { @@ -161,7 +165,7 @@ public XMLGregorianCalendar getFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences2 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences3.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences3.java index d43ece766..60524609e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences3.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateOccurrences3 { protected Frequency21Choice frqcy; @XmlElement(name = "Drtn") protected DatePeriodDetails1 drtn; - @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; @@ -123,7 +127,7 @@ public MandateOccurrences3 setDrtn(DatePeriodDetails1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstColltnDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getFrstColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences3 setFrstColltnDt(XMLGregorianCalendar value) { @@ -148,7 +152,7 @@ public MandateOccurrences3 setFrstColltnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlColltnDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences3 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences4.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences4.java index 988b6f58e..48ed7444e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences4.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateOccurrences4 { protected Frequency36Choice frqcy; @XmlElement(name = "Drtn") protected DatePeriodDetails1 drtn; - @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; @@ -123,7 +127,7 @@ public MandateOccurrences4 setDrtn(DatePeriodDetails1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstColltnDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getFrstColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences4 setFrstColltnDt(XMLGregorianCalendar value) { @@ -148,7 +152,7 @@ public MandateOccurrences4 setFrstColltnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlColltnDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences4 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences5.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences5.java index 7681941a4..73d2c3ee9 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences5.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateOccurrences5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateOccurrences5 { protected Frequency36Choice frqcy; @XmlElement(name = "Drtn") protected DatePeriod3 drtn; - @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; @@ -123,7 +127,7 @@ public MandateOccurrences5 setDrtn(DatePeriod3 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstColltnDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getFrstColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences5 setFrstColltnDt(XMLGregorianCalendar value) { @@ -148,7 +152,7 @@ public MandateOccurrences5 setFrstColltnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlColltnDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getFnlColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MandateOccurrences5 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation7.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation7.java index 1e89e6aa1..c3596923a 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation7.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateRelatedInformation7 { @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 MandateRelatedInformation7 { protected AmendmentInformationDetails7 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 MandateRelatedInformation7 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 MandateRelatedInformation7 setDtOfSgntr(XMLGregorianCalendar value) { @@ -183,7 +188,7 @@ public MandateRelatedInformation7 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 MandateRelatedInformation7 setFrstColltnDt(XMLGregorianCalendar value) { @@ -208,7 +213,7 @@ public MandateRelatedInformation7 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 MandateRelatedInformation7 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation9.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation9.java index a8113f465..8cc534073 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation9.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateRelatedInformation9 { @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 MandateRelatedInformation9 { protected AmendmentInformationDetails9 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 MandateRelatedInformation9 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 MandateRelatedInformation9 setDtOfSgntr(XMLGregorianCalendar value) { @@ -183,7 +188,7 @@ public MandateRelatedInformation9 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 MandateRelatedInformation9 setFrstColltnDt(XMLGregorianCalendar value) { @@ -208,7 +213,7 @@ public MandateRelatedInformation9 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 MandateRelatedInformation9 setFnlColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSDDDFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSDDDFU1.java index 49d64871b..7abe2014b 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSDDDFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSDDDFU1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateRelatedInformationSDDDFU1 { @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 MandateRelatedInformationSDDDFU1 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 MandateRelatedInformationSDDDFU1 setDtOfSgntr(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSEPADFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSEPADFU1.java index 2ccc64f82..14e4d78c7 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSEPADFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformationSEPADFU1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MandateRelatedInformationSEPADFU1 { @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") @@ -71,7 +74,7 @@ public MandateRelatedInformationSEPADFU1 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 MandateRelatedInformationSEPADFU1 setDtOfSgntr(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation25.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation25.java index a053a12ff..7f0a3d2f9 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation25.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation25.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 OriginalGroupInformation25 { 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 OriginalGroupInformation25 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 OriginalGroupInformation25 setOrgnlCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation28.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation28.java index 8cf61dd06..8b75f8ccb 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation28.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation28.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 OriginalGroupInformation28 { 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 OriginalGroupInformation28 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 OriginalGroupInformation28 setOrgnlCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation30.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation30.java index 1214951a5..b43f3ee04 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation30.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation30.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 OriginalGroupInformation30 { 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 OriginalGroupInformation30 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 OriginalGroupInformation30 setOrgnlCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageInformation1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageInformation1.java index 8ee3e266b..4e13b1a6e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageInformation1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalMessageInformation1 { 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 OriginalMessageInformation1 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 OriginalMessageInformation1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference15.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference15.java index 8497d249e..9464e595a 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference15.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference15.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,16 @@ public class OriginalTransactionReference15 { 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") @@ -141,7 +146,7 @@ public OriginalTransactionReference15 setAmt(AmountType3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntrBkSttlmDt() { @@ -153,7 +158,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference15 setIntrBkSttlmDt(XMLGregorianCalendar value) { @@ -166,7 +171,7 @@ public OriginalTransactionReference15 setIntrBkSttlmDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -178,7 +183,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference15 setReqdColltnDt(XMLGregorianCalendar value) { @@ -191,7 +196,7 @@ public OriginalTransactionReference15 setReqdColltnDt(XMLGregorianCalendar value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -203,7 +208,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference15 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference17.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference17.java index cc36efd1f..d0bf55816 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference17.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference17.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,16 @@ public class OriginalTransactionReference17 { 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") @@ -141,7 +146,7 @@ public OriginalTransactionReference17 setAmt(AmountType3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntrBkSttlmDt() { @@ -153,7 +158,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference17 setIntrBkSttlmDt(XMLGregorianCalendar value) { @@ -166,7 +171,7 @@ public OriginalTransactionReference17 setIntrBkSttlmDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -178,7 +183,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference17 setReqdColltnDt(XMLGregorianCalendar value) { @@ -191,7 +196,7 @@ public OriginalTransactionReference17 setReqdColltnDt(XMLGregorianCalendar value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -203,7 +208,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference17 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference19.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference19.java index ec7cc9066..72f9bd7f6 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference19.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference19.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalTransactionReference19 { @XmlElement(name = "Amt") protected AmountType3Choice amt; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "PmtTpInf") @@ -96,7 +99,7 @@ public OriginalTransactionReference19 setAmt(AmountType3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -108,7 +111,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference19 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference21.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference21.java index e391697d3..aaafb7573 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference21.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference21.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalTransactionReference21 { @XmlElement(name = "Amt") protected AmountType4Choice amt; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "PmtTpInf") @@ -96,7 +99,7 @@ public OriginalTransactionReference21 setAmt(AmountType4Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -108,7 +111,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference21 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference23.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference23.java index 983175dff..06897e8a7 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference23.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference23.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalTransactionReference23 { @XmlElement(name = "Amt") protected AmountType4Choice amt; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "PmtTpInf") @@ -96,7 +99,7 @@ public OriginalTransactionReference23 setAmt(AmountType4Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -108,7 +111,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReference23 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReferenceSEPADFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReferenceSEPADFU1.java index 484bdfc45..40ce96e11 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReferenceSEPADFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReferenceSEPADFU1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalTransactionReferenceSEPADFU1 { @XmlElement(name = "Amt") protected AmountTypeSEPADFU2 amt; - @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") @@ -106,7 +110,7 @@ public OriginalTransactionReferenceSEPADFU1 setAmt(AmountTypeSEPADFU2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -118,7 +122,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReferenceSEPADFU1 setReqdColltnDt(XMLGregorianCalendar value) { @@ -131,7 +135,7 @@ public OriginalTransactionReferenceSEPADFU1 setReqdColltnDt(XMLGregorianCalendar * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -143,7 +147,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalTransactionReferenceSEPADFU1 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction10.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction10.java index 8b40389be..2168aab84 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction10.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction10.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; @@ -57,7 +59,8 @@ public class PaymentInstruction10 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation24 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction10 setPmtTpInf(PaymentTypeInformation24 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction10 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction11.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction11.java index a63e5de76..628e4ac84 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction11.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstruction11 { protected PaymentMethod7Code pmtMtd; @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 = "Dbtr", required = true) @@ -140,7 +143,7 @@ public PaymentInstruction11 setPmtTpInf(PaymentTypeInformation19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -152,7 +155,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction11 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction15.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction15.java index 26978f23a..1d94e7e0c 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction15.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction15.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; @@ -57,7 +59,8 @@ public class PaymentInstruction15 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation24 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction15 setPmtTpInf(PaymentTypeInformation24 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction15 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction16.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction16.java index 35bcf5915..13c8f4054 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction16.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction16.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 PaymentInstruction16 { 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 PaymentInstruction16 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 PaymentInstruction16 setReqdExctnDt(XMLGregorianCalendar value) { @@ -266,7 +270,7 @@ public PaymentInstruction16 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 PaymentInstruction16 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction17.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction17.java index d1d91fe2b..994e9b54f 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction17.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction17.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstruction17 { protected PaymentMethod7Code pmtMtd; @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 = "Dbtr", required = true) @@ -140,7 +143,7 @@ public PaymentInstruction17 setPmtTpInf(PaymentTypeInformation19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -152,7 +155,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction17 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction18.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction18.java index 9c03348c1..cee918027 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction18.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction18.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; @@ -57,7 +59,8 @@ public class PaymentInstruction18 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation24 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction18 setPmtTpInf(PaymentTypeInformation24 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction18 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction19.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction19.java index 7153720e7..bede90c64 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction19.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction19.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstruction19 { protected PaymentMethod7Code pmtMtd; @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 = "Dbtr", required = true) @@ -140,7 +143,7 @@ public PaymentInstruction19 setPmtTpInf(PaymentTypeInformation19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -152,7 +155,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction19 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction20.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction20.java index 9bbaf0c35..bf9e7be4a 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction20.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction20.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 PaymentInstruction20 { 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 PaymentInstruction20 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 PaymentInstruction20 setReqdExctnDt(XMLGregorianCalendar value) { @@ -266,7 +270,7 @@ public PaymentInstruction20 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 PaymentInstruction20 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction21.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction21.java index d9bdeb155..db5c0ec74 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction21.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction21.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; @@ -57,7 +59,8 @@ public class PaymentInstruction21 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation24 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction21 setPmtTpInf(PaymentTypeInformation24 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction21 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction22.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction22.java index c815754f0..8661d4814 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction22.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction22.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 PaymentInstruction22 { protected PaymentTypeInformation19 pmtTpInf; @XmlElement(name = "ReqdExctnDt", required = true) protected DateAndDateTimeChoice reqdExctnDt; - @XmlElement(name = "PoolgAdjstmntDt") + @XmlElement(name = "PoolgAdjstmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar poolgAdjstmntDt; @XmlElement(name = "Dbtr", required = true) @@ -265,7 +268,7 @@ public PaymentInstruction22 setReqdExctnDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -277,7 +280,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction22 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction29.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction29.java index c208461b4..fab466f55 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction29.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction29.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; @@ -57,7 +59,8 @@ public class PaymentInstruction29 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation29 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction29 setPmtTpInf(PaymentTypeInformation29 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction29 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction30.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction30.java index f149d1d40..27cfc0abc 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction30.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction30.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 PaymentInstruction30 { protected PaymentTypeInformation26 pmtTpInf; @XmlElement(name = "ReqdExctnDt", required = true) protected DateAndDateTime2Choice reqdExctnDt; - @XmlElement(name = "PoolgAdjstmntDt") + @XmlElement(name = "PoolgAdjstmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar poolgAdjstmntDt; @XmlElement(name = "Dbtr", required = true) @@ -265,7 +268,7 @@ public PaymentInstruction30 setReqdExctnDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -277,7 +280,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction30 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction34.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction34.java index 32e974745..17deeb8c7 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction34.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction34.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 PaymentInstruction34 { protected PaymentTypeInformation26 pmtTpInf; @XmlElement(name = "ReqdExctnDt", required = true) protected DateAndDateTime2Choice reqdExctnDt; - @XmlElement(name = "PoolgAdjstmntDt") + @XmlElement(name = "PoolgAdjstmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar poolgAdjstmntDt; @XmlElement(name = "Dbtr", required = true) @@ -293,7 +296,7 @@ public PaymentInstruction34 setReqdExctnDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -305,7 +308,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction34 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction37.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction37.java index 762339d9f..905c65b17 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction37.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction37.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 PaymentInstruction37 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation29 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -265,7 +268,7 @@ public PaymentInstruction37 setPmtTpInf(PaymentTypeInformation29 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -277,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction37 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction39.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction39.java index 8086f90d4..ac9c659fa 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction39.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction39.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 PaymentInstruction39 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation29 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -265,7 +268,7 @@ public PaymentInstruction39 setPmtTpInf(PaymentTypeInformation29 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -277,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction39 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction40.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction40.java index cf4d5a494..02facb023 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction40.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction40.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 PaymentInstruction40 { protected PaymentTypeInformation26 pmtTpInf; @XmlElement(name = "ReqdExctnDt", required = true) protected DateAndDateTime2Choice reqdExctnDt; - @XmlElement(name = "PoolgAdjstmntDt") + @XmlElement(name = "PoolgAdjstmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar poolgAdjstmntDt; @XmlElement(name = "Dbtr", required = true) @@ -293,7 +296,7 @@ public PaymentInstruction40 setReqdExctnDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -305,7 +308,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction40 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction5.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction5.java index 104f62b37..21e5d7a55 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction5.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstruction5 { protected PaymentMethod7Code pmtMtd; @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 = "Dbtr", required = true) @@ -140,7 +143,7 @@ public PaymentInstruction5 setPmtTpInf(PaymentTypeInformation19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -152,7 +155,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction5 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction6.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction6.java index 53266d365..c1f7ad405 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction6.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction6.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 PaymentInstruction6 { 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 PaymentInstruction6 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 PaymentInstruction6 setReqdExctnDt(XMLGregorianCalendar value) { @@ -266,7 +270,7 @@ public PaymentInstruction6 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 PaymentInstruction6 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction7.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction7.java index aeef589fc..f6c0708fd 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction7.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction7.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; @@ -57,7 +59,8 @@ public class PaymentInstruction7 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation24 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstruction7 setPmtTpInf(PaymentTypeInformation24 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction7 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction8.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction8.java index 092b8c48b..0e1fa92ea 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction8.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstruction8 { protected PaymentMethod7Code pmtMtd; @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 = "Dbtr", required = true) @@ -140,7 +143,7 @@ public PaymentInstruction8 setPmtTpInf(PaymentTypeInformation19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -152,7 +155,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstruction8 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction9.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction9.java index 88dbab61b..165ba58f3 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction9.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction9.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 PaymentInstruction9 { 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 PaymentInstruction9 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 PaymentInstruction9 setReqdExctnDt(XMLGregorianCalendar value) { @@ -266,7 +270,7 @@ public PaymentInstruction9 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 PaymentInstruction9 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation1.java index ea3b42094..4946b1e73 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstructionInformation1 { protected PaymentMethod3Code pmtMtd; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation1 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) @@ -153,7 +157,7 @@ public PaymentInstructionInformation1 setPmtTpInf(PaymentTypeInformation1 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -165,7 +169,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation1 setReqdExctnDt(XMLGregorianCalendar value) { @@ -178,7 +182,7 @@ public PaymentInstructionInformation1 setReqdExctnDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -190,7 +194,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation1 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation2.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation2.java index f86e20718..9a7913f2f 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation2.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstructionInformation2 { protected PaymentMethod2Code pmtMtd; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation2 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -149,7 +152,7 @@ public PaymentInstructionInformation2 setPmtTpInf(PaymentTypeInformation2 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation2 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation3.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation3.java index 28c1c22c9..bb356e2e4 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation3.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation3.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; @@ -57,10 +59,12 @@ public class PaymentInstructionInformation3 { 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) @@ -238,7 +242,7 @@ public PaymentInstructionInformation3 setPmtTpInf(PaymentTypeInformation19 value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -250,7 +254,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation3 setReqdExctnDt(XMLGregorianCalendar value) { @@ -263,7 +267,7 @@ public PaymentInstructionInformation3 setReqdExctnDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -275,7 +279,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation3 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation4.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation4.java index 08d995e05..8135ed807 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation4.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation4.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; @@ -57,7 +59,8 @@ public class PaymentInstructionInformation4 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformation20 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -237,7 +240,7 @@ public PaymentInstructionInformation4 setPmtTpInf(PaymentTypeInformation20 value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -249,7 +252,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformation4 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSCTDFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSCTDFU1.java index f00d3dca5..0901c05a0 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSCTDFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSCTDFU1.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; @@ -53,7 +55,8 @@ public class PaymentInstructionInformationSCTDFU1 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf") protected PaymentTypeInformationSCT1DFU1 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 = "Dbtr", required = true) @@ -225,7 +228,7 @@ public PaymentInstructionInformationSCTDFU1 setPmtTpInf(PaymentTypeInformationSC * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformationSCTDFU1 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSDDDFU1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSDDDFU1.java index bac9545bd..f4cade398 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSDDDFU1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformationSDDDFU1.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 PaymentInstructionInformationSDDDFU1 { protected BigDecimal ctrlSum; @XmlElement(name = "PmtTpInf", required = true) protected PaymentTypeInformationSDDDFU1 pmtTpInf; - @XmlElement(name = "ReqdColltnDt", required = true) + @XmlElement(name = "ReqdColltnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdColltnDt; @XmlElement(name = "Cdtr", required = true) @@ -228,7 +231,7 @@ public PaymentInstructionInformationSDDDFU1 setPmtTpInf(PaymentTypeInformationSD * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -240,7 +243,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstructionInformationSDDDFU1 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentMethod2Code.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentMethod2Code.java index b429d383e..6b19c3b71 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentMethod2Code.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentMethod2Code.java @@ -25,7 +25,7 @@ public enum PaymentMethod2Code { /** - * Collection of an amount of money from the debtor's bank account by the creditor. The amount of money and dates of collections may vary. + * Collection of an amount of money from the debtor's bank account by the creditor. The amount of money and dates of collections may vary. * */ DD; diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction104.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction104.java index 6b35b01d1..7107c0452 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction104.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction104.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +59,12 @@ public class PaymentTransaction104 { protected PaymentConditionStatus1 pmtCondSts; @XmlElement(name = "ChrgsInf") protected List chrgsInf; - @XmlElement(name = "DbtrDcsnDtTm") + @XmlElement(name = "DbtrDcsnDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dbtrDcsnDtTm; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -287,7 +291,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDbtrDcsnDtTm() { @@ -299,7 +303,7 @@ public XMLGregorianCalendar getDbtrDcsnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction104 setDbtrDcsnDtTm(XMLGregorianCalendar value) { @@ -312,7 +316,7 @@ public PaymentTransaction104 setDbtrDcsnDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -324,7 +328,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction104 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction105.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction105.java index 1dad0deec..36b0a899c 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction105.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction105.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction105 { protected List chrgsInf; @XmlElement(name = "TrckrData") protected TrackerData1 trckrData; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -280,7 +283,7 @@ public PaymentTransaction105 setTrckrData(TrackerData1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -292,7 +295,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction105 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction126.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction126.java index 025032ee2..a297da063 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction126.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction126.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction126 { protected List chrgsInf; @XmlElement(name = "TrckrData") protected TrackerData1 trckrData; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -280,7 +283,7 @@ public PaymentTransaction126 setTrckrData(TrackerData1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -292,7 +295,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction126 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction128.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction128.java index 719799916..37ea39742 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction128.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction128.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +59,12 @@ public class PaymentTransaction128 { protected PaymentConditionStatus1 pmtCondSts; @XmlElement(name = "ChrgsInf") protected List chrgsInf; - @XmlElement(name = "DbtrDcsnDtTm") + @XmlElement(name = "DbtrDcsnDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dbtrDcsnDtTm; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -287,7 +291,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDbtrDcsnDtTm() { @@ -299,7 +303,7 @@ public XMLGregorianCalendar getDbtrDcsnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction128 setDbtrDcsnDtTm(XMLGregorianCalendar value) { @@ -312,7 +316,7 @@ public PaymentTransaction128 setDbtrDcsnDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -324,7 +328,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction128 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction129.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction129.java index 2ce6f5771..9edfcc530 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction129.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction129.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction129 { protected List chrgsInf; @XmlElement(name = "TrckrData") protected TrackerData1 trckrData; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -280,7 +283,7 @@ public PaymentTransaction129 setTrckrData(TrackerData1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -292,7 +295,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction129 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction136.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction136.java index 1e802c510..477a7b867 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction136.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction136.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +59,12 @@ public class PaymentTransaction136 { protected PaymentConditionStatus1 pmtCondSts; @XmlElement(name = "ChrgsInf") protected List chrgsInf; - @XmlElement(name = "DbtrDcsnDtTm") + @XmlElement(name = "DbtrDcsnDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dbtrDcsnDtTm; - @XmlElement(name = "AccptncDtTm") + @XmlElement(name = "AccptncDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar accptncDtTm; @XmlElement(name = "AcctSvcrRef") @@ -287,7 +291,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDbtrDcsnDtTm() { @@ -299,7 +303,7 @@ public XMLGregorianCalendar getDbtrDcsnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction136 setDbtrDcsnDtTm(XMLGregorianCalendar value) { @@ -312,7 +316,7 @@ public PaymentTransaction136 setDbtrDcsnDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -324,7 +328,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction136 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction32.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction32.java index 7015eb318..43fd66027 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction32.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction32.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction32 { 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") @@ -222,7 +225,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -234,7 +237,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction32 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction41.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction41.java index f9eaf39fa..624585a05 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction41.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction41.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction41 { 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") @@ -222,7 +225,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -234,7 +237,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction41 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction46.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction46.java index c6d95c02f..cadb47e4a 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction46.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction46.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction46 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction46 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction49.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction49.java index 3593c1994..192f37595 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction49.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction49.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction49 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction49 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction57.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction57.java index 6da099455..2edb518e9 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction57.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction57.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction57 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction57 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction59.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction59.java index 59b6d0a81..b6c00a96f 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction59.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction59.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction59 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction59 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction68.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction68.java index 11b2e2e4f..92bf1a388 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction68.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction68.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction68 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction68 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction69.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction69.java index 7e3229d8f..209db72c6 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction69.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction69.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction69 { 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") @@ -225,7 +228,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -237,7 +240,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction69 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction82.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction82.java index c99063b50..7dda2ee99 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction82.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction82.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction82 { 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") @@ -224,7 +227,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -236,7 +239,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction82 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction83.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction83.java index b0c378bd0..99da8683a 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction83.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction83.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction83 { 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") @@ -224,7 +227,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -236,7 +239,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction83 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction92.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction92.java index 6e28b35b0..6924f7ba6 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction92.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction92.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction92 { 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") @@ -224,7 +227,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -236,7 +239,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction92 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation25.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation25.java index 64544b1ca..f5be7ea4e 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation25.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation25.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransactionInformation25 { 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") @@ -222,7 +225,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -234,7 +237,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransactionInformation25 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation34.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation34.java index fbb2a02d3..1868048d4 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation34.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation34.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransactionInformation34 { 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") @@ -222,7 +225,7 @@ public List getChrgsInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -234,7 +237,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransactionInformation34 setAccptncDtTm(XMLGregorianCalendar value) { diff --git a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredMandateDocument1.java b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredMandateDocument1.java index d3ec935e9..9d36c08d8 100644 --- a/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredMandateDocument1.java +++ b/model-pain-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredMandateDocument1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReferredMandateDocument1 { protected String nb; @XmlElement(name = "CdtrRef") protected String cdtrRef; - @XmlElement(name = "RltdDt") + @XmlElement(name = "RltdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rltdDt; @@ -118,7 +121,7 @@ public ReferredMandateDocument1 setCdtrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRltdDt() { @@ -130,7 +133,7 @@ public XMLGregorianCalendar getRltdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReferredMandateDocument1 setRltdDt(XMLGregorianCalendar value) { diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100102.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100102.java index d97b73895..e63e9c80d 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100102.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00100102 parse(String xml) { - return ((MxReda00100102) MxReadImpl.parse(MxReda00100102 .class, xml, _classes)); + return ((MxReda00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100103.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100103.java index eca47fb3d..70582a286 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100103.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00100103 parse(String xml) { - return ((MxReda00100103) MxReadImpl.parse(MxReda00100103 .class, xml, _classes)); + return ((MxReda00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100104.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100104.java index b0e7fe412..ebd0766fa 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100104.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00100104 parse(String xml) { - return ((MxReda00100104) MxReadImpl.parse(MxReda00100104 .class, xml, _classes)); + return ((MxReda00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200102.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200102.java index bbdc94aff..7eea4975b 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200102.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00200102 parse(String xml) { - return ((MxReda00200102) MxReadImpl.parse(MxReda00200102 .class, xml, _classes)); + return ((MxReda00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200103.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200103.java index 25aa4b088..6a7eeb45c 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200103.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00200103 parse(String xml) { - return ((MxReda00200103) MxReadImpl.parse(MxReda00200103 .class, xml, _classes)); + return ((MxReda00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200104.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200104.java index 594e12bb5..f5917626f 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200104.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00200104 parse(String xml) { - return ((MxReda00200104) MxReadImpl.parse(MxReda00200104 .class, xml, _classes)); + return ((MxReda00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300102.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300102.java index 6e3b4818b..0c0acea44 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300102.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00300102 parse(String xml) { - return ((MxReda00300102) MxReadImpl.parse(MxReda00300102 .class, xml, _classes)); + return ((MxReda00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300103.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300103.java index 975c23722..7c41e34f5 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300103.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00300103 parse(String xml) { - return ((MxReda00300103) MxReadImpl.parse(MxReda00300103 .class, xml, _classes)); + return ((MxReda00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400101.java index c341e8312..ae4663504 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00400101 parse(String xml) { - return ((MxReda00400101) MxReadImpl.parse(MxReda00400101 .class, xml, _classes)); + return ((MxReda00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400102.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400102.java index 17fd79fb7..52f972029 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400102.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00400102 parse(String xml) { - return ((MxReda00400102) MxReadImpl.parse(MxReda00400102 .class, xml, _classes)); + return ((MxReda00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400103.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400103.java index a39b75cee..e64797685 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400103.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00400103 parse(String xml) { - return ((MxReda00400103) MxReadImpl.parse(MxReda00400103 .class, xml, _classes)); + return ((MxReda00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400104.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400104.java index a4c159450..9f6d051c7 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400104.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00400104 parse(String xml) { - return ((MxReda00400104) MxReadImpl.parse(MxReda00400104 .class, xml, _classes)); + return ((MxReda00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00400104 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400105.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400105.java index 09ced1bdd..45386dcd9 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400105.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00400105 parse(String xml) { - return ((MxReda00400105) MxReadImpl.parse(MxReda00400105 .class, xml, _classes)); + return ((MxReda00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00400105 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500101.java index 7c2f88b9d..fe6eaf37c 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00500101 parse(String xml) { - return ((MxReda00500101) MxReadImpl.parse(MxReda00500101 .class, xml, _classes)); + return ((MxReda00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500102.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500102.java index 7c8e5cd7b..1cd7d3663 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500102.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00500102 parse(String xml) { - return ((MxReda00500102) MxReadImpl.parse(MxReda00500102 .class, xml, _classes)); + return ((MxReda00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500103.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500103.java index ed1130cd3..cfac12bf9 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500103.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda00500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda00500103 parse(String xml) { - return ((MxReda00500103) MxReadImpl.parse(MxReda00500103 .class, xml, _classes)); + return ((MxReda00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda00500103 parse(String xml, MxReadConfiguration conf) { + return ((MxReda00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01400101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01400101.java index aaa2ba804..757e1db7f 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01400101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01400101 parse(String xml) { - return ((MxReda01400101) MxReadImpl.parse(MxReda01400101 .class, xml, _classes)); + return ((MxReda01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01500101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01500101.java index 809b988dc..8e7bd82cd 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01500101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01500101 parse(String xml) { - return ((MxReda01500101) MxReadImpl.parse(MxReda01500101 .class, xml, _classes)); + return ((MxReda01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01600101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01600101.java index 712b74aae..887ecafca 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01600101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01600101 parse(String xml) { - return ((MxReda01600101) MxReadImpl.parse(MxReda01600101 .class, xml, _classes)); + return ((MxReda01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01700101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01700101.java index e0302ce9e..dac1785f3 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01700101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01700101 parse(String xml) { - return ((MxReda01700101) MxReadImpl.parse(MxReda01700101 .class, xml, _classes)); + return ((MxReda01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01800101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01800101.java index 990f37fc7..2fa23fd71 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01800101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01800101 parse(String xml) { - return ((MxReda01800101) MxReadImpl.parse(MxReda01800101 .class, xml, _classes)); + return ((MxReda01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01900101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01900101.java index 10bbd4353..bc4cbb04d 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01900101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda01900101 parse(String xml) { - return ((MxReda01900101) MxReadImpl.parse(MxReda01900101 .class, xml, _classes)); + return ((MxReda01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02000101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02000101.java index 2269e5e90..a9876e5aa 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02000101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda02000101 parse(String xml) { - return ((MxReda02000101) MxReadImpl.parse(MxReda02000101 .class, xml, _classes)); + return ((MxReda02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02100101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02100101.java index 6ff38a71e..8b8d9874e 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02100101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda02100101 parse(String xml) { - return ((MxReda02100101) MxReadImpl.parse(MxReda02100101 .class, xml, _classes)); + return ((MxReda02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda02100101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02200101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02200101.java index 5ede28127..ca8767f9d 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02200101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda02200101 parse(String xml) { - return ((MxReda02200101) MxReadImpl.parse(MxReda02200101 .class, xml, _classes)); + return ((MxReda02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02300101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02300101.java index fc640f7fd..1705ccac3 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02300101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda02300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda02300101 parse(String xml) { - return ((MxReda02300101) MxReadImpl.parse(MxReda02300101 .class, xml, _classes)); + return ((MxReda02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda02300101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03100101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03100101.java index 4a4ed48ba..3a2da267d 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03100101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda03100101 parse(String xml) { - return ((MxReda03100101) MxReadImpl.parse(MxReda03100101 .class, xml, _classes)); + return ((MxReda03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda03100101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03200101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03200101.java index 541157186..4b1edd7eb 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03200101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda03200101 parse(String xml) { - return ((MxReda03200101) MxReadImpl.parse(MxReda03200101 .class, xml, _classes)); + return ((MxReda03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda03200101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03500101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03500101.java index f0e5984a7..546471600 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03500101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda03500101 parse(String xml) { - return ((MxReda03500101) MxReadImpl.parse(MxReda03500101 .class, xml, _classes)); + return ((MxReda03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda03500101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03600101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03600101.java index 6b24b3b1e..254b55119 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03600101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda03600101 parse(String xml) { - return ((MxReda03600101) MxReadImpl.parse(MxReda03600101 .class, xml, _classes)); + return ((MxReda03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda03600101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03700101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03700101.java index 4510fa496..e4deb7def 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03700101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda03700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda03700101 parse(String xml) { - return ((MxReda03700101) MxReadImpl.parse(MxReda03700101 .class, xml, _classes)); + return ((MxReda03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda03700101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04100101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04100101.java index 657fd1a9b..c171a36a1 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04100101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda04100101 parse(String xml) { - return ((MxReda04100101) MxReadImpl.parse(MxReda04100101 .class, xml, _classes)); + return ((MxReda04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda04100101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04200101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04200101.java index 8d1702cec..8195e256a 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04200101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda04200101 parse(String xml) { - return ((MxReda04200101) MxReadImpl.parse(MxReda04200101 .class, xml, _classes)); + return ((MxReda04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda04200101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04300101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04300101.java index 8c61728e3..a82f3ea8c 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04300101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda04300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda04300101 parse(String xml) { - return ((MxReda04300101) MxReadImpl.parse(MxReda04300101 .class, xml, _classes)); + return ((MxReda04300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda04300101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda04300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda04300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05600101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05600101.java index 85320f57b..8248bce43 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05600101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda05600101 parse(String xml) { - return ((MxReda05600101) MxReadImpl.parse(MxReda05600101 .class, xml, _classes)); + return ((MxReda05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda05600101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05700101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05700101.java index 180e60869..23fc691f2 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05700101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda05700101 parse(String xml) { - return ((MxReda05700101) MxReadImpl.parse(MxReda05700101 .class, xml, _classes)); + return ((MxReda05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda05700101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05800101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05800101.java index 6f5d3f22c..c4f08354e 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05800101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda05800101 parse(String xml) { - return ((MxReda05800101) MxReadImpl.parse(MxReda05800101 .class, xml, _classes)); + return ((MxReda05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda05800101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05900101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05900101.java index 2c0c92360..375fb6854 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05900101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda05900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda05900101 parse(String xml) { - return ((MxReda05900101) MxReadImpl.parse(MxReda05900101 .class, xml, _classes)); + return ((MxReda05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda05900101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06000101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06000101.java index b0146c81b..77b52409f 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06000101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06000101 parse(String xml) { - return ((MxReda06000101) MxReadImpl.parse(MxReda06000101 .class, xml, _classes)); + return ((MxReda06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06000101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06100101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06100101.java index e1bf7e238..3029c220d 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06100101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06100101 parse(String xml) { - return ((MxReda06100101) MxReadImpl.parse(MxReda06100101 .class, xml, _classes)); + return ((MxReda06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06100101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06200101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06200101.java index 599b43d4a..2696b9d94 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06200101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06200101 parse(String xml) { - return ((MxReda06200101) MxReadImpl.parse(MxReda06200101 .class, xml, _classes)); + return ((MxReda06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06200101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06300101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06300101.java index 73019a6d8..98ad2b2d7 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06300101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06300101 parse(String xml) { - return ((MxReda06300101) MxReadImpl.parse(MxReda06300101 .class, xml, _classes)); + return ((MxReda06300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06300101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06400101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06400101.java index 219663bc3..a6cf2f45b 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06400101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06400101 parse(String xml) { - return ((MxReda06400101) MxReadImpl.parse(MxReda06400101 .class, xml, _classes)); + return ((MxReda06400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06400101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06500101.java b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06500101.java index 5fdea5fc2..ff3006808 100644 --- a/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06500101.java +++ b/model-reda-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxReda06500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxReda06500101 parse(String xml) { - return ((MxReda06500101) MxReadImpl.parse(MxReda06500101 .class, xml, _classes)); + return ((MxReda06500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxReda06500101 parse(String xml, MxReadConfiguration conf) { + return ((MxReda06500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxReda06500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail1.java index 4d6c42e9b..762e558f1 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AuditTrail1 { protected String odFldVal; @XmlElement(name = "NewFldVal", required = true) protected String newFldVal; - @XmlElement(name = "OprTmStmp", required = true) + @XmlElement(name = "OprTmStmp", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar oprTmStmp; @XmlElement(name = "InstgUsr", required = true) @@ -124,7 +127,7 @@ public AuditTrail1 setNewFldVal(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOprTmStmp() { @@ -136,7 +139,7 @@ public XMLGregorianCalendar getOprTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AuditTrail1 setOprTmStmp(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CalendarData1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CalendarData1.java index 8e8282c28..ee3b1a221 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CalendarData1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CalendarData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CalendarData1 { - @XmlElement(name = "SysDt", required = true) + @XmlElement(name = "SysDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sysDt; @XmlElement(name = "SysSts", required = true) @@ -37,7 +40,7 @@ public class CalendarData1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSysDt() { @@ -49,7 +52,7 @@ public XMLGregorianCalendar getSysDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CalendarData1 setSysDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Contact5.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Contact5.java index 66cd90837..2e9e80800 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Contact5.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Contact5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +68,12 @@ public class Contact5 { @XmlElement(name = "PrefrdMtd") @XmlSchemaType(name = "string") protected PreferredContactMethod1Code prefrdMtd; - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; - @XmlElement(name = "VldTo") + @XmlElement(name = "VldTo", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldTo; @@ -382,7 +386,7 @@ public Contact5 setPrefrdMtd(PreferredContactMethod1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -394,7 +398,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Contact5 setVldFr(XMLGregorianCalendar value) { @@ -407,7 +411,7 @@ public Contact5 setVldFr(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldTo() { @@ -419,7 +423,7 @@ public XMLGregorianCalendar getVldTo() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Contact5 setVldTo(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges1.java index 93bc3eb59..e764bd69c 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CostsAndCharges1 { - @XmlElement(name = "ExAnteRefDt") + @XmlElement(name = "ExAnteRefDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar exAnteRefDt; - @XmlElement(name = "ExPstRefDt") + @XmlElement(name = "ExPstRefDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar exPstRefDt; @XmlElement(name = "IndvCostOrChrg", required = true) @@ -46,7 +50,7 @@ public class CostsAndCharges1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExAnteRefDt() { @@ -58,7 +62,7 @@ public XMLGregorianCalendar getExAnteRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CostsAndCharges1 setExAnteRefDt(XMLGregorianCalendar value) { @@ -71,7 +75,7 @@ public CostsAndCharges1 setExAnteRefDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExPstRefDt() { @@ -83,7 +87,7 @@ public XMLGregorianCalendar getExPstRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CostsAndCharges1 setExPstRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges2.java index a0212b3b7..df3078fbf 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CostsAndCharges2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CostsAndCharges2 { - @XmlElement(name = "ExAnteRefDt") + @XmlElement(name = "ExAnteRefDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar exAnteRefDt; @XmlElement(name = "IndvCostOrChrg", required = true) @@ -42,7 +45,7 @@ public class CostsAndCharges2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExAnteRefDt() { @@ -54,7 +57,7 @@ public XMLGregorianCalendar getExAnteRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CostsAndCharges2 setExAnteRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1.java index 4393c72ef..6a07ac21b 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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 CutOff1 { protected String cutOffUpdId; @XmlElement(name = "Ccy", required = true) protected String ccy; - @XmlElement(name = "CutOffTm", required = true) + @XmlElement(name = "CutOffTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar cutOffTm; @XmlElement(name = "ValDtOffset", required = true) @@ -93,7 +96,7 @@ public CutOff1 setCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCutOffTm() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CutOff1 setCutOffTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3Choice.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3Choice.java index 0bd35b721..637aea528 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3Choice.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DatePeriod3Choice { - @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 = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -45,7 +50,7 @@ public class DatePeriod3Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrDt() { @@ -57,7 +62,7 @@ public XMLGregorianCalendar getFrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DatePeriod3Choice setFrDt(XMLGregorianCalendar value) { @@ -70,7 +75,7 @@ public DatePeriod3Choice setFrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getToDt() { @@ -82,7 +87,7 @@ public XMLGregorianCalendar getToDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DatePeriod3Choice setToDt(XMLGregorianCalendar value) { @@ -120,7 +125,7 @@ public DatePeriod3Choice setFrToDt(DatePeriod2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -132,7 +137,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DatePeriod3Choice setDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EffectiveDate1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EffectiveDate1.java index dc3c0d38f..4c39dec54 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EffectiveDate1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EffectiveDate1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EffectiveDate1 { - @XmlElement(name = "FctvDt", required = true) + @XmlElement(name = "FctvDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDt; @XmlElement(name = "FctvDtParam") @@ -37,7 +40,7 @@ public class EffectiveDate1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDt() { @@ -49,7 +52,7 @@ public XMLGregorianCalendar getFctvDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EffectiveDate1 setFctvDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument66.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument66.java index 3b4edef75..21448d1e1 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument66.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument66.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,25 +84,32 @@ public class FinancialInstrument66 { @XmlElement(name = "EUSvgsDrctv") @XmlSchemaType(name = "string") protected EUSavingsDirective1Code euSvgsDrctv; - @XmlElement(name = "LnchDt") + @XmlElement(name = "LnchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lnchDt; - @XmlElement(name = "FndEndDt") + @XmlElement(name = "FndEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fndEndDt; - @XmlElement(name = "TermntnDt") + @XmlElement(name = "TermntnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar termntnDt; - @XmlElement(name = "InitlOfferEndDt") + @XmlElement(name = "InitlOfferEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar initlOfferEndDt; - @XmlElement(name = "SspnsnStartDt") + @XmlElement(name = "SspnsnStartDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sspnsnStartDt; - @XmlElement(name = "SspnsnEndDt") + @XmlElement(name = "SspnsnEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sspnsnEndDt; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "ClsdEndFnd") @@ -426,7 +435,7 @@ public FinancialInstrument66 setEUSvgsDrctv(EUSavingsDirective1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLnchDt() { @@ -438,7 +447,7 @@ public XMLGregorianCalendar getLnchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setLnchDt(XMLGregorianCalendar value) { @@ -451,7 +460,7 @@ public FinancialInstrument66 setLnchDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFndEndDt() { @@ -463,7 +472,7 @@ public XMLGregorianCalendar getFndEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setFndEndDt(XMLGregorianCalendar value) { @@ -476,7 +485,7 @@ public FinancialInstrument66 setFndEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTermntnDt() { @@ -488,7 +497,7 @@ public XMLGregorianCalendar getTermntnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setTermntnDt(XMLGregorianCalendar value) { @@ -501,7 +510,7 @@ public FinancialInstrument66 setTermntnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInitlOfferEndDt() { @@ -513,7 +522,7 @@ public XMLGregorianCalendar getInitlOfferEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setInitlOfferEndDt(XMLGregorianCalendar value) { @@ -526,7 +535,7 @@ public FinancialInstrument66 setInitlOfferEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSspnsnStartDt() { @@ -538,7 +547,7 @@ public XMLGregorianCalendar getSspnsnStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setSspnsnStartDt(XMLGregorianCalendar value) { @@ -551,7 +560,7 @@ public FinancialInstrument66 setSspnsnStartDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSspnsnEndDt() { @@ -563,7 +572,7 @@ public XMLGregorianCalendar getSspnsnEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setSspnsnEndDt(XMLGregorianCalendar value) { @@ -576,7 +585,7 @@ public FinancialInstrument66 setSspnsnEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -588,7 +597,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument66 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument96.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument96.java index e8cb17c8e..7e82768b2 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument96.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument96.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -83,25 +85,32 @@ public class FinancialInstrument96 { @XmlElement(name = "EUSvgsDrctv") @XmlSchemaType(name = "string") protected EUSavingsDirective1Code euSvgsDrctv; - @XmlElement(name = "LnchDt") + @XmlElement(name = "LnchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lnchDt; - @XmlElement(name = "FndEndDt") + @XmlElement(name = "FndEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fndEndDt; - @XmlElement(name = "TermntnDt") + @XmlElement(name = "TermntnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar termntnDt; - @XmlElement(name = "InitlOfferEndDt") + @XmlElement(name = "InitlOfferEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar initlOfferEndDt; - @XmlElement(name = "SspnsnStartDt") + @XmlElement(name = "SspnsnStartDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sspnsnStartDt; - @XmlElement(name = "SspnsnEndDt") + @XmlElement(name = "SspnsnEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sspnsnEndDt; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "MayBeTermntdEarly") @@ -430,7 +439,7 @@ public FinancialInstrument96 setEUSvgsDrctv(EUSavingsDirective1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLnchDt() { @@ -442,7 +451,7 @@ public XMLGregorianCalendar getLnchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setLnchDt(XMLGregorianCalendar value) { @@ -455,7 +464,7 @@ public FinancialInstrument96 setLnchDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFndEndDt() { @@ -467,7 +476,7 @@ public XMLGregorianCalendar getFndEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setFndEndDt(XMLGregorianCalendar value) { @@ -480,7 +489,7 @@ public FinancialInstrument96 setFndEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTermntnDt() { @@ -492,7 +501,7 @@ public XMLGregorianCalendar getTermntnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setTermntnDt(XMLGregorianCalendar value) { @@ -505,7 +514,7 @@ public FinancialInstrument96 setTermntnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInitlOfferEndDt() { @@ -517,7 +526,7 @@ public XMLGregorianCalendar getInitlOfferEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setInitlOfferEndDt(XMLGregorianCalendar value) { @@ -530,7 +539,7 @@ public FinancialInstrument96 setInitlOfferEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSspnsnStartDt() { @@ -542,7 +551,7 @@ public XMLGregorianCalendar getSspnsnStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setSspnsnStartDt(XMLGregorianCalendar value) { @@ -555,7 +564,7 @@ public FinancialInstrument96 setSspnsnStartDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSspnsnEndDt() { @@ -567,7 +576,7 @@ public XMLGregorianCalendar getSspnsnEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setSspnsnEndDt(XMLGregorianCalendar value) { @@ -580,7 +589,7 @@ public FinancialInstrument96 setSspnsnEndDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -592,7 +601,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument96 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters2.java index 89ab82633..e4fd67a81 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundParameters2 { protected List finInstrmDtls; @XmlElement(name = "FndMgmtCpny") protected PartyIdentification2Choice fndMgmtCpny; - @XmlElement(name = "DtFr") + @XmlElement(name = "DtFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtFr; @XmlElement(name = "CtryOfDmcl") @@ -102,7 +105,7 @@ public FundParameters2 setFndMgmtCpny(PartyIdentification2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtFr() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getDtFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundParameters2 setDtFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters4.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters4.java index 5d5094da1..d3ed092cb 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters4.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundParameters4 { protected List finInstrmDtls; @XmlElement(name = "FndMgmtCpny") protected List fndMgmtCpny; - @XmlElement(name = "DtFr") + @XmlElement(name = "DtFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtFr; @XmlElement(name = "CtryOfDmcl") @@ -106,7 +109,7 @@ public List getFndMgmtCpny() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtFr() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getDtFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundParameters4 setDtFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters5.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters5.java index 0d8c41ccd..78a6502da 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters5.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundParameters5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundParameters5 { protected List finInstrmDtls; @XmlElement(name = "FndMgmtCpny") protected List fndMgmtCpny; - @XmlElement(name = "DtFr") + @XmlElement(name = "DtFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtFr; @XmlElement(name = "CtryOfDmcl") @@ -106,7 +109,7 @@ public List getFndMgmtCpny() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtFr() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getDtFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundParameters5 setDtFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport1.java index 44325cbe2..7b4bb9863 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundReferenceDataReport1 { protected String id; @XmlElement(name = "Vrsn") protected MarketPracticeVersion1 vrsn; - @XmlElement(name = "GnlRefDt", required = true) + @XmlElement(name = "GnlRefDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar gnlRefDt; @XmlElement(name = "SctyId", required = true) @@ -146,7 +149,7 @@ public FundReferenceDataReport1 setVrsn(MarketPracticeVersion1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getGnlRefDt() { @@ -158,7 +161,7 @@ public XMLGregorianCalendar getGnlRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundReferenceDataReport1 setGnlRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport2.java index 50ff7a6db..565daeae0 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundReferenceDataReport2 { protected String id; @XmlElement(name = "Vrsn") protected MarketPracticeVersion1 vrsn; - @XmlElement(name = "GnlRefDt", required = true) + @XmlElement(name = "GnlRefDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar gnlRefDt; @XmlElement(name = "SctyId", required = true) @@ -146,7 +149,7 @@ public FundReferenceDataReport2 setVrsn(MarketPracticeVersion1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getGnlRefDt() { @@ -158,7 +161,7 @@ public XMLGregorianCalendar getGnlRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundReferenceDataReport2 setGnlRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport3.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport3.java index 8dcdb1114..e0556fca5 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport3.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundReferenceDataReport3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundReferenceDataReport3 { protected MarketPracticeVersion1 vrsn; @XmlElement(name = "AuthrsdPrxy") protected ContactAttributes6 authrsdPrxy; - @XmlElement(name = "GnlRefDt", required = true) + @XmlElement(name = "GnlRefDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar gnlRefDt; @XmlElement(name = "TrgtMktInd") @@ -183,7 +186,7 @@ public FundReferenceDataReport3 setAuthrsdPrxy(ContactAttributes6 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getGnlRefDt() { @@ -195,7 +198,7 @@ public XMLGregorianCalendar getGnlRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundReferenceDataReport3 setGnlRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericReportParameters.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericReportParameters.java index 9301db298..86ecdb604 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericReportParameters.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericReportParameters.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GenericReportParameters { protected List finInstrmDtls; @XmlElement(name = "RptDesc", required = true) protected String rptDesc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "UsrDfndParam") @@ -131,7 +134,7 @@ public GenericReportParameters setRptDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -143,7 +146,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public GenericReportParameters setDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader12.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader12.java index 8b8e22acb..c3c9f1276 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader12.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader12.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MessageHeader12 { @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 = "OrgnlBizInstr") @@ -65,7 +68,7 @@ public MessageHeader12 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 MessageHeader12 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NettingCutOffReportData1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NettingCutOffReportData1.java index 56fb01d0b..4d1ef6651 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NettingCutOffReportData1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NettingCutOffReportData1.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,12 +37,14 @@ public class NettingCutOffReportData1 { @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 = "RptTp", required = true) protected String rptTp; - @XmlElement(name = "ActvtnDt", required = true) + @XmlElement(name = "ActvtnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actvtnDt; @XmlElement(name = "NetSvcPtcptId") @@ -81,7 +86,7 @@ public NettingCutOffReportData1 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 NettingCutOffReportData1 setCreDtTm(XMLGregorianCalendar value) { @@ -131,7 +136,7 @@ public NettingCutOffReportData1 setRptTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActvtnDt() { @@ -143,7 +148,7 @@ public XMLGregorianCalendar getActvtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public NettingCutOffReportData1 setActvtnDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderDesk1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderDesk1.java index 8b7f2e71d..0981c815b 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderDesk1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderDesk1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OrderDesk1 { @XmlElement(name = "OrdrDsk") protected ContactAttributes5 ordrDsk; - @XmlElement(name = "ClsrDts") + @XmlElement(name = "ClsrDts", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected List clsrDts; @XmlElement(name = "AddtlInf") @@ -80,7 +83,7 @@ public OrderDesk1 setOrdrDsk(ContactAttributes5 value) { * *

* Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } + * {@link String } * * */ diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java deleted file mode 100644 index 2abf899ca..000000000 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java +++ /dev/null @@ -1,128 +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; - - -/** - * Unique identification, as assigned by the original requestor, to unambiguously identify the business instruction message. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OriginalBusinessInstruction1", propOrder = { - "msgId", - "msgNmId", - "creDtTm" -}) -public class OriginalBusinessInstruction1 { - - @XmlElement(name = "MsgId", required = true) - protected String msgId; - @XmlElement(name = "MsgNmId") - protected String msgNmId; - @XmlElement(name = "CreDtTm") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar creDtTm; - - /** - * Gets the value of the msgId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMsgId() { - return msgId; - } - - /** - * Sets the value of the msgId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public OriginalBusinessInstruction1 setMsgId(String value) { - this.msgId = value; - return this; - } - - /** - * Gets the value of the msgNmId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMsgNmId() { - return msgNmId; - } - - /** - * Sets the value of the msgNmId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public OriginalBusinessInstruction1 setMsgNmId(String value) { - this.msgNmId = value; - return this; - } - - /** - * Gets the value of the creDtTm property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCreDtTm() { - return creDtTm; - } - - /** - * Sets the value of the creDtTm property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public OriginalBusinessInstruction1 setCreDtTm(XMLGregorianCalendar value) { - this.creDtTm = 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-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAuditTrail1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAuditTrail1.java index 9c1dc6642..d9967ef68 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAuditTrail1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAuditTrail1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyAuditTrail1 { @XmlElement(name = "Rcrd", required = true) protected List 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 = "InstgUsr", required = true) @@ -74,7 +77,7 @@ public List getRcrd() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOprTmStmp() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getOprTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyAuditTrail1 setOprTmStmp(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyLockStatus1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyLockStatus1.java index b166f452f..3a310d7a0 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyLockStatus1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyLockStatus1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyLockStatus1 { - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Sts", required = true) @@ -43,7 +46,7 @@ public class PartyLockStatus1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -55,7 +58,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyLockStatus1 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName2.java index 184d08a6a..dce767c06 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyName2 { - @XmlElement(name = "VldFr", required = true) + @XmlElement(name = "VldFr", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Nm") @@ -40,7 +43,7 @@ public class PartyName2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -52,7 +55,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyName2 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName3.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName3.java index 0d02ea927..ecfe667af 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName3.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyName3 { - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Nm") @@ -40,7 +43,7 @@ public class PartyName3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -52,7 +55,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyName3 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName4.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName4.java index 753369b87..27b620e27 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName4.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyName4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyName4 { - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Nm", required = true) @@ -40,7 +43,7 @@ public class PartyName4 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -52,7 +55,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyName4 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyReferenceDataChange2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyReferenceDataChange2.java index 79d463c7e..823148ac3 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyReferenceDataChange2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyReferenceDataChange2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyReferenceDataChange2 { protected SystemPartyIdentification8 ptyId; @XmlElement(name = "Rcrd", required = true) protected List rcrd; - @XmlElement(name = "OprTmStmp", required = true) + @XmlElement(name = "OprTmStmp", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar oprTmStmp; @@ -96,7 +99,7 @@ public List getRcrd() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOprTmStmp() { @@ -108,7 +111,7 @@ public XMLGregorianCalendar getOprTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyReferenceDataChange2 setOprTmStmp(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyStatement2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyStatement2.java index 8374c0996..3ad7f4cfe 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyStatement2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyStatement2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyStatement2 { - @XmlElement(name = "SysDt", required = true) + @XmlElement(name = "SysDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sysDt; @XmlElement(name = "Chng") @@ -39,7 +42,7 @@ public class PartyStatement2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSysDt() { @@ -51,7 +54,7 @@ public XMLGregorianCalendar getSysDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyStatement2 setSysDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period15.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period15.java index 9cb7bbd8e..c56473405 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period15.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period15.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Period15 { - @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", required = true) + @XmlElement(name = "EndDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar endDt; @@ -38,7 +42,7 @@ public class Period15 { * * @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 Period15 setStartDt(XMLGregorianCalendar value) { @@ -63,7 +67,7 @@ public Period15 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 Period15 setEndDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress25.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress25.java index 05f81744e..f4ac277ab 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress25.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress25.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +77,8 @@ public class PostalAddress25 { protected String ctry; @XmlElement(name = "AdrLine") protected List adrLine; - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @@ -488,7 +491,7 @@ public List getAdrLine() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -500,7 +503,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PostalAddress25 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress9.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress9.java index e58f64bab..4430ddd88 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress9.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PostalAddress9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PostalAddress9 { protected String ctrySubDvsn; @XmlElement(name = "Ctry") protected String ctry; - @XmlElement(name = "VldFr", required = true) + @XmlElement(name = "VldFr", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @@ -202,7 +205,7 @@ public PostalAddress9 setCtry(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -214,7 +217,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PostalAddress9 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics1.java index 3d25d5828..63634e806 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -38,7 +40,8 @@ public class ProcessingCharacteristics1 { protected boolean unitsInd; @XmlElement(name = "DealgCcyAccptd", required = true) protected List dealgCcyAccptd; - @XmlElement(name = "DealgCutOffTm", required = true) + @XmlElement(name = "DealgCutOffTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame", required = true) @@ -114,7 +117,7 @@ public List getDealgCcyAccptd() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -126,7 +129,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics1 setDealgCutOffTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics2.java index 6c55a6105..bb1914d22 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -50,7 +52,8 @@ public class ProcessingCharacteristics2 { protected boolean unitsInd; @XmlElement(name = "MainFndOrdrDskLctn", required = true) protected MainFundOrderDeskLocation1 mainFndOrdrDskLctn; - @XmlElement(name = "DealgCutOffTm", required = true) + @XmlElement(name = "DealgCutOffTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame", required = true) @@ -208,7 +211,7 @@ public ProcessingCharacteristics2 setMainFndOrdrDskLctn(MainFundOrderDeskLocatio * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -220,7 +223,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics2 setDealgCutOffTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics3.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics3.java index da8c9e65b..78c153109 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics3.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -47,7 +49,8 @@ public class ProcessingCharacteristics3 { protected boolean unitsInd; @XmlElement(name = "MainFndOrdrDskLctn", required = true) protected MainFundOrderDeskLocation1 mainFndOrdrDskLctn; - @XmlElement(name = "DealgCutOffTm", required = true) + @XmlElement(name = "DealgCutOffTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame", required = true) @@ -180,7 +183,7 @@ public ProcessingCharacteristics3 setMainFndOrdrDskLctn(MainFundOrderDeskLocatio * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -192,7 +195,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics3 setDealgCutOffTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics4.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics4.java index b26ff47e0..1bab52233 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics4.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -62,12 +64,14 @@ public class ProcessingCharacteristics4 { protected EventFrequency5Code dealgFrqcy; @XmlElement(name = "DealgFrqcyDesc") protected String dealgFrqcyDesc; - @XmlElement(name = "DealgCutOffTm") + @XmlElement(name = "DealgCutOffTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame") protected TimeFrame4 dealgCutOffTmFrame; - @XmlElement(name = "DealConfTm") + @XmlElement(name = "DealConfTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealConfTm; @XmlElement(name = "DealConfTmFrame") @@ -313,7 +317,7 @@ public ProcessingCharacteristics4 setDealgFrqcyDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -325,7 +329,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics4 setDealgCutOffTm(XMLGregorianCalendar value) { @@ -363,7 +367,7 @@ public ProcessingCharacteristics4 setDealgCutOffTmFrame(TimeFrame4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealConfTm() { @@ -375,7 +379,7 @@ public XMLGregorianCalendar getDealConfTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics4 setDealConfTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics5.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics5.java index 7b5f3b85f..63d85d87b 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics5.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -62,12 +64,14 @@ public class ProcessingCharacteristics5 { protected EventFrequency5Code dealgFrqcy; @XmlElement(name = "DealgFrqcyDesc") protected String dealgFrqcyDesc; - @XmlElement(name = "DealgCutOffTm") + @XmlElement(name = "DealgCutOffTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame") protected TimeFrame4 dealgCutOffTmFrame; - @XmlElement(name = "DealConfTm") + @XmlElement(name = "DealConfTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealConfTm; @XmlElement(name = "DealConfTmFrame") @@ -313,7 +317,7 @@ public ProcessingCharacteristics5 setDealgFrqcyDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -325,7 +329,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics5 setDealgCutOffTm(XMLGregorianCalendar value) { @@ -363,7 +367,7 @@ public ProcessingCharacteristics5 setDealgCutOffTmFrame(TimeFrame4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealConfTm() { @@ -375,7 +379,7 @@ public XMLGregorianCalendar getDealConfTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics5 setDealConfTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics6.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics6.java index d74ef7ca6..673931475 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics6.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -59,12 +61,14 @@ public class ProcessingCharacteristics6 { protected EventFrequency5Code dealgFrqcy; @XmlElement(name = "DealgFrqcyDesc") protected String dealgFrqcyDesc; - @XmlElement(name = "DealgCutOffTm") + @XmlElement(name = "DealgCutOffTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame") protected TimeFrame4 dealgCutOffTmFrame; - @XmlElement(name = "DealConfTm") + @XmlElement(name = "DealConfTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealConfTm; @XmlElement(name = "DealConfTmFrame") @@ -285,7 +289,7 @@ public ProcessingCharacteristics6 setDealgFrqcyDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -297,7 +301,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics6 setDealgCutOffTm(XMLGregorianCalendar value) { @@ -335,7 +339,7 @@ public ProcessingCharacteristics6 setDealgCutOffTmFrame(TimeFrame4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealConfTm() { @@ -347,7 +351,7 @@ public XMLGregorianCalendar getDealConfTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics6 setDealConfTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics7.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics7.java index ac3bda9a0..ae1bdbf76 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics7.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -62,12 +64,14 @@ public class ProcessingCharacteristics7 { protected EventFrequency5Code dealgFrqcy; @XmlElement(name = "DealgFrqcyDesc") protected String dealgFrqcyDesc; - @XmlElement(name = "DealgCutOffTm") + @XmlElement(name = "DealgCutOffTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame") protected TimeFrame4 dealgCutOffTmFrame; - @XmlElement(name = "DealConfTm") + @XmlElement(name = "DealConfTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealConfTm; @XmlElement(name = "DealConfTmFrame") @@ -313,7 +317,7 @@ public ProcessingCharacteristics7 setDealgFrqcyDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -325,7 +329,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics7 setDealgCutOffTm(XMLGregorianCalendar value) { @@ -363,7 +367,7 @@ public ProcessingCharacteristics7 setDealgCutOffTmFrame(TimeFrame4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealConfTm() { @@ -375,7 +379,7 @@ public XMLGregorianCalendar getDealConfTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics7 setDealConfTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics8.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics8.java index e684cad82..0b68fe317 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics8.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessingCharacteristics8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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; @@ -62,12 +64,14 @@ public class ProcessingCharacteristics8 { protected EventFrequency5Code dealgFrqcy; @XmlElement(name = "DealgFrqcyDesc") protected String dealgFrqcyDesc; - @XmlElement(name = "DealgCutOffTm") + @XmlElement(name = "DealgCutOffTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealgCutOffTm; @XmlElement(name = "DealgCutOffTmFrame") protected TimeFrame4 dealgCutOffTmFrame; - @XmlElement(name = "DealConfTm") + @XmlElement(name = "DealConfTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar dealConfTm; @XmlElement(name = "DealConfTmFrame") @@ -313,7 +317,7 @@ public ProcessingCharacteristics8 setDealgFrqcyDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealgCutOffTm() { @@ -325,7 +329,7 @@ public XMLGregorianCalendar getDealgCutOffTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics8 setDealgCutOffTm(XMLGregorianCalendar value) { @@ -363,7 +367,7 @@ public ProcessingCharacteristics8 setDealgCutOffTmFrame(TimeFrame4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDealConfTm() { @@ -375,7 +379,7 @@ public XMLGregorianCalendar getDealConfTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProcessingCharacteristics8 setDealConfTm(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestData1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestData1.java index e3ce56265..31db29bee 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestData1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RequestData1 { protected String msgId; @XmlElement(name = "ReqTp", required = true) protected String reqTp; - @XmlElement(name = "ReqdActvtnDt", required = true) + @XmlElement(name = "ReqdActvtnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdActvtnDt; @XmlElement(name = "ReqSvcr") @@ -99,7 +102,7 @@ public RequestData1 setReqTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdActvtnDt() { @@ -111,7 +114,7 @@ public XMLGregorianCalendar getReqdActvtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RequestData1 setReqdActvtnDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountReferenceDataChange2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountReferenceDataChange2.java index 23c417c38..4b0982720 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountReferenceDataChange2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountReferenceDataChange2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SecuritiesAccountReferenceDataChange2 { protected String odFldVal; @XmlElement(name = "NewFldVal", required = true) protected String newFldVal; - @XmlElement(name = "OprTmStmp", required = true) + @XmlElement(name = "OprTmStmp", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar oprTmStmp; @@ -146,7 +149,7 @@ public SecuritiesAccountReferenceDataChange2 setNewFldVal(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOprTmStmp() { @@ -158,7 +161,7 @@ public XMLGregorianCalendar getOprTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesAccountReferenceDataChange2 setOprTmStmp(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountStatement2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountStatement2.java index f75ace367..c247840a8 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountStatement2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesAccountStatement2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SecuritiesAccountStatement2 { - @XmlElement(name = "SysDt", required = true) + @XmlElement(name = "SysDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sysDt; @XmlElement(name = "Chng") @@ -39,7 +42,7 @@ public class SecuritiesAccountStatement2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSysDt() { @@ -51,7 +54,7 @@ public XMLGregorianCalendar getSysDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesAccountStatement2 setSysDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureType1Code.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureType1Code.java index 470ff437e..f2273f3c8 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureType1Code.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureType1Code.java @@ -40,7 +40,7 @@ public enum SignatureType1Code { DIGI, /** - * A copy of a physical or orignal signature in an electronic format. + * A copy of a physical or original signature in an electronic format. * */ ELEC, diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementAndFinancialInstrumentDetails.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementAndFinancialInstrumentDetails.java index 6d69649e2..660dea299 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementAndFinancialInstrumentDetails.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementAndFinancialInstrumentDetails.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatementAndFinancialInstrumentDetails { protected StatementType1Code stmtTp; @XmlElement(name = "XtndedStmtTp") protected String xtndedStmtTp; - @XmlElement(name = "StmtDt") + @XmlElement(name = "StmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar stmtDt; @XmlElement(name = "StmtPrd") @@ -215,7 +218,7 @@ public StatementAndFinancialInstrumentDetails setXtndedStmtTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStmtDt() { @@ -227,7 +230,7 @@ public XMLGregorianCalendar getStmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatementAndFinancialInstrumentDetails setStmtDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementDetails.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementDetails.java index 42e002c0c..f84b38b23 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementDetails.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatementDetails.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatementDetails { protected StatementType1Code stmtTp; @XmlElement(name = "XtndedStmtTp") protected String xtndedStmtTp; - @XmlElement(name = "StmtDt") + @XmlElement(name = "StmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar stmtDt; @XmlElement(name = "StmtPrd") @@ -187,7 +190,7 @@ public StatementDetails setXtndedStmtTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStmtDt() { @@ -199,7 +202,7 @@ public XMLGregorianCalendar getStmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatementDetails setStmtDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty2.java index 049693b50..f9c30672d 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +30,12 @@ }) public class SystemParty2 { - @XmlElement(name = "OpngDt") + @XmlElement(name = "OpngDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar opngDt; - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @@ -40,7 +44,7 @@ public class SystemParty2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOpngDt() { @@ -52,7 +56,7 @@ public XMLGregorianCalendar getOpngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty2 setOpngDt(XMLGregorianCalendar value) { @@ -65,7 +69,7 @@ public SystemParty2 setOpngDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -77,7 +81,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty2 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty4.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty4.java index 22fc9014d..2ca3c4321 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty4.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemParty4 { protected List adr; @XmlElement(name = "CtctDtls") protected List ctctDtls; - @XmlElement(name = "OpngDt") + @XmlElement(name = "OpngDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar opngDt; - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @XmlElement(name = "Tp", required = true) @@ -156,7 +160,7 @@ public List getCtctDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOpngDt() { @@ -168,7 +172,7 @@ public XMLGregorianCalendar getOpngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty4 setOpngDt(XMLGregorianCalendar value) { @@ -181,7 +185,7 @@ public SystemParty4 setOpngDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -193,7 +197,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty4 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty5.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty5.java index 01b4d05d4..3ee451a8e 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty5.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemParty5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemParty5 { protected PostalAddress25 adr; @XmlElement(name = "CtctDtls") protected List ctctDtls; - @XmlElement(name = "OpngDt") + @XmlElement(name = "OpngDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar opngDt; - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @XmlElement(name = "Tp") @@ -152,7 +156,7 @@ public List getCtctDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOpngDt() { @@ -164,7 +168,7 @@ public XMLGregorianCalendar getOpngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty5 setOpngDt(XMLGregorianCalendar value) { @@ -177,7 +181,7 @@ public SystemParty5 setOpngDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -189,7 +193,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemParty5 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification10.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification10.java index cf54be318..a4b4ad9fc 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification10.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification10.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemPartyIdentification10 { - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Id") @@ -37,7 +40,7 @@ public class SystemPartyIdentification10 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -49,7 +52,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemPartyIdentification10 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification2.java index 799effea2..c132673e3 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemPartyIdentification2 { - @XmlElement(name = "VldFr", required = true) + @XmlElement(name = "VldFr", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @XmlElement(name = "Id") @@ -37,7 +40,7 @@ public class SystemPartyIdentification2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -49,7 +52,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemPartyIdentification2 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification9.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification9.java index c64a40961..1cf9dfc32 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification9.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemPartyIdentification9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemPartyIdentification9 { protected PartyIdentification136 id; @XmlElement(name = "RspnsblPtyId") protected PartyIdentification136 rspnsblPtyId; - @XmlElement(name = "VldFr") + @XmlElement(name = "VldFr", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar vldFr; @@ -90,7 +93,7 @@ public SystemPartyIdentification9 setRspnsblPtyId(PartyIdentification136 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemPartyIdentification9 setVldFr(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemRestriction1.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemRestriction1.java index 2e1af24b2..762cb717b 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemRestriction1.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemRestriction1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemRestriction1 { - @XmlElement(name = "VldFr", required = true) + @XmlElement(name = "VldFr", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldFr; - @XmlElement(name = "VldTo") + @XmlElement(name = "VldTo", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldTo; @XmlElement(name = "Tp", required = true) @@ -41,7 +45,7 @@ public class SystemRestriction1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldFr() { @@ -53,7 +57,7 @@ public XMLGregorianCalendar getVldFr() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemRestriction1 setVldFr(XMLGregorianCalendar value) { @@ -66,7 +70,7 @@ public SystemRestriction1 setVldFr(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldTo() { @@ -78,7 +82,7 @@ public XMLGregorianCalendar getVldTo() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemRestriction1 setVldTo(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount5.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount5.java index 218a88226..ef813f2ff 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount5.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemSecuritiesAccount5 { - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @XmlElement(name = "HldInd") @@ -46,7 +49,7 @@ public class SystemSecuritiesAccount5 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -58,7 +61,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemSecuritiesAccount5 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount6.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount6.java index dc250d798..dd8db201f 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount6.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemSecuritiesAccount6 { - @XmlElement(name = "OpngDt") + @XmlElement(name = "OpngDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar opngDt; - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @XmlElement(name = "HldInd") @@ -67,7 +71,7 @@ public class SystemSecuritiesAccount6 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOpngDt() { @@ -79,7 +83,7 @@ public XMLGregorianCalendar getOpngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemSecuritiesAccount6 setOpngDt(XMLGregorianCalendar value) { @@ -92,7 +96,7 @@ public SystemSecuritiesAccount6 setOpngDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -104,7 +108,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemSecuritiesAccount6 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount7.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount7.java index dda2ded94..c5b966cfc 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount7.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemSecuritiesAccount7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SystemSecuritiesAccount7 { protected String id; @XmlElement(name = "Tp", required = true) protected SystemSecuritiesAccountType1Choice tp; - @XmlElement(name = "OpngDt", required = true) + @XmlElement(name = "OpngDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar opngDt; - @XmlElement(name = "ClsgDt") + @XmlElement(name = "ClsgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clsgDt; @XmlElement(name = "HldInd") @@ -142,7 +146,7 @@ public SystemSecuritiesAccount7 setTp(SystemSecuritiesAccountType1Choice value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOpngDt() { @@ -154,7 +158,7 @@ public XMLGregorianCalendar getOpngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemSecuritiesAccount7 setOpngDt(XMLGregorianCalendar value) { @@ -167,7 +171,7 @@ public SystemSecuritiesAccount7 setOpngDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClsgDt() { @@ -179,7 +183,7 @@ public XMLGregorianCalendar getClsgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SystemSecuritiesAccount7 setClsgDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TargetMarket2.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TargetMarket2.java index f0c8f284f..0dfffdb14 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TargetMarket2.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TargetMarket2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TargetMarket2 { - @XmlElement(name = "RefDt") + @XmlElement(name = "RefDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar refDt; @XmlElement(name = "InvstrTp") @@ -54,7 +57,7 @@ public class TargetMarket2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRefDt() { @@ -66,7 +69,7 @@ public XMLGregorianCalendar getRefDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TargetMarket2 setRefDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedDate.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedDate.java index 5718a2783..332f669af 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedDate.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedDate.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedDate { - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -34,7 +37,7 @@ public class UpdatedDate { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -46,7 +49,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedDate setDt(XMLGregorianCalendar value) { diff --git a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ValuationDealingProcessingCharacteristics3.java b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ValuationDealingProcessingCharacteristics3.java index 4941e1a2d..8aca8da56 100644 --- a/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ValuationDealingProcessingCharacteristics3.java +++ b/model-reda-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ValuationDealingProcessingCharacteristics3.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.IsoTimeAdapter; 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 ValuationDealingProcessingCharacteristics3 { protected EventFrequency5Code valtnFrqcy; @XmlElement(name = "ValtnFrqcyDesc") protected String valtnFrqcyDesc; - @XmlElement(name = "ValtnTm") + @XmlElement(name = "ValtnTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar valtnTm; @XmlElement(name = "DcmlstnUnits") @@ -113,7 +116,7 @@ public ValuationDealingProcessingCharacteristics3 setValtnFrqcyDesc(String value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getValtnTm() { @@ -125,7 +128,7 @@ public XMLGregorianCalendar getValtnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ValuationDealingProcessingCharacteristics3 setValtnTm(XMLGregorianCalendar value) { diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100101.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100101.java index 7f565ff90..2274acf52 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100101.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00100101 parse(String xml) { - return ((MxRemt00100101) MxReadImpl.parse(MxRemt00100101 .class, xml, _classes)); + return ((MxRemt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100102.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100102.java index 7ca52137d..62838a65a 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100102.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00100102 parse(String xml) { - return ((MxRemt00100102) MxReadImpl.parse(MxRemt00100102 .class, xml, _classes)); + return ((MxRemt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100103.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100103.java index abb6f4d68..123ea45db 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100103.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00100103 parse(String xml) { - return ((MxRemt00100103) MxReadImpl.parse(MxRemt00100103 .class, xml, _classes)); + return ((MxRemt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100104.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100104.java index 091c14e01..a6f5c85b7 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100104.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00100104 parse(String xml) { - return ((MxRemt00100104) MxReadImpl.parse(MxRemt00100104 .class, xml, _classes)); + return ((MxRemt00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100105.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100105.java index 7c7110d99..dfbaa7e1b 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100105.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00100105 parse(String xml) { - return ((MxRemt00100105) MxReadImpl.parse(MxRemt00100105 .class, xml, _classes)); + return ((MxRemt00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00100105 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200101.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200101.java index c0d1616ff..10838833d 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200101.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00200101 parse(String xml) { - return ((MxRemt00200101) MxReadImpl.parse(MxRemt00200101 .class, xml, _classes)); + return ((MxRemt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200102.java b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200102.java index a82136a1f..c26929c3b 100644 --- a/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200102.java +++ b/model-remt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxRemt00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxRemt00200102 parse(String xml) { - return ((MxRemt00200102) MxReadImpl.parse(MxRemt00200102 .class, xml, _classes)); + return ((MxRemt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxRemt00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxRemt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxRemt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader62.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader62.java index de826fd85..07784eca0 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader62.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader62.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader62 { @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") @@ -80,7 +83,7 @@ public GroupHeader62 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 GroupHeader62 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader79.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader79.java index a594d02fe..de440f35a 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader79.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader79.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 GroupHeader79 { @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") @@ -80,7 +83,7 @@ public GroupHeader79 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 GroupHeader79 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation6.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation6.java index cb46764b6..069fae5f3 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation6.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalPaymentInformation6 { protected AmountType3Choice amt; @XmlElement(name = "XchgRateInf") protected ExchangeRate1 xchgRateInf; - @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 = "Dbtr") @@ -168,7 +172,7 @@ public OriginalPaymentInformation6 setXchgRateInf(ExchangeRate1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -180,7 +184,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalPaymentInformation6 setReqdExctnDt(XMLGregorianCalendar value) { @@ -193,7 +197,7 @@ public OriginalPaymentInformation6 setReqdExctnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -205,7 +209,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalPaymentInformation6 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation7.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation7.java index d45e0e4dd..3998f5c35 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation7.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalPaymentInformation7 { protected ExchangeRate1 xchgRateInf; @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 = "Dbtr") @@ -192,7 +195,7 @@ public OriginalPaymentInformation7 setReqdExctnDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -204,7 +207,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalPaymentInformation7 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation8.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation8.java index 56c6a84d3..71258fb40 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation8.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation8.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalPaymentInformation8 { protected ExchangeRate1 xchgRateInf; @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 = "Dbtr") @@ -192,7 +195,7 @@ public OriginalPaymentInformation8 setReqdExctnDt(DateAndDateTime2Choice value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -204,7 +207,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalPaymentInformation8 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation9.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation9.java index 1452d3333..fa10ad270 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation9.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalPaymentInformation9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalPaymentInformation9 { protected ExchangeRate1 xchgRateInf; @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 = "Dbtr") @@ -192,7 +195,7 @@ public OriginalPaymentInformation9 setReqdExctnDt(DateAndDateTime2Choice value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdColltnDt() { @@ -204,7 +207,7 @@ public XMLGregorianCalendar getReqdColltnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OriginalPaymentInformation9 setReqdColltnDt(XMLGregorianCalendar value) { diff --git a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation4.java b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation4.java index 979b70246..9a15b05f6 100644 --- a/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation4.java +++ b/model-remt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReferredDocumentInformation4 { 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; @XmlElement(name = "LineDtls") @@ -95,7 +98,7 @@ public ReferredDocumentInformation4 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 ReferredDocumentInformation4 setRltdDt(XMLGregorianCalendar value) { diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100101.java index 8c8f653ee..abfcf10cf 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00100101 parse(String xml) { - return ((MxSecl00100101) MxReadImpl.parse(MxSecl00100101 .class, xml, _classes)); + return ((MxSecl00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100102.java index 9618d8a7d..55127f7d4 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00100102 parse(String xml) { - return ((MxSecl00100102) MxReadImpl.parse(MxSecl00100102 .class, xml, _classes)); + return ((MxSecl00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100103.java index aece35286..b322e26d4 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00100103 parse(String xml) { - return ((MxSecl00100103) MxReadImpl.parse(MxSecl00100103 .class, xml, _classes)); + return ((MxSecl00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200101.java index 3cee1f5fe..5b0ebc897 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00200101 parse(String xml) { - return ((MxSecl00200101) MxReadImpl.parse(MxSecl00200101 .class, xml, _classes)); + return ((MxSecl00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200102.java index a239bfe91..c24e095da 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00200102 parse(String xml) { - return ((MxSecl00200102) MxReadImpl.parse(MxSecl00200102 .class, xml, _classes)); + return ((MxSecl00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200103.java index cc75d9fd1..691582633 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00200103 parse(String xml) { - return ((MxSecl00200103) MxReadImpl.parse(MxSecl00200103 .class, xml, _classes)); + return ((MxSecl00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300101.java index 88a84bab2..233e0e1f8 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00300101 parse(String xml) { - return ((MxSecl00300101) MxReadImpl.parse(MxSecl00300101 .class, xml, _classes)); + return ((MxSecl00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300102.java index 73b5ea53b..0e6c0073a 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00300102 parse(String xml) { - return ((MxSecl00300102) MxReadImpl.parse(MxSecl00300102 .class, xml, _classes)); + return ((MxSecl00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300103.java index 4311c89c3..5c3775026 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00300103 parse(String xml) { - return ((MxSecl00300103) MxReadImpl.parse(MxSecl00300103 .class, xml, _classes)); + return ((MxSecl00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400101.java index d1ace8fa7..924d1fb1e 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00400101 parse(String xml) { - return ((MxSecl00400101) MxReadImpl.parse(MxSecl00400101 .class, xml, _classes)); + return ((MxSecl00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400102.java index 6a4bcb5b4..864015c0f 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00400102 parse(String xml) { - return ((MxSecl00400102) MxReadImpl.parse(MxSecl00400102 .class, xml, _classes)); + return ((MxSecl00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400103.java index 7e5d16928..f86bca282 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00400103 parse(String xml) { - return ((MxSecl00400103) MxReadImpl.parse(MxSecl00400103 .class, xml, _classes)); + return ((MxSecl00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500101.java index 9a9f2294e..843dc671e 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00500101 parse(String xml) { - return ((MxSecl00500101) MxReadImpl.parse(MxSecl00500101 .class, xml, _classes)); + return ((MxSecl00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500102.java index 5d6a86c02..84c5e43d7 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00500102 parse(String xml) { - return ((MxSecl00500102) MxReadImpl.parse(MxSecl00500102 .class, xml, _classes)); + return ((MxSecl00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600101.java index fdd8f5b49..c05f76e0a 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00600101 parse(String xml) { - return ((MxSecl00600101) MxReadImpl.parse(MxSecl00600101 .class, xml, _classes)); + return ((MxSecl00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600102.java index 2f66e3b9e..b7d5274b1 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00600102 parse(String xml) { - return ((MxSecl00600102) MxReadImpl.parse(MxSecl00600102 .class, xml, _classes)); + return ((MxSecl00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700101.java index 3c85bb3df..fcce00ab5 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00700101 parse(String xml) { - return ((MxSecl00700101) MxReadImpl.parse(MxSecl00700101 .class, xml, _classes)); + return ((MxSecl00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700102.java index 9ca9c3864..82d2a1ad2 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00700102 parse(String xml) { - return ((MxSecl00700102) MxReadImpl.parse(MxSecl00700102 .class, xml, _classes)); + return ((MxSecl00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700103.java index f295c666d..3cb28a726 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00700103 parse(String xml) { - return ((MxSecl00700103) MxReadImpl.parse(MxSecl00700103 .class, xml, _classes)); + return ((MxSecl00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800101.java index 6764f0b2d..0f97db5dd 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00800101 parse(String xml) { - return ((MxSecl00800101) MxReadImpl.parse(MxSecl00800101 .class, xml, _classes)); + return ((MxSecl00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800102.java index 03cde3bcc..27d44d6d1 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00800102 parse(String xml) { - return ((MxSecl00800102) MxReadImpl.parse(MxSecl00800102 .class, xml, _classes)); + return ((MxSecl00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800103.java index aaec6fd6f..ca4573866 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00800103 parse(String xml) { - return ((MxSecl00800103) MxReadImpl.parse(MxSecl00800103 .class, xml, _classes)); + return ((MxSecl00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900101.java index bf92d0c23..31d573e2c 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00900101 parse(String xml) { - return ((MxSecl00900101) MxReadImpl.parse(MxSecl00900101 .class, xml, _classes)); + return ((MxSecl00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900102.java index c05d6510b..d54765793 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00900102 parse(String xml) { - return ((MxSecl00900102) MxReadImpl.parse(MxSecl00900102 .class, xml, _classes)); + return ((MxSecl00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900103.java index b5834573b..e5ff430d3 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl00900103 parse(String xml) { - return ((MxSecl00900103) MxReadImpl.parse(MxSecl00900103 .class, xml, _classes)); + return ((MxSecl00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000101.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000101.java index 86c03937a..32c8e997b 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000101.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl01000101 parse(String xml) { - return ((MxSecl01000101) MxReadImpl.parse(MxSecl01000101 .class, xml, _classes)); + return ((MxSecl01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000102.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000102.java index 0a4df8bca..3ea90cabe 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000102.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl01000102 parse(String xml) { - return ((MxSecl01000102) MxReadImpl.parse(MxSecl01000102 .class, xml, _classes)); + return ((MxSecl01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000103.java b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000103.java index 27c06b7da..702d483e9 100644 --- a/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000103.java +++ b/model-secl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSecl01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSecl01000103 parse(String xml) { - return ((MxSecl01000103) MxReadImpl.parse(MxSecl01000103 .class, xml, _classes)); + return ((MxSecl01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSecl01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSecl01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSecl01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn2.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn2.java index f7573c393..4ad8f4683 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn2.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 BuyIn2 { protected String buyInNtfctnId; @XmlElement(name = "BuyInId", required = true) protected String buyInId; - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "Pric") @@ -99,7 +102,7 @@ public BuyIn2 setBuyInId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -111,7 +114,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BuyIn2 setDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn4.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn4.java index 9d7878ac5..7b5de5a81 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn4.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BuyIn4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 BuyIn4 { protected Boolean wrngInd; @XmlElement(name = "XpctdBuyInDt", required = true) protected DateFormat15Choice xpctdBuyInDt; - @XmlElement(name = "CxlLmtDt") + @XmlElement(name = "CxlLmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cxlLmtDt; - @XmlElement(name = "BuyInRvrsnDt") + @XmlElement(name = "BuyInRvrsnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar buyInRvrsnDt; @@ -94,7 +98,7 @@ public BuyIn4 setXpctdBuyInDt(DateFormat15Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCxlLmtDt() { @@ -106,7 +110,7 @@ public XMLGregorianCalendar getCxlLmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BuyIn4 setCxlLmtDt(XMLGregorianCalendar value) { @@ -119,7 +123,7 @@ public BuyIn4 setCxlLmtDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBuyInRvrsnDt() { @@ -131,7 +135,7 @@ public XMLGregorianCalendar getBuyInRvrsnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BuyIn4 setBuyInRvrsnDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCompensation1.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCompensation1.java index 951419465..09939f256 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCompensation1.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCompensation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CashCompensation1 { protected AmountAndDirection20 sttlmAmt; @XmlElement(name = "Fees") protected AmountAndDirection20 fees; - @XmlElement(name = "ValDt") + @XmlElement(name = "ValDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar valDt; @@ -90,7 +93,7 @@ public CashCompensation1 setFees(AmountAndDirection20 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getValDt() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getValDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CashCompensation1 setValDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat15Choice.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat15Choice.java index af81c2219..b730cf2ad 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat15Choice.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat15Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat15Choice { - @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 DateFormat15Choice { * * @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 DateFormat15Choice setDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition2.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition2.java index e6f820157..5e3d7a461 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition2.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 NetPosition2 { protected TradingCapacity5Code tradgCpcty; @XmlElement(name = "PlcOfTrad") protected MarketIdentification20 plcOfTrad; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt") @@ -408,7 +411,7 @@ public NetPosition2 setPlcOfTrad(MarketIdentification20 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -420,7 +423,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public NetPosition2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition3.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition3.java index d5d74443a..66fb18e28 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition3.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetPosition3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 NetPosition3 { protected TradingCapacity5Code tradgCpcty; @XmlElement(name = "PlcOfTrad") protected MarketIdentification20 plcOfTrad; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt") @@ -408,7 +411,7 @@ public NetPosition3 setPlcOfTrad(MarketIdentification20 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -420,7 +423,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public NetPosition3 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters3.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters3.java index dde5abfc9..b647b4fed 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters3.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReportParameters3 { protected DateAndDateTimeChoice rptDtAndTm; @XmlElement(name = "RptCcy", required = true) protected String rptCcy; - @XmlElement(name = "ClctnDtAndTm", required = true) + @XmlElement(name = "ClctnDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar clctnDtAndTm; @XmlElement(name = "Frqcy", required = true) @@ -125,7 +128,7 @@ public ReportParameters3 setRptCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDtAndTm() { @@ -137,7 +140,7 @@ public XMLGregorianCalendar getClctnDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReportParameters3 setClctnDtAndTm(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation1.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation1.java index 2fcbde03a..fb65ccb7b 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation1.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +53,14 @@ public class SettlementObligation1 { protected PartyIdentification35Choice clrSgmt; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "IntnddSttlmDt") + @XmlElement(name = "IntnddSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar intnddSttlmDt; @XmlElement(name = "FinInstrmId", required = true) protected SecurityIdentification14 finInstrmId; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "DealPric") @@ -227,7 +231,7 @@ public SettlementObligation1 setNonClrMmb(PartyIdentificationAndAccount31 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntnddSttlmDt() { @@ -239,7 +243,7 @@ public XMLGregorianCalendar getIntnddSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation1 setIntnddSttlmDt(XMLGregorianCalendar value) { @@ -277,7 +281,7 @@ public SettlementObligation1 setFinInstrmId(SecurityIdentification14 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -289,7 +293,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation2.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation2.java index 0f1338a4a..cfa54e708 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation2.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SettlementObligation2 { protected List addtlSttlmOblgtnDtls; @XmlElement(name = "PlcOfTrad", required = true) protected MarketIdentification20 plcOfTrad; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @@ -236,7 +239,7 @@ public SettlementObligation2 setPlcOfTrad(MarketIdentification20 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation3.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation3.java index e22b155ff..e3e9c62ee 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation3.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SettlementObligation3 { protected ObligationType1Choice oblgtnTp; @XmlElement(name = "Desc") protected String desc; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "Qty", required = true) @@ -54,7 +57,8 @@ public class SettlementObligation3 { protected String tradgCcy; @XmlElement(name = "SttlmAmt", required = true) protected AmountAndDirection20 sttlmAmt; - @XmlElement(name = "SttlmDt", required = true) + @XmlElement(name = "SttlmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -149,7 +153,7 @@ public SettlementObligation3 setDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -161,7 +165,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation3 setTradDt(XMLGregorianCalendar value) { @@ -274,7 +278,7 @@ public SettlementObligation3 setSttlmAmt(AmountAndDirection20 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -286,7 +290,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation3 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation5.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation5.java index 5d2e48737..8c7d0fcfa 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation5.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SettlementObligation5 { protected ObligationType1Choice oblgtnTp; @XmlElement(name = "Desc") protected String desc; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "Qty", required = true) @@ -53,7 +56,8 @@ public class SettlementObligation5 { protected String tradgCcy; @XmlElement(name = "SttlmAmt", required = true) protected AmountAndDirection27 sttlmAmt; - @XmlElement(name = "SttlmDt", required = true) + @XmlElement(name = "SttlmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -145,7 +149,7 @@ public SettlementObligation5 setDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -157,7 +161,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation5 setTradDt(XMLGregorianCalendar value) { @@ -270,7 +274,7 @@ public SettlementObligation5 setSttlmAmt(AmountAndDirection27 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -282,7 +286,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation5 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation6.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation6.java index 722c56877..dc9d3dad6 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation6.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +53,14 @@ public class SettlementObligation6 { protected PartyIdentification35Choice clrSgmt; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "IntnddSttlmDt") + @XmlElement(name = "IntnddSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar intnddSttlmDt; @XmlElement(name = "FinInstrmId", required = true) protected SecurityIdentification14 finInstrmId; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "DealPric") @@ -227,7 +231,7 @@ public SettlementObligation6 setNonClrMmb(PartyIdentificationAndAccount31 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntnddSttlmDt() { @@ -239,7 +243,7 @@ public XMLGregorianCalendar getIntnddSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation6 setIntnddSttlmDt(XMLGregorianCalendar value) { @@ -277,7 +281,7 @@ public SettlementObligation6 setFinInstrmId(SecurityIdentification14 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -289,7 +293,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation6 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation7.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation7.java index b2d4244ea..2630d7379 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation7.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementObligation7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +59,14 @@ public class SettlementObligation7 { protected PartyIdentification35Choice clrSgmt; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "IntnddSttlmDt") + @XmlElement(name = "IntnddSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar intnddSttlmDt; @XmlElement(name = "FinInstrmId", required = true) protected SecurityIdentification14 finInstrmId; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "DealPric") @@ -283,7 +287,7 @@ public SettlementObligation7 setNonClrMmb(PartyIdentificationAndAccount31 value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntnddSttlmDt() { @@ -295,7 +299,7 @@ public XMLGregorianCalendar getIntnddSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation7 setIntnddSttlmDt(XMLGregorianCalendar value) { @@ -333,7 +337,7 @@ public SettlementObligation7 setFinInstrmId(SecurityIdentification14 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -345,7 +349,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementObligation7 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDate3Choice.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDate3Choice.java index d59dfd396..b3c8785e9 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDate3Choice.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDate3Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeDate3Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "DtCd") @@ -38,7 +41,7 @@ public class TradeDate3Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -50,7 +53,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeDate3Choice setDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg1.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg1.java index f9a99d094..6af6cf770 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg1.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeLeg1 { - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt", required = true) @@ -75,7 +78,7 @@ public class TradeLeg1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -87,7 +90,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg10.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg10.java index 0f9ed70a8..586697934 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg10.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg10.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; @@ -59,10 +62,12 @@ public class TradeLeg10 { protected String ordrId; @XmlElement(name = "AllcnId") protected String allcnId; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "TxDtAndTm") + @XmlElement(name = "TxDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txDtAndTm; @XmlElement(name = "SttlmDt", required = true) @@ -236,7 +241,7 @@ public TradeLeg10 setAllcnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -248,7 +253,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg10 setTradDt(XMLGregorianCalendar value) { @@ -261,7 +266,7 @@ public TradeLeg10 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxDtAndTm() { @@ -273,7 +278,7 @@ public XMLGregorianCalendar getTxDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg10 setTxDtAndTm(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg2.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg2.java index 844f623cd..949d76c18 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg2.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeLeg2 { @XmlElement(name = "TradTp", required = true) @XmlSchemaType(name = "string") protected TradeType1Code tradTp; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt", required = true) @@ -236,7 +239,7 @@ public TradeLeg2 setTradTp(TradeType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg3.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg3.java index 18896a032..0386631c4 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg3.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; 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 TradeLeg3 { protected PartyIdentification35Choice tradgPty; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt", required = true) @@ -272,7 +275,7 @@ public TradeLeg3 setNonClrMmb(PartyIdentificationAndAccount31 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg3 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg4.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg4.java index 4bdf65b59..133f7d755 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg4.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeLeg4 { protected String tradExctnId; @XmlElement(name = "TradgPty", required = true) protected PartyIdentification35Choice tradgPty; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt", required = true) @@ -176,7 +179,7 @@ public TradeLeg4 setTradgPty(PartyIdentification35Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -188,7 +191,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg4 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg5.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg5.java index f519ce789..26cc222b2 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg5.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeLeg5 { @XmlElement(name = "Sts") @XmlSchemaType(name = "string") protected Status5Code sts; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt") @@ -196,7 +199,7 @@ public TradeLeg5 setSts(Status5Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -208,7 +211,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg5 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg6.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg6.java index e0c3b2025..8de717f1e 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg6.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +62,8 @@ public class TradeLeg6 { protected String tradExctnId; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt") @@ -257,7 +260,7 @@ public TradeLeg6 setNonClrMmb(PartyIdentificationAndAccount31 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -269,7 +272,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg6 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg7.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg7.java index 473de3ea4..e05ccf209 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg7.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeLeg7 { protected String tradId; @XmlElement(name = "TradExctnId", required = true) protected String tradExctnId; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "SttlmDt", required = true) @@ -161,7 +164,7 @@ public TradeLeg7 setTradExctnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -173,7 +176,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg7 setTradDt(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg8.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg8.java index 96a6ac047..6ae6bd257 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg8.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg8.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -65,10 +67,12 @@ public class TradeLeg8 { @XmlElement(name = "Sts") @XmlSchemaType(name = "string") protected Status5Code sts; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "TxDtTm") + @XmlElement(name = "TxDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txDtTm; @XmlElement(name = "SttlmDt") @@ -271,7 +275,7 @@ public TradeLeg8 setSts(Status5Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -283,7 +287,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg8 setTradDt(XMLGregorianCalendar value) { @@ -296,7 +300,7 @@ public TradeLeg8 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxDtTm() { @@ -308,7 +312,7 @@ public XMLGregorianCalendar getTxDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg8 setTxDtTm(XMLGregorianCalendar value) { diff --git a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg9.java b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg9.java index 97c2b59d7..94e34441c 100644 --- a/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg9.java +++ b/model-secl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeLeg9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +74,12 @@ public class TradeLeg9 { protected String allcnId; @XmlElement(name = "NonClrMmb") protected PartyIdentificationAndAccount31 nonClrMmb; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "TxDtAndTm") + @XmlElement(name = "TxDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txDtAndTm; @XmlElement(name = "SttlmDt") @@ -332,7 +336,7 @@ public TradeLeg9 setNonClrMmb(PartyIdentificationAndAccount31 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -344,7 +348,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg9 setTradDt(XMLGregorianCalendar value) { @@ -357,7 +361,7 @@ public TradeLeg9 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxDtAndTm() { @@ -369,7 +373,7 @@ public XMLGregorianCalendar getTxDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeLeg9 setTxDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100101.java index 924cbd970..ac14db077 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100101 parse(String xml) { - return ((MxSeev00100101) MxReadImpl.parse(MxSeev00100101 .class, xml, _classes)); + return ((MxSeev00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100102.java index 9297f6c10..1fce0a629 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100102 parse(String xml) { - return ((MxSeev00100102) MxReadImpl.parse(MxSeev00100102 .class, xml, _classes)); + return ((MxSeev00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100103.java index 68c1f785c..5b82a63e7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100103 parse(String xml) { - return ((MxSeev00100103) MxReadImpl.parse(MxSeev00100103 .class, xml, _classes)); + return ((MxSeev00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100104.java index c71a5a6f3..12c366382 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100104 parse(String xml) { - return ((MxSeev00100104) MxReadImpl.parse(MxSeev00100104 .class, xml, _classes)); + return ((MxSeev00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100105.java index b7d31eac9..914aef0df 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100105 parse(String xml) { - return ((MxSeev00100105) MxReadImpl.parse(MxSeev00100105 .class, xml, _classes)); + return ((MxSeev00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100106.java index 188b13347..3cd77aed8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100106 parse(String xml) { - return ((MxSeev00100106) MxReadImpl.parse(MxSeev00100106 .class, xml, _classes)); + return ((MxSeev00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100107.java index accf245f6..8dbe14263 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100107 parse(String xml) { - return ((MxSeev00100107) MxReadImpl.parse(MxSeev00100107 .class, xml, _classes)); + return ((MxSeev00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100108.java index e05ca8642..764625170 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00100108 parse(String xml) { - return ((MxSeev00100108) MxReadImpl.parse(MxSeev00100108 .class, xml, _classes)); + return ((MxSeev00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200101.java index 2cb65aba7..c466be53e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200101 parse(String xml) { - return ((MxSeev00200101) MxReadImpl.parse(MxSeev00200101 .class, xml, _classes)); + return ((MxSeev00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200102.java index 45c760311..ab679a992 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200102 parse(String xml) { - return ((MxSeev00200102) MxReadImpl.parse(MxSeev00200102 .class, xml, _classes)); + return ((MxSeev00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200103.java index 612c32331..ab79fcd4a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200103 parse(String xml) { - return ((MxSeev00200103) MxReadImpl.parse(MxSeev00200103 .class, xml, _classes)); + return ((MxSeev00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200104.java index ec9298a5a..556123fe1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200104 parse(String xml) { - return ((MxSeev00200104) MxReadImpl.parse(MxSeev00200104 .class, xml, _classes)); + return ((MxSeev00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200105.java index 582c615ea..dd31cd12d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200105 parse(String xml) { - return ((MxSeev00200105) MxReadImpl.parse(MxSeev00200105 .class, xml, _classes)); + return ((MxSeev00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200106.java index 793ba3fb8..737c61d8e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200106 parse(String xml) { - return ((MxSeev00200106) MxReadImpl.parse(MxSeev00200106 .class, xml, _classes)); + return ((MxSeev00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200107.java index da7ea86c9..c9dad46c3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00200107 parse(String xml) { - return ((MxSeev00200107) MxReadImpl.parse(MxSeev00200107 .class, xml, _classes)); + return ((MxSeev00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300101.java index 52ea98fcd..2a5930faf 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300101 parse(String xml) { - return ((MxSeev00300101) MxReadImpl.parse(MxSeev00300101 .class, xml, _classes)); + return ((MxSeev00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300102.java index 0204e1286..f870d0d42 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300102 parse(String xml) { - return ((MxSeev00300102) MxReadImpl.parse(MxSeev00300102 .class, xml, _classes)); + return ((MxSeev00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300103.java index e6124cf5d..9b50d411c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300103 parse(String xml) { - return ((MxSeev00300103) MxReadImpl.parse(MxSeev00300103 .class, xml, _classes)); + return ((MxSeev00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300104.java index e589a2c55..52faf04c3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300104 parse(String xml) { - return ((MxSeev00300104) MxReadImpl.parse(MxSeev00300104 .class, xml, _classes)); + return ((MxSeev00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300105.java index f36d8e674..28b9897e7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300105 parse(String xml) { - return ((MxSeev00300105) MxReadImpl.parse(MxSeev00300105 .class, xml, _classes)); + return ((MxSeev00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300106.java index e518e3c1e..25d0aee2e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300106 parse(String xml) { - return ((MxSeev00300106) MxReadImpl.parse(MxSeev00300106 .class, xml, _classes)); + return ((MxSeev00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300107.java index 8ac707389..a4be59ba5 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00300107 parse(String xml) { - return ((MxSeev00300107) MxReadImpl.parse(MxSeev00300107 .class, xml, _classes)); + return ((MxSeev00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400101.java index 54477694f..c9a422678 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400101 parse(String xml) { - return ((MxSeev00400101) MxReadImpl.parse(MxSeev00400101 .class, xml, _classes)); + return ((MxSeev00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400102.java index 9824935cf..f87062abc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400102 parse(String xml) { - return ((MxSeev00400102) MxReadImpl.parse(MxSeev00400102 .class, xml, _classes)); + return ((MxSeev00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400103.java index 2d5527bde..429b7e7e6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400103 parse(String xml) { - return ((MxSeev00400103) MxReadImpl.parse(MxSeev00400103 .class, xml, _classes)); + return ((MxSeev00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400104.java index 418af3a4b..91e6c09a4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400104 parse(String xml) { - return ((MxSeev00400104) MxReadImpl.parse(MxSeev00400104 .class, xml, _classes)); + return ((MxSeev00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400105.java index c007a5983..33d25c3ee 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400105 parse(String xml) { - return ((MxSeev00400105) MxReadImpl.parse(MxSeev00400105 .class, xml, _classes)); + return ((MxSeev00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400106.java index 535c41383..71f75d08e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400106 parse(String xml) { - return ((MxSeev00400106) MxReadImpl.parse(MxSeev00400106 .class, xml, _classes)); + return ((MxSeev00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400107.java index a448bba71..bd7a7cd80 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00400107 parse(String xml) { - return ((MxSeev00400107) MxReadImpl.parse(MxSeev00400107 .class, xml, _classes)); + return ((MxSeev00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500101.java index 7770b6bcc..ccd9bfaea 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500101 parse(String xml) { - return ((MxSeev00500101) MxReadImpl.parse(MxSeev00500101 .class, xml, _classes)); + return ((MxSeev00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500102.java index 30bfa3a8c..c95508389 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500102 parse(String xml) { - return ((MxSeev00500102) MxReadImpl.parse(MxSeev00500102 .class, xml, _classes)); + return ((MxSeev00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500103.java index 989474968..b6d9a6429 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500103 parse(String xml) { - return ((MxSeev00500103) MxReadImpl.parse(MxSeev00500103 .class, xml, _classes)); + return ((MxSeev00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500104.java index ab8ed1699..89db7fb28 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500104 parse(String xml) { - return ((MxSeev00500104) MxReadImpl.parse(MxSeev00500104 .class, xml, _classes)); + return ((MxSeev00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500105.java index 5404b30c6..fcacd3821 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500105 parse(String xml) { - return ((MxSeev00500105) MxReadImpl.parse(MxSeev00500105 .class, xml, _classes)); + return ((MxSeev00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500106.java index 53ec74a88..98d6fd037 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500106 parse(String xml) { - return ((MxSeev00500106) MxReadImpl.parse(MxSeev00500106 .class, xml, _classes)); + return ((MxSeev00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500107.java index 798c08f36..3bd14cf56 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00500107 parse(String xml) { - return ((MxSeev00500107) MxReadImpl.parse(MxSeev00500107 .class, xml, _classes)); + return ((MxSeev00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600101.java index 76682120c..bd19aa930 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600101 parse(String xml) { - return ((MxSeev00600101) MxReadImpl.parse(MxSeev00600101 .class, xml, _classes)); + return ((MxSeev00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600102.java index 452fde885..ff77d2a1e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600102 parse(String xml) { - return ((MxSeev00600102) MxReadImpl.parse(MxSeev00600102 .class, xml, _classes)); + return ((MxSeev00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600103.java index 8bb23bd9b..ebfc6426d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600103 parse(String xml) { - return ((MxSeev00600103) MxReadImpl.parse(MxSeev00600103 .class, xml, _classes)); + return ((MxSeev00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600104.java index 20061cf51..3445e2cdd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600104 parse(String xml) { - return ((MxSeev00600104) MxReadImpl.parse(MxSeev00600104 .class, xml, _classes)); + return ((MxSeev00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600105.java index 5408009ab..3c7999704 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600105 parse(String xml) { - return ((MxSeev00600105) MxReadImpl.parse(MxSeev00600105 .class, xml, _classes)); + return ((MxSeev00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600106.java index dcc7e2470..54a7d3b6e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600106 parse(String xml) { - return ((MxSeev00600106) MxReadImpl.parse(MxSeev00600106 .class, xml, _classes)); + return ((MxSeev00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600107.java index 40393a44b..31b176f0f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00600107 parse(String xml) { - return ((MxSeev00600107) MxReadImpl.parse(MxSeev00600107 .class, xml, _classes)); + return ((MxSeev00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700101.java index 11249c7d4..7315a484a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700101 parse(String xml) { - return ((MxSeev00700101) MxReadImpl.parse(MxSeev00700101 .class, xml, _classes)); + return ((MxSeev00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700102.java index ed17d81ca..a639e2ccc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700102 parse(String xml) { - return ((MxSeev00700102) MxReadImpl.parse(MxSeev00700102 .class, xml, _classes)); + return ((MxSeev00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700103.java index e84fec946..705bfe395 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700103 parse(String xml) { - return ((MxSeev00700103) MxReadImpl.parse(MxSeev00700103 .class, xml, _classes)); + return ((MxSeev00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700104.java index 0ff1117f5..397076d0e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700104 parse(String xml) { - return ((MxSeev00700104) MxReadImpl.parse(MxSeev00700104 .class, xml, _classes)); + return ((MxSeev00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700105.java index cdb1a45f0..e6f5b3ab7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700105 parse(String xml) { - return ((MxSeev00700105) MxReadImpl.parse(MxSeev00700105 .class, xml, _classes)); + return ((MxSeev00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700106.java index 79bbfd489..e272a6872 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700106 parse(String xml) { - return ((MxSeev00700106) MxReadImpl.parse(MxSeev00700106 .class, xml, _classes)); + return ((MxSeev00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700107.java index 9edefd9c0..48fbbc126 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00700107 parse(String xml) { - return ((MxSeev00700107) MxReadImpl.parse(MxSeev00700107 .class, xml, _classes)); + return ((MxSeev00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00700107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800101.java index b78c682ba..dc2e4e59d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800101 parse(String xml) { - return ((MxSeev00800101) MxReadImpl.parse(MxSeev00800101 .class, xml, _classes)); + return ((MxSeev00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800102.java index f967e5405..11c232ae6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800102 parse(String xml) { - return ((MxSeev00800102) MxReadImpl.parse(MxSeev00800102 .class, xml, _classes)); + return ((MxSeev00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800103.java index e8da08ef8..51a6f626b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800103 parse(String xml) { - return ((MxSeev00800103) MxReadImpl.parse(MxSeev00800103 .class, xml, _classes)); + return ((MxSeev00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800104.java index a326f4c2e..dd964f3f1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800104 parse(String xml) { - return ((MxSeev00800104) MxReadImpl.parse(MxSeev00800104 .class, xml, _classes)); + return ((MxSeev00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800105.java index c713429cb..76b4583df 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800105 parse(String xml) { - return ((MxSeev00800105) MxReadImpl.parse(MxSeev00800105 .class, xml, _classes)); + return ((MxSeev00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800106.java index 419ba0d21..431a9ae5b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800106 parse(String xml) { - return ((MxSeev00800106) MxReadImpl.parse(MxSeev00800106 .class, xml, _classes)); + return ((MxSeev00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800107.java index 0731777e0..289b24722 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00800107 parse(String xml) { - return ((MxSeev00800107) MxReadImpl.parse(MxSeev00800107 .class, xml, _classes)); + return ((MxSeev00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00900101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00900101.java index 9f1e4b621..c38aafa46 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00900101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev00900101 parse(String xml) { - return ((MxSeev00900101) MxReadImpl.parse(MxSeev00900101 .class, xml, _classes)); + return ((MxSeev00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01000101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01000101.java index 39375af1d..9979ec4ce 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01000101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01000101 parse(String xml) { - return ((MxSeev01000101) MxReadImpl.parse(MxSeev01000101 .class, xml, _classes)); + return ((MxSeev01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01100101.java index f3f517d54..83218aa3a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01100101 parse(String xml) { - return ((MxSeev01100101) MxReadImpl.parse(MxSeev01100101 .class, xml, _classes)); + return ((MxSeev01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01200101.java index ba4173460..bb565a6c9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01200101 parse(String xml) { - return ((MxSeev01200101) MxReadImpl.parse(MxSeev01200101 .class, xml, _classes)); + return ((MxSeev01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01300101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01300101.java index be5de6e34..7b4548df2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01300101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01300101 parse(String xml) { - return ((MxSeev01300101) MxReadImpl.parse(MxSeev01300101 .class, xml, _classes)); + return ((MxSeev01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01400101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01400101.java index 8d540d6b6..74d609d2a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01400101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01400101 parse(String xml) { - return ((MxSeev01400101) MxReadImpl.parse(MxSeev01400101 .class, xml, _classes)); + return ((MxSeev01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01500101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01500101.java index 1621fa3f6..cc02d265f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01500101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01500101 parse(String xml) { - return ((MxSeev01500101) MxReadImpl.parse(MxSeev01500101 .class, xml, _classes)); + return ((MxSeev01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01600101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01600101.java index d3c3ac1c1..333a6be58 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01600101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01600101 parse(String xml) { - return ((MxSeev01600101) MxReadImpl.parse(MxSeev01600101 .class, xml, _classes)); + return ((MxSeev01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01700101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01700101.java index f07c2f450..bd8111935 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01700101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01700101 parse(String xml) { - return ((MxSeev01700101) MxReadImpl.parse(MxSeev01700101 .class, xml, _classes)); + return ((MxSeev01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01800101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01800101.java index a22edcbec..c09916230 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01800101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01800101 parse(String xml) { - return ((MxSeev01800101) MxReadImpl.parse(MxSeev01800101 .class, xml, _classes)); + return ((MxSeev01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01900101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01900101.java index 7a11606e4..07af5928d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01900101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev01900101 parse(String xml) { - return ((MxSeev01900101) MxReadImpl.parse(MxSeev01900101 .class, xml, _classes)); + return ((MxSeev01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02000101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02000101.java index 3fadede93..3f29bbf59 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02000101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02000101 parse(String xml) { - return ((MxSeev02000101) MxReadImpl.parse(MxSeev02000101 .class, xml, _classes)); + return ((MxSeev02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02100101.java index 7bccd6a8d..c373b25b7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02100101 parse(String xml) { - return ((MxSeev02100101) MxReadImpl.parse(MxSeev02100101 .class, xml, _classes)); + return ((MxSeev02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02200101.java index 5ce7c2bd2..44a0fced4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02200101 parse(String xml) { - return ((MxSeev02200101) MxReadImpl.parse(MxSeev02200101 .class, xml, _classes)); + return ((MxSeev02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02300101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02300101.java index bd29a1818..ff2267b6b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02300101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02300101 parse(String xml) { - return ((MxSeev02300101) MxReadImpl.parse(MxSeev02300101 .class, xml, _classes)); + return ((MxSeev02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02400101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02400101.java index 402f7c6d1..a368c9e3b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02400101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02400101 parse(String xml) { - return ((MxSeev02400101) MxReadImpl.parse(MxSeev02400101 .class, xml, _classes)); + return ((MxSeev02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02500101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02500101.java index a99e1849c..9d815c44d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02500101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02500101 parse(String xml) { - return ((MxSeev02500101) MxReadImpl.parse(MxSeev02500101 .class, xml, _classes)); + return ((MxSeev02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02600101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02600101.java index 5653f8161..b353264cd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02600101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02600101 parse(String xml) { - return ((MxSeev02600101) MxReadImpl.parse(MxSeev02600101 .class, xml, _classes)); + return ((MxSeev02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02700101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02700101.java index f75b1d82a..f8b579792 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02700101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02700101 parse(String xml) { - return ((MxSeev02700101) MxReadImpl.parse(MxSeev02700101 .class, xml, _classes)); + return ((MxSeev02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02800101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02800101.java index 5dcc44b82..894d73b46 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02800101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02800101 parse(String xml) { - return ((MxSeev02800101) MxReadImpl.parse(MxSeev02800101 .class, xml, _classes)); + return ((MxSeev02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02900101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02900101.java index 10bda3833..9f8294662 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02900101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev02900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev02900101 parse(String xml) { - return ((MxSeev02900101) MxReadImpl.parse(MxSeev02900101 .class, xml, _classes)); + return ((MxSeev02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev02900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03000101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03000101.java index 99a0fce75..83b81c22e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03000101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03000101 parse(String xml) { - return ((MxSeev03000101) MxReadImpl.parse(MxSeev03000101 .class, xml, _classes)); + return ((MxSeev03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100101.java index e616b4662..0dd07c81c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100101 parse(String xml) { - return ((MxSeev03100101) MxReadImpl.parse(MxSeev03100101 .class, xml, _classes)); + return ((MxSeev03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100102.java index 3a9f1f503..ba0e5f294 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100102 parse(String xml) { - return ((MxSeev03100102) MxReadImpl.parse(MxSeev03100102 .class, xml, _classes)); + return ((MxSeev03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100103.java index 875b0f062..8cfe56824 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100103 parse(String xml) { - return ((MxSeev03100103) MxReadImpl.parse(MxSeev03100103 .class, xml, _classes)); + return ((MxSeev03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100104.java index 7b888a51d..b80b0a32d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100104 parse(String xml) { - return ((MxSeev03100104) MxReadImpl.parse(MxSeev03100104 .class, xml, _classes)); + return ((MxSeev03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100105.java index a95444d8d..03902ec54 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100105 parse(String xml) { - return ((MxSeev03100105) MxReadImpl.parse(MxSeev03100105 .class, xml, _classes)); + return ((MxSeev03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100106.java index 8a9b39948..e2ed9fc14 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100106 parse(String xml) { - return ((MxSeev03100106) MxReadImpl.parse(MxSeev03100106 .class, xml, _classes)); + return ((MxSeev03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100107.java index dfedc4ee6..41eac508b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100107 parse(String xml) { - return ((MxSeev03100107) MxReadImpl.parse(MxSeev03100107 .class, xml, _classes)); + return ((MxSeev03100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100108.java index 94d4c0f0f..b67cd5d88 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100108 parse(String xml) { - return ((MxSeev03100108) MxReadImpl.parse(MxSeev03100108 .class, xml, _classes)); + return ((MxSeev03100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100109.java index 19d32bf75..ea1ae1f99 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100109 parse(String xml) { - return ((MxSeev03100109) MxReadImpl.parse(MxSeev03100109 .class, xml, _classes)); + return ((MxSeev03100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100110.java index b894edcc1..37b346934 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100110 parse(String xml) { - return ((MxSeev03100110) MxReadImpl.parse(MxSeev03100110 .class, xml, _classes)); + return ((MxSeev03100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100111.java index fb7e96515..845c0ebaf 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100111 parse(String xml) { - return ((MxSeev03100111) MxReadImpl.parse(MxSeev03100111 .class, xml, _classes)); + return ((MxSeev03100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100201.java index 6e6b4f1ba..7b2652e00 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100201 parse(String xml) { - return ((MxSeev03100201) MxReadImpl.parse(MxSeev03100201 .class, xml, _classes)); + return ((MxSeev03100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100202.java index d6c6398a1..cb5184717 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100202 parse(String xml) { - return ((MxSeev03100202) MxReadImpl.parse(MxSeev03100202 .class, xml, _classes)); + return ((MxSeev03100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100203.java index 142298030..4f27d728a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100203 parse(String xml) { - return ((MxSeev03100203) MxReadImpl.parse(MxSeev03100203 .class, xml, _classes)); + return ((MxSeev03100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100204.java index ce1371ba3..cbfee4808 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100204 parse(String xml) { - return ((MxSeev03100204) MxReadImpl.parse(MxSeev03100204 .class, xml, _classes)); + return ((MxSeev03100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100205.java index 895a58e13..af43fb847 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100205 parse(String xml) { - return ((MxSeev03100205) MxReadImpl.parse(MxSeev03100205 .class, xml, _classes)); + return ((MxSeev03100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100206.java index be905068b..d6e47190c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100206 parse(String xml) { - return ((MxSeev03100206) MxReadImpl.parse(MxSeev03100206 .class, xml, _classes)); + return ((MxSeev03100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100207.java index 3dd8b909e..dbf2422c4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100207 parse(String xml) { - return ((MxSeev03100207) MxReadImpl.parse(MxSeev03100207 .class, xml, _classes)); + return ((MxSeev03100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100208.java index 0632ce596..6a4046c13 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100208 parse(String xml) { - return ((MxSeev03100208) MxReadImpl.parse(MxSeev03100208 .class, xml, _classes)); + return ((MxSeev03100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100209.java index 1b044dad1..8a35d7b99 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100209 parse(String xml) { - return ((MxSeev03100209) MxReadImpl.parse(MxSeev03100209 .class, xml, _classes)); + return ((MxSeev03100209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100210.java index 00e540b28..021d601d4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100210 parse(String xml) { - return ((MxSeev03100210) MxReadImpl.parse(MxSeev03100210 .class, xml, _classes)); + return ((MxSeev03100210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100211.java index b05b0f415..c7cc21c27 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03100211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03100211 parse(String xml) { - return ((MxSeev03100211) MxReadImpl.parse(MxSeev03100211 .class, xml, _classes)); + return ((MxSeev03100211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03100211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03100211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03100211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200101.java index 3bbb63882..54607151e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200101 parse(String xml) { - return ((MxSeev03200101) MxReadImpl.parse(MxSeev03200101 .class, xml, _classes)); + return ((MxSeev03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200102.java index 6e0945e67..a26563d72 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200102 parse(String xml) { - return ((MxSeev03200102) MxReadImpl.parse(MxSeev03200102 .class, xml, _classes)); + return ((MxSeev03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200103.java index 2007b852f..a2f926b40 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200103 parse(String xml) { - return ((MxSeev03200103) MxReadImpl.parse(MxSeev03200103 .class, xml, _classes)); + return ((MxSeev03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200104.java index 726888e10..68f6542fc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200104 parse(String xml) { - return ((MxSeev03200104) MxReadImpl.parse(MxSeev03200104 .class, xml, _classes)); + return ((MxSeev03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200105.java index 9fd5d8c6a..373639dcd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200105 parse(String xml) { - return ((MxSeev03200105) MxReadImpl.parse(MxSeev03200105 .class, xml, _classes)); + return ((MxSeev03200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200106.java index 95e1c510a..0a7a845ed 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200106 parse(String xml) { - return ((MxSeev03200106) MxReadImpl.parse(MxSeev03200106 .class, xml, _classes)); + return ((MxSeev03200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200107.java index 7aec0f547..71962eb67 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200107 parse(String xml) { - return ((MxSeev03200107) MxReadImpl.parse(MxSeev03200107 .class, xml, _classes)); + return ((MxSeev03200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200108.java index 002211fec..f6bcebad2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200108 parse(String xml) { - return ((MxSeev03200108) MxReadImpl.parse(MxSeev03200108 .class, xml, _classes)); + return ((MxSeev03200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200201.java index 59b3dfa61..339aea5b8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200201 parse(String xml) { - return ((MxSeev03200201) MxReadImpl.parse(MxSeev03200201 .class, xml, _classes)); + return ((MxSeev03200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200202.java index 1598e1d7e..c9c51a298 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200202 parse(String xml) { - return ((MxSeev03200202) MxReadImpl.parse(MxSeev03200202 .class, xml, _classes)); + return ((MxSeev03200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200203.java index e67a9ad48..336670e5f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200203 parse(String xml) { - return ((MxSeev03200203) MxReadImpl.parse(MxSeev03200203 .class, xml, _classes)); + return ((MxSeev03200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200204.java index fc9c4693f..d5d33dade 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200204 parse(String xml) { - return ((MxSeev03200204) MxReadImpl.parse(MxSeev03200204 .class, xml, _classes)); + return ((MxSeev03200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200205.java index 337b7d771..f8ddc6017 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200205 parse(String xml) { - return ((MxSeev03200205) MxReadImpl.parse(MxSeev03200205 .class, xml, _classes)); + return ((MxSeev03200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200206.java index e0f0d897e..66df747d6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200206 parse(String xml) { - return ((MxSeev03200206) MxReadImpl.parse(MxSeev03200206 .class, xml, _classes)); + return ((MxSeev03200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200207.java index fd46d82a4..24f2e6cb1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200207 parse(String xml) { - return ((MxSeev03200207) MxReadImpl.parse(MxSeev03200207 .class, xml, _classes)); + return ((MxSeev03200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200208.java index 48002ef09..afcbe1631 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03200208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03200208 parse(String xml) { - return ((MxSeev03200208) MxReadImpl.parse(MxSeev03200208 .class, xml, _classes)); + return ((MxSeev03200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03200208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300101.java index 1134b7f51..15f991ce8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300101 parse(String xml) { - return ((MxSeev03300101) MxReadImpl.parse(MxSeev03300101 .class, xml, _classes)); + return ((MxSeev03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300102.java index 77d65d2d9..5ada025aa 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300102 parse(String xml) { - return ((MxSeev03300102) MxReadImpl.parse(MxSeev03300102 .class, xml, _classes)); + return ((MxSeev03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300103.java index 1ee5889f1..cf558e483 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300103 parse(String xml) { - return ((MxSeev03300103) MxReadImpl.parse(MxSeev03300103 .class, xml, _classes)); + return ((MxSeev03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300104.java index 2c59bcf8f..5692f2875 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300104 parse(String xml) { - return ((MxSeev03300104) MxReadImpl.parse(MxSeev03300104 .class, xml, _classes)); + return ((MxSeev03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300105.java index 25a12e085..5f5b9955d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300105 parse(String xml) { - return ((MxSeev03300105) MxReadImpl.parse(MxSeev03300105 .class, xml, _classes)); + return ((MxSeev03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300106.java index 6361e7c39..6bbc31e7f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300106 parse(String xml) { - return ((MxSeev03300106) MxReadImpl.parse(MxSeev03300106 .class, xml, _classes)); + return ((MxSeev03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300107.java index 6028ced7f..75d07c0a8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300107 parse(String xml) { - return ((MxSeev03300107) MxReadImpl.parse(MxSeev03300107 .class, xml, _classes)); + return ((MxSeev03300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300108.java index 33e8f5073..52608cd6a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300108 parse(String xml) { - return ((MxSeev03300108) MxReadImpl.parse(MxSeev03300108 .class, xml, _classes)); + return ((MxSeev03300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300109.java index c50f6c333..7a5b82414 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300109 parse(String xml) { - return ((MxSeev03300109) MxReadImpl.parse(MxSeev03300109 .class, xml, _classes)); + return ((MxSeev03300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300110.java index b956eab58..2b761d50f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300110 parse(String xml) { - return ((MxSeev03300110) MxReadImpl.parse(MxSeev03300110 .class, xml, _classes)); + return ((MxSeev03300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300111.java index 85700c92b..f3a64efe2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300111 parse(String xml) { - return ((MxSeev03300111) MxReadImpl.parse(MxSeev03300111 .class, xml, _classes)); + return ((MxSeev03300111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300201.java index 45e796cac..19eda2159 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300201 parse(String xml) { - return ((MxSeev03300201) MxReadImpl.parse(MxSeev03300201 .class, xml, _classes)); + return ((MxSeev03300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300202.java index 740647c08..fa5065dd8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300202 parse(String xml) { - return ((MxSeev03300202) MxReadImpl.parse(MxSeev03300202 .class, xml, _classes)); + return ((MxSeev03300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300203.java index 4624e8f42..87e501bcd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300203 parse(String xml) { - return ((MxSeev03300203) MxReadImpl.parse(MxSeev03300203 .class, xml, _classes)); + return ((MxSeev03300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300204.java index 4f89bd16e..31305f092 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300204 parse(String xml) { - return ((MxSeev03300204) MxReadImpl.parse(MxSeev03300204 .class, xml, _classes)); + return ((MxSeev03300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300205.java index 789d0e014..7b33759cd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300205 parse(String xml) { - return ((MxSeev03300205) MxReadImpl.parse(MxSeev03300205 .class, xml, _classes)); + return ((MxSeev03300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300206.java index d79e7d0ef..538027641 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300206 parse(String xml) { - return ((MxSeev03300206) MxReadImpl.parse(MxSeev03300206 .class, xml, _classes)); + return ((MxSeev03300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300207.java index 05dc6946b..083c4af01 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300207 parse(String xml) { - return ((MxSeev03300207) MxReadImpl.parse(MxSeev03300207 .class, xml, _classes)); + return ((MxSeev03300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300208.java index d385e2901..b208dcfb1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300208 parse(String xml) { - return ((MxSeev03300208) MxReadImpl.parse(MxSeev03300208 .class, xml, _classes)); + return ((MxSeev03300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300209.java index ceb3097c4..9273e945d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300209 parse(String xml) { - return ((MxSeev03300209) MxReadImpl.parse(MxSeev03300209 .class, xml, _classes)); + return ((MxSeev03300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300210.java index f79b33818..91da43f79 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300210 parse(String xml) { - return ((MxSeev03300210) MxReadImpl.parse(MxSeev03300210 .class, xml, _classes)); + return ((MxSeev03300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300211.java index 0c0ee7446..af2e79cd7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03300211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03300211 parse(String xml) { - return ((MxSeev03300211) MxReadImpl.parse(MxSeev03300211 .class, xml, _classes)); + return ((MxSeev03300211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03300211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03300211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03300211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400101.java index b7fe572a7..92f4390e8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400101 parse(String xml) { - return ((MxSeev03400101) MxReadImpl.parse(MxSeev03400101 .class, xml, _classes)); + return ((MxSeev03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400102.java index c8caa9230..746adb1e2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400102 parse(String xml) { - return ((MxSeev03400102) MxReadImpl.parse(MxSeev03400102 .class, xml, _classes)); + return ((MxSeev03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400103.java index c126cca31..0eea1160a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400103 parse(String xml) { - return ((MxSeev03400103) MxReadImpl.parse(MxSeev03400103 .class, xml, _classes)); + return ((MxSeev03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400104.java index 76c1cb104..3b59f5f1a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400104 parse(String xml) { - return ((MxSeev03400104) MxReadImpl.parse(MxSeev03400104 .class, xml, _classes)); + return ((MxSeev03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400105.java index fd1f2f8d8..dae04a0c3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400105 parse(String xml) { - return ((MxSeev03400105) MxReadImpl.parse(MxSeev03400105 .class, xml, _classes)); + return ((MxSeev03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400106.java index 6d9683ea0..55b2cdb58 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400106 parse(String xml) { - return ((MxSeev03400106) MxReadImpl.parse(MxSeev03400106 .class, xml, _classes)); + return ((MxSeev03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400107.java index 5d1426152..18edf3bbd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400107 parse(String xml) { - return ((MxSeev03400107) MxReadImpl.parse(MxSeev03400107 .class, xml, _classes)); + return ((MxSeev03400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400108.java index 64b518597..0b212bf79 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400108 parse(String xml) { - return ((MxSeev03400108) MxReadImpl.parse(MxSeev03400108 .class, xml, _classes)); + return ((MxSeev03400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400109.java index cf2327472..f6623849e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400109 parse(String xml) { - return ((MxSeev03400109) MxReadImpl.parse(MxSeev03400109 .class, xml, _classes)); + return ((MxSeev03400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400110.java index 7fe34205e..8d008a627 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400110 parse(String xml) { - return ((MxSeev03400110) MxReadImpl.parse(MxSeev03400110 .class, xml, _classes)); + return ((MxSeev03400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400111.java index 6bb979e16..ae9386752 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400111 parse(String xml) { - return ((MxSeev03400111) MxReadImpl.parse(MxSeev03400111 .class, xml, _classes)); + return ((MxSeev03400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400112.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400112.java index fb2e8d96b..fe9efed2a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400112.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400112 parse(String xml) { - return ((MxSeev03400112) MxReadImpl.parse(MxSeev03400112 .class, xml, _classes)); + return ((MxSeev03400112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400112 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400201.java index f250867e5..a5300cdd0 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400201 parse(String xml) { - return ((MxSeev03400201) MxReadImpl.parse(MxSeev03400201 .class, xml, _classes)); + return ((MxSeev03400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400202.java index 8fbebc60d..2acf9a839 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400202 parse(String xml) { - return ((MxSeev03400202) MxReadImpl.parse(MxSeev03400202 .class, xml, _classes)); + return ((MxSeev03400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400203.java index 1dae17afb..f486b0cfd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400203 parse(String xml) { - return ((MxSeev03400203) MxReadImpl.parse(MxSeev03400203 .class, xml, _classes)); + return ((MxSeev03400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400204.java index 58c02e6f1..d5da640d1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400204 parse(String xml) { - return ((MxSeev03400204) MxReadImpl.parse(MxSeev03400204 .class, xml, _classes)); + return ((MxSeev03400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400205.java index 0c9174e6c..eac3ad388 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400205 parse(String xml) { - return ((MxSeev03400205) MxReadImpl.parse(MxSeev03400205 .class, xml, _classes)); + return ((MxSeev03400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400206.java index b13f7e7dc..9b953ca72 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400206 parse(String xml) { - return ((MxSeev03400206) MxReadImpl.parse(MxSeev03400206 .class, xml, _classes)); + return ((MxSeev03400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400207.java index e044aa4d9..a93272a81 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400207 parse(String xml) { - return ((MxSeev03400207) MxReadImpl.parse(MxSeev03400207 .class, xml, _classes)); + return ((MxSeev03400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400208.java index edc564e24..47c3b710b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400208 parse(String xml) { - return ((MxSeev03400208) MxReadImpl.parse(MxSeev03400208 .class, xml, _classes)); + return ((MxSeev03400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400209.java index 864b56e2a..e0b5d4eb3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400209 parse(String xml) { - return ((MxSeev03400209) MxReadImpl.parse(MxSeev03400209 .class, xml, _classes)); + return ((MxSeev03400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400210.java index 8139069af..1c01f17bc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400210 parse(String xml) { - return ((MxSeev03400210) MxReadImpl.parse(MxSeev03400210 .class, xml, _classes)); + return ((MxSeev03400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400211.java index e5fbcc676..26a0d7ed2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400211 parse(String xml) { - return ((MxSeev03400211) MxReadImpl.parse(MxSeev03400211 .class, xml, _classes)); + return ((MxSeev03400211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400212.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400212.java index 78ebe8678..59983b6d2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400212.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03400212.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03400212 parse(String xml) { - return ((MxSeev03400212) MxReadImpl.parse(MxSeev03400212 .class, xml, _classes)); + return ((MxSeev03400212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03400212 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03400212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03400212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500101.java index 7e3ba9c9d..b069344cd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500101 parse(String xml) { - return ((MxSeev03500101) MxReadImpl.parse(MxSeev03500101 .class, xml, _classes)); + return ((MxSeev03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500102.java index 7c7fa7c00..498dc6c9e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500102 parse(String xml) { - return ((MxSeev03500102) MxReadImpl.parse(MxSeev03500102 .class, xml, _classes)); + return ((MxSeev03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500103.java index b7a28575f..f18765063 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500103 parse(String xml) { - return ((MxSeev03500103) MxReadImpl.parse(MxSeev03500103 .class, xml, _classes)); + return ((MxSeev03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500104.java index 09a0a4b69..801b4fac8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500104 parse(String xml) { - return ((MxSeev03500104) MxReadImpl.parse(MxSeev03500104 .class, xml, _classes)); + return ((MxSeev03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500105.java index 9175840c7..cae4358a8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500105 parse(String xml) { - return ((MxSeev03500105) MxReadImpl.parse(MxSeev03500105 .class, xml, _classes)); + return ((MxSeev03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500106.java index 288870dfe..676f0d9a7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500106 parse(String xml) { - return ((MxSeev03500106) MxReadImpl.parse(MxSeev03500106 .class, xml, _classes)); + return ((MxSeev03500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500107.java index d6edcb5b3..6f6e2d861 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500107 parse(String xml) { - return ((MxSeev03500107) MxReadImpl.parse(MxSeev03500107 .class, xml, _classes)); + return ((MxSeev03500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500108.java index 0b0409b0c..056e8a543 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500108 parse(String xml) { - return ((MxSeev03500108) MxReadImpl.parse(MxSeev03500108 .class, xml, _classes)); + return ((MxSeev03500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500109.java index a86608317..82e7f12ca 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500109 parse(String xml) { - return ((MxSeev03500109) MxReadImpl.parse(MxSeev03500109 .class, xml, _classes)); + return ((MxSeev03500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500110.java index 63bf4d031..30a85a081 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500110 parse(String xml) { - return ((MxSeev03500110) MxReadImpl.parse(MxSeev03500110 .class, xml, _classes)); + return ((MxSeev03500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500111.java index 9ed4285db..2828b1cac 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500111 parse(String xml) { - return ((MxSeev03500111) MxReadImpl.parse(MxSeev03500111 .class, xml, _classes)); + return ((MxSeev03500111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500112.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500112.java index 7c8a2e841..fdb6f6ed9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500112.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500112 parse(String xml) { - return ((MxSeev03500112) MxReadImpl.parse(MxSeev03500112 .class, xml, _classes)); + return ((MxSeev03500112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500112 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500201.java index af24e17c5..a43fd928e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500201 parse(String xml) { - return ((MxSeev03500201) MxReadImpl.parse(MxSeev03500201 .class, xml, _classes)); + return ((MxSeev03500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500202.java index d6707c478..ab17f80ef 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500202 parse(String xml) { - return ((MxSeev03500202) MxReadImpl.parse(MxSeev03500202 .class, xml, _classes)); + return ((MxSeev03500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500203.java index deed70709..e439246be 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500203 parse(String xml) { - return ((MxSeev03500203) MxReadImpl.parse(MxSeev03500203 .class, xml, _classes)); + return ((MxSeev03500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500204.java index bb19356e6..f34da8b83 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500204 parse(String xml) { - return ((MxSeev03500204) MxReadImpl.parse(MxSeev03500204 .class, xml, _classes)); + return ((MxSeev03500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500205.java index f8f9e5154..068ebad1a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500205 parse(String xml) { - return ((MxSeev03500205) MxReadImpl.parse(MxSeev03500205 .class, xml, _classes)); + return ((MxSeev03500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500206.java index d49eec4c5..585f0a43e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500206 parse(String xml) { - return ((MxSeev03500206) MxReadImpl.parse(MxSeev03500206 .class, xml, _classes)); + return ((MxSeev03500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500207.java index bb3605f64..720bec720 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500207 parse(String xml) { - return ((MxSeev03500207) MxReadImpl.parse(MxSeev03500207 .class, xml, _classes)); + return ((MxSeev03500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500208.java index e8772d0f2..f7afba24c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500208 parse(String xml) { - return ((MxSeev03500208) MxReadImpl.parse(MxSeev03500208 .class, xml, _classes)); + return ((MxSeev03500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500209.java index b1d6fff7d..47f68b29e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500209 parse(String xml) { - return ((MxSeev03500209) MxReadImpl.parse(MxSeev03500209 .class, xml, _classes)); + return ((MxSeev03500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500210.java index ae3996b39..2a162babb 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500210 parse(String xml) { - return ((MxSeev03500210) MxReadImpl.parse(MxSeev03500210 .class, xml, _classes)); + return ((MxSeev03500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500211.java index 4da641485..485796190 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500211 parse(String xml) { - return ((MxSeev03500211) MxReadImpl.parse(MxSeev03500211 .class, xml, _classes)); + return ((MxSeev03500211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500212.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500212.java index e88289b37..e362ba852 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500212.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03500212.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03500212 parse(String xml) { - return ((MxSeev03500212) MxReadImpl.parse(MxSeev03500212 .class, xml, _classes)); + return ((MxSeev03500212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03500212 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03500212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03500212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600101.java index 3ae044b7b..a0eb8f592 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600101 parse(String xml) { - return ((MxSeev03600101) MxReadImpl.parse(MxSeev03600101 .class, xml, _classes)); + return ((MxSeev03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600102.java index bff2ae4e8..6f6a8063c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600102 parse(String xml) { - return ((MxSeev03600102) MxReadImpl.parse(MxSeev03600102 .class, xml, _classes)); + return ((MxSeev03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600103.java index 01a87de9f..1dfc1f161 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600103 parse(String xml) { - return ((MxSeev03600103) MxReadImpl.parse(MxSeev03600103 .class, xml, _classes)); + return ((MxSeev03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600104.java index 53b3fc1c7..a5d087619 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600104 parse(String xml) { - return ((MxSeev03600104) MxReadImpl.parse(MxSeev03600104 .class, xml, _classes)); + return ((MxSeev03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600105.java index 1b3687972..cbe8ed258 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600105 parse(String xml) { - return ((MxSeev03600105) MxReadImpl.parse(MxSeev03600105 .class, xml, _classes)); + return ((MxSeev03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600106.java index f49966dee..507ee4752 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600106 parse(String xml) { - return ((MxSeev03600106) MxReadImpl.parse(MxSeev03600106 .class, xml, _classes)); + return ((MxSeev03600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600107.java index 2d031b9ad..53451c6e1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600107 parse(String xml) { - return ((MxSeev03600107) MxReadImpl.parse(MxSeev03600107 .class, xml, _classes)); + return ((MxSeev03600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600108.java index e74f95b0e..012361dd8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600108 parse(String xml) { - return ((MxSeev03600108) MxReadImpl.parse(MxSeev03600108 .class, xml, _classes)); + return ((MxSeev03600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600109.java index 4a7672a29..d29961a0e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600109 parse(String xml) { - return ((MxSeev03600109) MxReadImpl.parse(MxSeev03600109 .class, xml, _classes)); + return ((MxSeev03600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600110.java index 9a9b20800..56aba26e9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600110 parse(String xml) { - return ((MxSeev03600110) MxReadImpl.parse(MxSeev03600110 .class, xml, _classes)); + return ((MxSeev03600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600111.java index 750925584..546291b2a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600111 parse(String xml) { - return ((MxSeev03600111) MxReadImpl.parse(MxSeev03600111 .class, xml, _classes)); + return ((MxSeev03600111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600112.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600112.java index 5e1877acf..c3ab633da 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600112.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600112 parse(String xml) { - return ((MxSeev03600112) MxReadImpl.parse(MxSeev03600112 .class, xml, _classes)); + return ((MxSeev03600112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600112 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600201.java index 820e34578..dadce2272 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600201 parse(String xml) { - return ((MxSeev03600201) MxReadImpl.parse(MxSeev03600201 .class, xml, _classes)); + return ((MxSeev03600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600202.java index 1f6fd583f..94658b9de 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600202 parse(String xml) { - return ((MxSeev03600202) MxReadImpl.parse(MxSeev03600202 .class, xml, _classes)); + return ((MxSeev03600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600203.java index e5cb01894..490921e19 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600203 parse(String xml) { - return ((MxSeev03600203) MxReadImpl.parse(MxSeev03600203 .class, xml, _classes)); + return ((MxSeev03600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600204.java index 397b007ed..ce30522ba 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600204 parse(String xml) { - return ((MxSeev03600204) MxReadImpl.parse(MxSeev03600204 .class, xml, _classes)); + return ((MxSeev03600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600205.java index 5570c761a..b5195ec09 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600205 parse(String xml) { - return ((MxSeev03600205) MxReadImpl.parse(MxSeev03600205 .class, xml, _classes)); + return ((MxSeev03600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600206.java index 2ef547bbb..bf4b495e3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600206 parse(String xml) { - return ((MxSeev03600206) MxReadImpl.parse(MxSeev03600206 .class, xml, _classes)); + return ((MxSeev03600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600207.java index c8f12a006..ae075064e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600207 parse(String xml) { - return ((MxSeev03600207) MxReadImpl.parse(MxSeev03600207 .class, xml, _classes)); + return ((MxSeev03600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600208.java index 7f1eae816..c5b516705 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600208 parse(String xml) { - return ((MxSeev03600208) MxReadImpl.parse(MxSeev03600208 .class, xml, _classes)); + return ((MxSeev03600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600209.java index fd2e2a50a..262227c40 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600209 parse(String xml) { - return ((MxSeev03600209) MxReadImpl.parse(MxSeev03600209 .class, xml, _classes)); + return ((MxSeev03600209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600210.java index 8aabf7edf..9c42fe11e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600210 parse(String xml) { - return ((MxSeev03600210) MxReadImpl.parse(MxSeev03600210 .class, xml, _classes)); + return ((MxSeev03600210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600211.java index ad91fe378..593e35753 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600211 parse(String xml) { - return ((MxSeev03600211) MxReadImpl.parse(MxSeev03600211 .class, xml, _classes)); + return ((MxSeev03600211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600212.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600212.java index 23a024d95..7a39a1df9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600212.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03600212.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03600212 parse(String xml) { - return ((MxSeev03600212) MxReadImpl.parse(MxSeev03600212 .class, xml, _classes)); + return ((MxSeev03600212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03600212 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03600212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03600212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700101.java index 08e3e3305..5f939275e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700101 parse(String xml) { - return ((MxSeev03700101) MxReadImpl.parse(MxSeev03700101 .class, xml, _classes)); + return ((MxSeev03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700102.java index 0c724a74b..af6b49ab1 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700102 parse(String xml) { - return ((MxSeev03700102) MxReadImpl.parse(MxSeev03700102 .class, xml, _classes)); + return ((MxSeev03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700103.java index 0d389e68a..9c8bf21b7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700103 parse(String xml) { - return ((MxSeev03700103) MxReadImpl.parse(MxSeev03700103 .class, xml, _classes)); + return ((MxSeev03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700104.java index e9ff14657..bb28a563d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700104 parse(String xml) { - return ((MxSeev03700104) MxReadImpl.parse(MxSeev03700104 .class, xml, _classes)); + return ((MxSeev03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700105.java index 4db3bb5fc..f7cfd64b8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700105 parse(String xml) { - return ((MxSeev03700105) MxReadImpl.parse(MxSeev03700105 .class, xml, _classes)); + return ((MxSeev03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700106.java index b6c769692..41f10eb4e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700106 parse(String xml) { - return ((MxSeev03700106) MxReadImpl.parse(MxSeev03700106 .class, xml, _classes)); + return ((MxSeev03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700107.java index 951d94b91..71d1b2bff 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700107 parse(String xml) { - return ((MxSeev03700107) MxReadImpl.parse(MxSeev03700107 .class, xml, _classes)); + return ((MxSeev03700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700108.java index 26082e700..126c2951c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700108 parse(String xml) { - return ((MxSeev03700108) MxReadImpl.parse(MxSeev03700108 .class, xml, _classes)); + return ((MxSeev03700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700109.java index bbbcc4ebf..944a6a429 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700109 parse(String xml) { - return ((MxSeev03700109) MxReadImpl.parse(MxSeev03700109 .class, xml, _classes)); + return ((MxSeev03700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700110.java index d9c14cbc9..8f1f898cd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700110 parse(String xml) { - return ((MxSeev03700110) MxReadImpl.parse(MxSeev03700110 .class, xml, _classes)); + return ((MxSeev03700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700111.java index 6d7a8e0e3..e48f5e96d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700111 parse(String xml) { - return ((MxSeev03700111) MxReadImpl.parse(MxSeev03700111 .class, xml, _classes)); + return ((MxSeev03700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700112.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700112.java index ecde89e0b..cdb0ed205 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700112.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700112 parse(String xml) { - return ((MxSeev03700112) MxReadImpl.parse(MxSeev03700112 .class, xml, _classes)); + return ((MxSeev03700112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700112 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700201.java index 961b64005..64f16fd00 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700201 parse(String xml) { - return ((MxSeev03700201) MxReadImpl.parse(MxSeev03700201 .class, xml, _classes)); + return ((MxSeev03700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700202.java index 9cc0e7eb2..4e5996daf 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700202 parse(String xml) { - return ((MxSeev03700202) MxReadImpl.parse(MxSeev03700202 .class, xml, _classes)); + return ((MxSeev03700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700203.java index 8589e14d6..0aaa33fbb 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700203 parse(String xml) { - return ((MxSeev03700203) MxReadImpl.parse(MxSeev03700203 .class, xml, _classes)); + return ((MxSeev03700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700204.java index d1a9373a4..dbd087125 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700204 parse(String xml) { - return ((MxSeev03700204) MxReadImpl.parse(MxSeev03700204 .class, xml, _classes)); + return ((MxSeev03700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700205.java index d50e239a4..cf62343fc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700205 parse(String xml) { - return ((MxSeev03700205) MxReadImpl.parse(MxSeev03700205 .class, xml, _classes)); + return ((MxSeev03700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700206.java index 39cb64207..dde448982 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700206 parse(String xml) { - return ((MxSeev03700206) MxReadImpl.parse(MxSeev03700206 .class, xml, _classes)); + return ((MxSeev03700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700207.java index 6cd0e55df..b53e0cb0f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700207 parse(String xml) { - return ((MxSeev03700207) MxReadImpl.parse(MxSeev03700207 .class, xml, _classes)); + return ((MxSeev03700207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700208.java index a894c2ffb..6fd42f4f8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700208 parse(String xml) { - return ((MxSeev03700208) MxReadImpl.parse(MxSeev03700208 .class, xml, _classes)); + return ((MxSeev03700208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700209.java index 962e82773..4fee34512 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700209 parse(String xml) { - return ((MxSeev03700209) MxReadImpl.parse(MxSeev03700209 .class, xml, _classes)); + return ((MxSeev03700209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700210.java index 36f7610fd..f48bd482b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700210 parse(String xml) { - return ((MxSeev03700210) MxReadImpl.parse(MxSeev03700210 .class, xml, _classes)); + return ((MxSeev03700210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700211.java index af5249060..af100d1c0 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700211 parse(String xml) { - return ((MxSeev03700211) MxReadImpl.parse(MxSeev03700211 .class, xml, _classes)); + return ((MxSeev03700211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700212.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700212.java index d56d2bc4c..82c317795 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700212.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03700212.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03700212 parse(String xml) { - return ((MxSeev03700212) MxReadImpl.parse(MxSeev03700212 .class, xml, _classes)); + return ((MxSeev03700212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03700212 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03700212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03700212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800101.java index 1eb77965d..37cd84e60 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800101 parse(String xml) { - return ((MxSeev03800101) MxReadImpl.parse(MxSeev03800101 .class, xml, _classes)); + return ((MxSeev03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800102.java index f16ee2c20..ad5e4580b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800102 parse(String xml) { - return ((MxSeev03800102) MxReadImpl.parse(MxSeev03800102 .class, xml, _classes)); + return ((MxSeev03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800103.java index e0cea23ee..51ed6d246 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800103 parse(String xml) { - return ((MxSeev03800103) MxReadImpl.parse(MxSeev03800103 .class, xml, _classes)); + return ((MxSeev03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800104.java index fad450497..bb19d3b21 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800104 parse(String xml) { - return ((MxSeev03800104) MxReadImpl.parse(MxSeev03800104 .class, xml, _classes)); + return ((MxSeev03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800105.java index f80bf38ea..0b97dda40 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800105 parse(String xml) { - return ((MxSeev03800105) MxReadImpl.parse(MxSeev03800105 .class, xml, _classes)); + return ((MxSeev03800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800106.java index 537ee6315..4151a82f9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800106 parse(String xml) { - return ((MxSeev03800106) MxReadImpl.parse(MxSeev03800106 .class, xml, _classes)); + return ((MxSeev03800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800201.java index 37e535771..0114432b7 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800201 parse(String xml) { - return ((MxSeev03800201) MxReadImpl.parse(MxSeev03800201 .class, xml, _classes)); + return ((MxSeev03800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800202.java index 60b999114..eb46f6f43 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800202 parse(String xml) { - return ((MxSeev03800202) MxReadImpl.parse(MxSeev03800202 .class, xml, _classes)); + return ((MxSeev03800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800203.java index c9f145d84..7eb9d3827 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800203 parse(String xml) { - return ((MxSeev03800203) MxReadImpl.parse(MxSeev03800203 .class, xml, _classes)); + return ((MxSeev03800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800204.java index 95e6c91e3..26785e0d9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800204 parse(String xml) { - return ((MxSeev03800204) MxReadImpl.parse(MxSeev03800204 .class, xml, _classes)); + return ((MxSeev03800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800205.java index d9d0f62e7..8c4c75409 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800205 parse(String xml) { - return ((MxSeev03800205) MxReadImpl.parse(MxSeev03800205 .class, xml, _classes)); + return ((MxSeev03800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800206.java index 2e1ca88c9..2a8234c63 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03800206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03800206 parse(String xml) { - return ((MxSeev03800206) MxReadImpl.parse(MxSeev03800206 .class, xml, _classes)); + return ((MxSeev03800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03800206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900101.java index 303561777..d24f74737 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900101 parse(String xml) { - return ((MxSeev03900101) MxReadImpl.parse(MxSeev03900101 .class, xml, _classes)); + return ((MxSeev03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900102.java index 201cb31f5..4fbb9d26d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900102 parse(String xml) { - return ((MxSeev03900102) MxReadImpl.parse(MxSeev03900102 .class, xml, _classes)); + return ((MxSeev03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900103.java index 89a12cbf6..990679b50 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900103 parse(String xml) { - return ((MxSeev03900103) MxReadImpl.parse(MxSeev03900103 .class, xml, _classes)); + return ((MxSeev03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900104.java index 1f3e42e37..b069553b0 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900104 parse(String xml) { - return ((MxSeev03900104) MxReadImpl.parse(MxSeev03900104 .class, xml, _classes)); + return ((MxSeev03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900105.java index b78af462b..e003cb6a4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900105 parse(String xml) { - return ((MxSeev03900105) MxReadImpl.parse(MxSeev03900105 .class, xml, _classes)); + return ((MxSeev03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900106.java index 98dbea7fc..df7ea22b3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900106 parse(String xml) { - return ((MxSeev03900106) MxReadImpl.parse(MxSeev03900106 .class, xml, _classes)); + return ((MxSeev03900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900107.java index 5fd1bbce4..571a6745e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900107 parse(String xml) { - return ((MxSeev03900107) MxReadImpl.parse(MxSeev03900107 .class, xml, _classes)); + return ((MxSeev03900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900108.java index 37e37117a..df2a47129 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900108 parse(String xml) { - return ((MxSeev03900108) MxReadImpl.parse(MxSeev03900108 .class, xml, _classes)); + return ((MxSeev03900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900109.java index 2a6ecc2c3..3ed62af74 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900109 parse(String xml) { - return ((MxSeev03900109) MxReadImpl.parse(MxSeev03900109 .class, xml, _classes)); + return ((MxSeev03900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900110.java index 9dd4a0f6f..4a94dbca8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900110 parse(String xml) { - return ((MxSeev03900110) MxReadImpl.parse(MxSeev03900110 .class, xml, _classes)); + return ((MxSeev03900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900201.java index 9a5818df0..9d9a128cd 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900201 parse(String xml) { - return ((MxSeev03900201) MxReadImpl.parse(MxSeev03900201 .class, xml, _classes)); + return ((MxSeev03900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900202.java index 25fbd25fc..34994c2e4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900202 parse(String xml) { - return ((MxSeev03900202) MxReadImpl.parse(MxSeev03900202 .class, xml, _classes)); + return ((MxSeev03900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900203.java index faa4af618..bd7a90077 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900203 parse(String xml) { - return ((MxSeev03900203) MxReadImpl.parse(MxSeev03900203 .class, xml, _classes)); + return ((MxSeev03900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900204.java index 89f4dd40d..b4b509dec 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900204 parse(String xml) { - return ((MxSeev03900204) MxReadImpl.parse(MxSeev03900204 .class, xml, _classes)); + return ((MxSeev03900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900205.java index 7583f117c..0b387b328 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900205 parse(String xml) { - return ((MxSeev03900205) MxReadImpl.parse(MxSeev03900205 .class, xml, _classes)); + return ((MxSeev03900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900206.java index 185e43da3..6b8a0b526 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900206 parse(String xml) { - return ((MxSeev03900206) MxReadImpl.parse(MxSeev03900206 .class, xml, _classes)); + return ((MxSeev03900206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900207.java index c50827be3..026c1e295 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900207 parse(String xml) { - return ((MxSeev03900207) MxReadImpl.parse(MxSeev03900207 .class, xml, _classes)); + return ((MxSeev03900207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900208.java index f676699b8..fe56753ff 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900208 parse(String xml) { - return ((MxSeev03900208) MxReadImpl.parse(MxSeev03900208 .class, xml, _classes)); + return ((MxSeev03900208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900209.java index e5968acff..689c005cf 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900209 parse(String xml) { - return ((MxSeev03900209) MxReadImpl.parse(MxSeev03900209 .class, xml, _classes)); + return ((MxSeev03900209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900210.java index b8d252d83..31841c800 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev03900210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev03900210 parse(String xml) { - return ((MxSeev03900210) MxReadImpl.parse(MxSeev03900210 .class, xml, _classes)); + return ((MxSeev03900210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev03900210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev03900210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev03900210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000101.java index 27cb9a0be..864fd0e8f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000101 parse(String xml) { - return ((MxSeev04000101) MxReadImpl.parse(MxSeev04000101 .class, xml, _classes)); + return ((MxSeev04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000102.java index eb3d0ef5f..87ed8944d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000102 parse(String xml) { - return ((MxSeev04000102) MxReadImpl.parse(MxSeev04000102 .class, xml, _classes)); + return ((MxSeev04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000103.java index 5abdda2be..0ffb843b0 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000103 parse(String xml) { - return ((MxSeev04000103) MxReadImpl.parse(MxSeev04000103 .class, xml, _classes)); + return ((MxSeev04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000104.java index 146ecf89a..3ec168393 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000104 parse(String xml) { - return ((MxSeev04000104) MxReadImpl.parse(MxSeev04000104 .class, xml, _classes)); + return ((MxSeev04000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000105.java index 451479224..03f7fb07e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000105 parse(String xml) { - return ((MxSeev04000105) MxReadImpl.parse(MxSeev04000105 .class, xml, _classes)); + return ((MxSeev04000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000106.java index b9c7da069..deeb986ac 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000106 parse(String xml) { - return ((MxSeev04000106) MxReadImpl.parse(MxSeev04000106 .class, xml, _classes)); + return ((MxSeev04000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000107.java index 8f2148d3e..4c9aa382d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000107 parse(String xml) { - return ((MxSeev04000107) MxReadImpl.parse(MxSeev04000107 .class, xml, _classes)); + return ((MxSeev04000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000108.java index ed25eaa02..00bcbb4ba 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000108 parse(String xml) { - return ((MxSeev04000108) MxReadImpl.parse(MxSeev04000108 .class, xml, _classes)); + return ((MxSeev04000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000109.java index 71f319da3..3430846a2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000109 parse(String xml) { - return ((MxSeev04000109) MxReadImpl.parse(MxSeev04000109 .class, xml, _classes)); + return ((MxSeev04000109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000110.java index ac8c06b26..ca8bea740 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000110 parse(String xml) { - return ((MxSeev04000110) MxReadImpl.parse(MxSeev04000110 .class, xml, _classes)); + return ((MxSeev04000110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000201.java index 66da8ace0..7a8e63c60 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000201 parse(String xml) { - return ((MxSeev04000201) MxReadImpl.parse(MxSeev04000201 .class, xml, _classes)); + return ((MxSeev04000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000202.java index b6fa03355..e08288f2f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000202 parse(String xml) { - return ((MxSeev04000202) MxReadImpl.parse(MxSeev04000202 .class, xml, _classes)); + return ((MxSeev04000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000203.java index 728b0bc50..9be3b3a35 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000203 parse(String xml) { - return ((MxSeev04000203) MxReadImpl.parse(MxSeev04000203 .class, xml, _classes)); + return ((MxSeev04000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000204.java index e1784ea44..ca576fb59 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000204 parse(String xml) { - return ((MxSeev04000204) MxReadImpl.parse(MxSeev04000204 .class, xml, _classes)); + return ((MxSeev04000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000205.java index 73232a0d2..afb29b045 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000205 parse(String xml) { - return ((MxSeev04000205) MxReadImpl.parse(MxSeev04000205 .class, xml, _classes)); + return ((MxSeev04000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000206.java index d20e1d248..fb429a83d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000206 parse(String xml) { - return ((MxSeev04000206) MxReadImpl.parse(MxSeev04000206 .class, xml, _classes)); + return ((MxSeev04000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000207.java index c9da5330d..0bee823e9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000207 parse(String xml) { - return ((MxSeev04000207) MxReadImpl.parse(MxSeev04000207 .class, xml, _classes)); + return ((MxSeev04000207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000208.java index 28d6389cf..984c790b6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000208 parse(String xml) { - return ((MxSeev04000208) MxReadImpl.parse(MxSeev04000208 .class, xml, _classes)); + return ((MxSeev04000208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000209.java index 1145350d5..318265f72 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000209 parse(String xml) { - return ((MxSeev04000209) MxReadImpl.parse(MxSeev04000209 .class, xml, _classes)); + return ((MxSeev04000209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000210.java index 9368b5ee7..bfca5bdf9 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04000210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04000210 parse(String xml) { - return ((MxSeev04000210) MxReadImpl.parse(MxSeev04000210 .class, xml, _classes)); + return ((MxSeev04000210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04000210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04000210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04000210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100101.java index ff5ea241f..ca3fa7dc8 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100101 parse(String xml) { - return ((MxSeev04100101) MxReadImpl.parse(MxSeev04100101 .class, xml, _classes)); + return ((MxSeev04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100102.java index 00de5bceb..bbdcee449 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100102 parse(String xml) { - return ((MxSeev04100102) MxReadImpl.parse(MxSeev04100102 .class, xml, _classes)); + return ((MxSeev04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100103.java index 1062a7116..4605a5abf 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100103 parse(String xml) { - return ((MxSeev04100103) MxReadImpl.parse(MxSeev04100103 .class, xml, _classes)); + return ((MxSeev04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100104.java index 4070d2702..696c87169 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100104 parse(String xml) { - return ((MxSeev04100104) MxReadImpl.parse(MxSeev04100104 .class, xml, _classes)); + return ((MxSeev04100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100105.java index cc57a2ead..a3b001010 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100105 parse(String xml) { - return ((MxSeev04100105) MxReadImpl.parse(MxSeev04100105 .class, xml, _classes)); + return ((MxSeev04100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100106.java index 207657871..730ad1c22 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100106 parse(String xml) { - return ((MxSeev04100106) MxReadImpl.parse(MxSeev04100106 .class, xml, _classes)); + return ((MxSeev04100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100107.java index 9ed733d6f..955f07b20 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100107 parse(String xml) { - return ((MxSeev04100107) MxReadImpl.parse(MxSeev04100107 .class, xml, _classes)); + return ((MxSeev04100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100108.java index 8a9732676..8ea162503 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100108 parse(String xml) { - return ((MxSeev04100108) MxReadImpl.parse(MxSeev04100108 .class, xml, _classes)); + return ((MxSeev04100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100109.java index 064bf5a34..2f82fc3b6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100109 parse(String xml) { - return ((MxSeev04100109) MxReadImpl.parse(MxSeev04100109 .class, xml, _classes)); + return ((MxSeev04100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100110.java index 5eb950e64..89b962b60 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100110 parse(String xml) { - return ((MxSeev04100110) MxReadImpl.parse(MxSeev04100110 .class, xml, _classes)); + return ((MxSeev04100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100111.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100111.java index dca82be69..9e898e61d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100111.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100111 parse(String xml) { - return ((MxSeev04100111) MxReadImpl.parse(MxSeev04100111 .class, xml, _classes)); + return ((MxSeev04100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100111 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100201.java index e301f9ac2..9edebc4b5 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100201 parse(String xml) { - return ((MxSeev04100201) MxReadImpl.parse(MxSeev04100201 .class, xml, _classes)); + return ((MxSeev04100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100202.java index 252c575c1..bfa2eec21 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100202 parse(String xml) { - return ((MxSeev04100202) MxReadImpl.parse(MxSeev04100202 .class, xml, _classes)); + return ((MxSeev04100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100203.java index 55e6c149d..a858b33fe 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100203 parse(String xml) { - return ((MxSeev04100203) MxReadImpl.parse(MxSeev04100203 .class, xml, _classes)); + return ((MxSeev04100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100204.java index 5d8d82146..69251e2b4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100204 parse(String xml) { - return ((MxSeev04100204) MxReadImpl.parse(MxSeev04100204 .class, xml, _classes)); + return ((MxSeev04100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100205.java index d5de89996..ff73d7943 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100205 parse(String xml) { - return ((MxSeev04100205) MxReadImpl.parse(MxSeev04100205 .class, xml, _classes)); + return ((MxSeev04100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100206.java index 710ba985d..ced8f265d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100206 parse(String xml) { - return ((MxSeev04100206) MxReadImpl.parse(MxSeev04100206 .class, xml, _classes)); + return ((MxSeev04100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100207.java index c5e4cd9f0..df10ef657 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100207 parse(String xml) { - return ((MxSeev04100207) MxReadImpl.parse(MxSeev04100207 .class, xml, _classes)); + return ((MxSeev04100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100208.java index 4dbdec866..2bc5238c2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100208 parse(String xml) { - return ((MxSeev04100208) MxReadImpl.parse(MxSeev04100208 .class, xml, _classes)); + return ((MxSeev04100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100209.java index 5a88ed5e2..03367b0ff 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100209 parse(String xml) { - return ((MxSeev04100209) MxReadImpl.parse(MxSeev04100209 .class, xml, _classes)); + return ((MxSeev04100209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100210.java index e643c2b94..a242fa83e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100210 parse(String xml) { - return ((MxSeev04100210) MxReadImpl.parse(MxSeev04100210 .class, xml, _classes)); + return ((MxSeev04100210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100211.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100211.java index ac9cc6766..942307fdb 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100211.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04100211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04100211 parse(String xml) { - return ((MxSeev04100211) MxReadImpl.parse(MxSeev04100211 .class, xml, _classes)); + return ((MxSeev04100211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04100211 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04100211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04100211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200101.java index 5a3a170e0..ab847fc69 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200101 parse(String xml) { - return ((MxSeev04200101) MxReadImpl.parse(MxSeev04200101 .class, xml, _classes)); + return ((MxSeev04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200102.java index 6f9eb8989..117ef167e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200102 parse(String xml) { - return ((MxSeev04200102) MxReadImpl.parse(MxSeev04200102 .class, xml, _classes)); + return ((MxSeev04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200103.java index aebe23619..6889076c2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200103 parse(String xml) { - return ((MxSeev04200103) MxReadImpl.parse(MxSeev04200103 .class, xml, _classes)); + return ((MxSeev04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200104.java index 5e974bc0b..072570053 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200104 parse(String xml) { - return ((MxSeev04200104) MxReadImpl.parse(MxSeev04200104 .class, xml, _classes)); + return ((MxSeev04200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200105.java index 29c83bd79..ef9d53a70 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200105 parse(String xml) { - return ((MxSeev04200105) MxReadImpl.parse(MxSeev04200105 .class, xml, _classes)); + return ((MxSeev04200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200106.java index 30dba567e..1b22c363d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200106 parse(String xml) { - return ((MxSeev04200106) MxReadImpl.parse(MxSeev04200106 .class, xml, _classes)); + return ((MxSeev04200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200107.java index 56b94b56a..121ad4f11 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200107 parse(String xml) { - return ((MxSeev04200107) MxReadImpl.parse(MxSeev04200107 .class, xml, _classes)); + return ((MxSeev04200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200108.java index 16e09258f..8f2f001c3 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200108 parse(String xml) { - return ((MxSeev04200108) MxReadImpl.parse(MxSeev04200108 .class, xml, _classes)); + return ((MxSeev04200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200109.java index c89b71107..a01b827e5 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200109 parse(String xml) { - return ((MxSeev04200109) MxReadImpl.parse(MxSeev04200109 .class, xml, _classes)); + return ((MxSeev04200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200110.java index ad8da2fb4..81298d0de 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200110 parse(String xml) { - return ((MxSeev04200110) MxReadImpl.parse(MxSeev04200110 .class, xml, _classes)); + return ((MxSeev04200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200201.java index 44ff6eeec..f0e934094 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200201 parse(String xml) { - return ((MxSeev04200201) MxReadImpl.parse(MxSeev04200201 .class, xml, _classes)); + return ((MxSeev04200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200202.java index f99f025a1..1ff39aaa5 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200202 parse(String xml) { - return ((MxSeev04200202) MxReadImpl.parse(MxSeev04200202 .class, xml, _classes)); + return ((MxSeev04200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200203.java index 8cff634ff..c6231661e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200203 parse(String xml) { - return ((MxSeev04200203) MxReadImpl.parse(MxSeev04200203 .class, xml, _classes)); + return ((MxSeev04200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200204.java index b5e8a8e33..7c958f0f6 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200204 parse(String xml) { - return ((MxSeev04200204) MxReadImpl.parse(MxSeev04200204 .class, xml, _classes)); + return ((MxSeev04200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200205.java index e43c5057a..bfc86d680 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200205 parse(String xml) { - return ((MxSeev04200205) MxReadImpl.parse(MxSeev04200205 .class, xml, _classes)); + return ((MxSeev04200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200206.java index a100a5799..750a63e0d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200206 parse(String xml) { - return ((MxSeev04200206) MxReadImpl.parse(MxSeev04200206 .class, xml, _classes)); + return ((MxSeev04200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200207.java index 2ee67f7fc..3e66635dc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200207 parse(String xml) { - return ((MxSeev04200207) MxReadImpl.parse(MxSeev04200207 .class, xml, _classes)); + return ((MxSeev04200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200208.java index 8ed8f4a71..4e4c72202 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200208 parse(String xml) { - return ((MxSeev04200208) MxReadImpl.parse(MxSeev04200208 .class, xml, _classes)); + return ((MxSeev04200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200209.java index a7aa49023..4c15ca80b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200209 parse(String xml) { - return ((MxSeev04200209) MxReadImpl.parse(MxSeev04200209 .class, xml, _classes)); + return ((MxSeev04200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200210.java index 8579f6c87..0e80c8823 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04200210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04200210 parse(String xml) { - return ((MxSeev04200210) MxReadImpl.parse(MxSeev04200210 .class, xml, _classes)); + return ((MxSeev04200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04200210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400101.java index d9a636ae6..89c6ecfcc 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400101 parse(String xml) { - return ((MxSeev04400101) MxReadImpl.parse(MxSeev04400101 .class, xml, _classes)); + return ((MxSeev04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400102.java index bc76d4eea..377f3d43e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400102 parse(String xml) { - return ((MxSeev04400102) MxReadImpl.parse(MxSeev04400102 .class, xml, _classes)); + return ((MxSeev04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400103.java index 5635e1625..17f16007a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400103 parse(String xml) { - return ((MxSeev04400103) MxReadImpl.parse(MxSeev04400103 .class, xml, _classes)); + return ((MxSeev04400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400104.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400104.java index e0b82faff..50d6a1563 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400104.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400104 parse(String xml) { - return ((MxSeev04400104) MxReadImpl.parse(MxSeev04400104 .class, xml, _classes)); + return ((MxSeev04400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400105.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400105.java index a1f8771b6..f3e7227c0 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400105.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400105 parse(String xml) { - return ((MxSeev04400105) MxReadImpl.parse(MxSeev04400105 .class, xml, _classes)); + return ((MxSeev04400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400106.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400106.java index f4ee19a57..6f65a72e4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400106.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400106 parse(String xml) { - return ((MxSeev04400106) MxReadImpl.parse(MxSeev04400106 .class, xml, _classes)); + return ((MxSeev04400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400107.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400107.java index 296219aa0..39c421f5f 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400107.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400107 parse(String xml) { - return ((MxSeev04400107) MxReadImpl.parse(MxSeev04400107 .class, xml, _classes)); + return ((MxSeev04400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400108.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400108.java index 997e32d5a..3c8e376df 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400108.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400108 parse(String xml) { - return ((MxSeev04400108) MxReadImpl.parse(MxSeev04400108 .class, xml, _classes)); + return ((MxSeev04400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400109.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400109.java index 4491cfb7e..fb326f68c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400109.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400109 parse(String xml) { - return ((MxSeev04400109) MxReadImpl.parse(MxSeev04400109 .class, xml, _classes)); + return ((MxSeev04400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400109 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400110.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400110.java index 7acc7a4e9..a49ebbf1b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400110.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400110 parse(String xml) { - return ((MxSeev04400110) MxReadImpl.parse(MxSeev04400110 .class, xml, _classes)); + return ((MxSeev04400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400110 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400201.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400201.java index 7ae031e3c..b9e895ab4 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400201.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400201 parse(String xml) { - return ((MxSeev04400201) MxReadImpl.parse(MxSeev04400201 .class, xml, _classes)); + return ((MxSeev04400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400202.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400202.java index 8706ff527..8fd86eb41 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400202.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400202 parse(String xml) { - return ((MxSeev04400202) MxReadImpl.parse(MxSeev04400202 .class, xml, _classes)); + return ((MxSeev04400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400202 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400203.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400203.java index a5b5bcdf5..35da67297 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400203.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400203 parse(String xml) { - return ((MxSeev04400203) MxReadImpl.parse(MxSeev04400203 .class, xml, _classes)); + return ((MxSeev04400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400203 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400204.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400204.java index 18c940fbe..5fad853ec 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400204.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400204 parse(String xml) { - return ((MxSeev04400204) MxReadImpl.parse(MxSeev04400204 .class, xml, _classes)); + return ((MxSeev04400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400204 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400205.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400205.java index 53838ca5c..9da5f2e32 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400205.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400205 parse(String xml) { - return ((MxSeev04400205) MxReadImpl.parse(MxSeev04400205 .class, xml, _classes)); + return ((MxSeev04400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400205 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400206.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400206.java index 74d61bf3a..8073e29e5 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400206.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400206 parse(String xml) { - return ((MxSeev04400206) MxReadImpl.parse(MxSeev04400206 .class, xml, _classes)); + return ((MxSeev04400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400206 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400207.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400207.java index ef51763e4..74ee93385 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400207.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400207 parse(String xml) { - return ((MxSeev04400207) MxReadImpl.parse(MxSeev04400207 .class, xml, _classes)); + return ((MxSeev04400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400207 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400208.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400208.java index b8251bc42..acd1b0182 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400208.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400208 parse(String xml) { - return ((MxSeev04400208) MxReadImpl.parse(MxSeev04400208 .class, xml, _classes)); + return ((MxSeev04400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400208 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400209.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400209.java index 7c2588c01..55f9d06fb 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400209.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400209 parse(String xml) { - return ((MxSeev04400209) MxReadImpl.parse(MxSeev04400209 .class, xml, _classes)); + return ((MxSeev04400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400209 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400210.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400210.java index 9e54f1c27..d9d46b828 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400210.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04400210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04400210 parse(String xml) { - return ((MxSeev04400210) MxReadImpl.parse(MxSeev04400210 .class, xml, _classes)); + return ((MxSeev04400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04400210 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500101.java index 1911fb4fe..4fba3c838 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04500101 parse(String xml) { - return ((MxSeev04500101) MxReadImpl.parse(MxSeev04500101 .class, xml, _classes)); + return ((MxSeev04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500102.java index 833d0bfeb..33e4fb79b 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04500102 parse(String xml) { - return ((MxSeev04500102) MxReadImpl.parse(MxSeev04500102 .class, xml, _classes)); + return ((MxSeev04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500103.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500103.java index 3dc942212..bb7b44723 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500103.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04500103 parse(String xml) { - return ((MxSeev04500103) MxReadImpl.parse(MxSeev04500103 .class, xml, _classes)); + return ((MxSeev04500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04600101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04600101.java index d34fc506e..3b2c2b09d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04600101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04600101 parse(String xml) { - return ((MxSeev04600101) MxReadImpl.parse(MxSeev04600101 .class, xml, _classes)); + return ((MxSeev04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700101.java index dde5bf446..e0cf2a71a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04700101 parse(String xml) { - return ((MxSeev04700101) MxReadImpl.parse(MxSeev04700101 .class, xml, _classes)); + return ((MxSeev04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700102.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700102.java index 84873a794..5210ebdc2 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700102.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04700102 parse(String xml) { - return ((MxSeev04700102) MxReadImpl.parse(MxSeev04700102 .class, xml, _classes)); + return ((MxSeev04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04800101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04800101.java index 6b30faac3..6c607f093 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04800101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04800101 parse(String xml) { - return ((MxSeev04800101) MxReadImpl.parse(MxSeev04800101 .class, xml, _classes)); + return ((MxSeev04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04900101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04900101.java index afd4d414a..cc5325c5c 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04900101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev04900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev04900101 parse(String xml) { - return ((MxSeev04900101) MxReadImpl.parse(MxSeev04900101 .class, xml, _classes)); + return ((MxSeev04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev04900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05000101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05000101.java index cf28feeab..b6116317e 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05000101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev05000101 parse(String xml) { - return ((MxSeev05000101) MxReadImpl.parse(MxSeev05000101 .class, xml, _classes)); + return ((MxSeev05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev05000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05100101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05100101.java index afd4f9bf0..b17da8d9a 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05100101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev05100101 parse(String xml) { - return ((MxSeev05100101) MxReadImpl.parse(MxSeev05100101 .class, xml, _classes)); + return ((MxSeev05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev05100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05200101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05200101.java index cb7bf2d0f..e7f90f4be 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05200101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev05200101 parse(String xml) { - return ((MxSeev05200101) MxReadImpl.parse(MxSeev05200101 .class, xml, _classes)); + return ((MxSeev05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev05200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05300101.java b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05300101.java index 8d15c2a4c..20c39cc8d 100644 --- a/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05300101.java +++ b/model-seev-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeev05300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeev05300101 parse(String xml) { - return ((MxSeev05300101) MxReadImpl.parse(MxSeev05300101 .class, xml, _classes)); + return ((MxSeev05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeev05300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeev05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeev05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess5Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess5Code.java index 47cdc1873..e784456a8 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess5Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess5Code.java @@ -71,7 +71,7 @@ public enum AdditionalBusinessProcess5Code { SCHM, /** - * Relates to a consent within a corporate action event other than a Consent event (:22F::CAEV//CONS). + * Relates to a consent within a corporate action event other than a Consent event (: 22F:: CAEV//CONS). * */ CONS, @@ -89,7 +89,7 @@ public enum AdditionalBusinessProcess5Code { FPRE, /** - * Partial pre-funding of a debt instrument prior to maturity drawn through a lottery process. One new security is issued with an earlier maturity date for the refunded (called portion) and the other new security is issued with the original maturity date for the non refunded (remaining) portion. Applicable only in the frame of a partial defeasance corporate action event. + * Partial pre-funding of a debt instrument prior to maturity drawn through a lottery process. One new security is issued with an earlier maturity date for the refunded (called portion) and the other new security is issued with the original maturity date for the non refunded (remaining) portion. Applicable only in the frame of a partial defeasance corporate action event. * */ PPRE, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess8Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess8Code.java index 115f93dc9..079a7e5fb 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess8Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AdditionalBusinessProcess8Code.java @@ -28,7 +28,7 @@ public enum AdditionalBusinessProcess8Code { /** - * Relates to a consent within a corporate action event other than a Consent event (:22F::CAEV//CONS). + * Relates to a consent within a corporate action event other than a Consent event (: 22F:: CAEV//CONS). * */ CONS, @@ -46,7 +46,7 @@ public enum AdditionalBusinessProcess8Code { PPUT, /** - * Partial pre-funding of a debt instrument prior to maturity drawn through a lottery process. One new security is issued with an earlier maturity date for the refunded (called portion) and the other new security is issued with the original maturity date for the non refunded (remaining) portion. Applicable only in the frame of a partial defeasance corporate action event. + * Partial pre-funding of a debt instrument prior to maturity drawn through a lottery process. One new security is issued with an earlier maturity date for the refunded (called portion) and the other new security is issued with the original maturity date for the non refunded (remaining) portion. Applicable only in the frame of a partial defeasance corporate action event. * */ PPRE; diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashMovement3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashMovement3.java index fe956ddec..b22ccaf42 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashMovement3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashMovement3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CashMovement3 { @XmlElement(name = "PstngDtTm") protected DateAndDateTimeChoice pstngDtTm; - @XmlElement(name = "ValDt", required = true) + @XmlElement(name = "ValDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar valDt; @XmlElement(name = "PstngAmt", required = true) @@ -70,7 +73,7 @@ public CashMovement3 setPstngDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getValDt() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getValDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CashMovement3 setValDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDeactivationInstruction1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDeactivationInstruction1.java index ea06fa87a..512627aab 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDeactivationInstruction1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDeactivationInstruction1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionDeactivationInstruction1 { - @XmlElement(name = "DeactvtnDtAndTm", required = true) + @XmlElement(name = "DeactvtnDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar deactvtnDtAndTm; @XmlElement(name = "OptnDtls") @@ -39,7 +42,7 @@ public class CorporateActionDeactivationInstruction1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDeactvtnDtAndTm() { @@ -51,7 +54,7 @@ public XMLGregorianCalendar getDeactvtnDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDeactivationInstruction1 setDeactvtnDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventStage3Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventStage3Code.java index 1d71898ab..bc4f938df 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventStage3Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventStage3Code.java @@ -58,7 +58,7 @@ public enum CorporateActionEventStage3Code { LAPS, /** - * Cancellation and re-run of a supplemental lottery only. A subsequent new supplemental lottery will be performed under the original event. + * Cancellation and re-run of a supplemental lottery only. A subsequent new supplemental lottery will be performed under the original event. * */ PART, @@ -70,7 +70,7 @@ public enum CorporateActionEventStage3Code { PWAL, /** - * A supplemental lottery is being cancelled by the issuer. No subsequent lottery will be performed. + * A supplemental lottery is being cancelled by the issuer. No subsequent lottery will be performed. * */ RESC, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType20Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType20Code.java index 43f9174d1..be0741531 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType20Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType20Code.java @@ -89,7 +89,7 @@ public enum CorporateActionEventType20Code { /** - * Trading in the security has commenced or security has been re-activated after a suspension in trading. + * Trading in security has commenced or security has been re-activated after a suspension in trading. * */ ACTV, @@ -173,13 +173,13 @@ public enum CorporateActionEventType20Code { CLSA, /** - * Procedure that aims to obtain consent of holder to a proposal by the issuer or a third party without convening a meeting. For example, consent to change the terms of a bond. + * Procedure that aims to obtain consent of holder to a proposal by the issuer or a third party without convening a meeting. For example, consent to change the terms of a bond. * */ CONS, /** - * Conversion of securities (generally convertible bonds or preferred shares) into another form of securities (usually common shares) at a pre-stated price/ratio. + * Conversion of securities ( generally convertible bonds or preferred shares) into another form of securities ( usually common shares) at a pre-stated price/ratio. * */ CONV, @@ -197,7 +197,7 @@ public enum CorporateActionEventType20Code { DECR, /** - * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity. Units may be broken up at the request of the security holder or based on market convention. + * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity . Units may be broken up at the request of the security holder or based on market convention. * */ DETI, @@ -233,25 +233,25 @@ public enum CorporateActionEventType20Code { DTCH, /** - * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation". + * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation" . * */ EXOF, /** - * Redemption of an entire issue outstanding of securities, for example, bonds, preferred equity, funds, by the issuer or its agent, for example, asset manager, at final maturity. + * Redemption of an entire issue outstanding of securities, eg, bonds, preferred equity, funds, by the issuer or its agent, for example, asset manager, at final maturity. * */ REDM, /** - * Redemption of an entire issue outstanding of securities, for example, bonds, preferred equity, funds, by the issuer or its agent, for example, asset manager, before final maturity. + * Redemption of an entire issue outstanding of securities, eg, bonds, preferred equity, funds, by the issuer or its agent, for example, asset manager,before final maturity. * */ MCAL, /** - * Increase in the face value of a single security. The number of circulating securities remains unchanged. + * Increase in the face value of a single security. The number of circulating securities remains unchanged . * */ INCR, @@ -323,7 +323,7 @@ public enum CorporateActionEventType20Code { OTHR, /** - * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example, pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. + * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example , pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. * */ PARI, @@ -383,7 +383,7 @@ public enum CorporateActionEventType20Code { REMK, /** - * Repurchase offer / issuer bid / reverse rights. Offer to existing holders by the issuing company to repurchase its own securities. The objective of the offer is to reduce the number of outstanding securities. + * Repurchase offer/Issuer bid/ Reverse rights. Offer to existing holders by the issuing company to repurchase its own securities. The objective of the offer is to reduce the number of outstanding securities. * */ BIDS, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType27Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType27Code.java index 6f00e7a69..6144920f3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType27Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType27Code.java @@ -199,7 +199,7 @@ public enum CorporateActionEventType27Code { DECR, /** - * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity. Units may be broken up at the request of the security holder or based on market convention. + * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity . Units may be broken up at the request of the security holder or based on market convention. * */ DETI, @@ -235,7 +235,7 @@ public enum CorporateActionEventType27Code { DTCH, /** - * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation". + * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation" . * */ EXOF, @@ -325,7 +325,7 @@ public enum CorporateActionEventType27Code { OTHR, /** - * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example, pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. + * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example , pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. * */ PARI, @@ -481,7 +481,7 @@ public enum CorporateActionEventType27Code { WRTH, /** - * Funds related event in which the income (for example accumulation units) that accrues during an accounting period is retained within the fund instead of being paid away to investors. The retained income is nonetheless deemed to have been distributed to investors for tax purposes. + * Funds related event in which the income (for example accumulation units) that accrues during an accounting period is retained within the fund instead of being paid away to investors. The retained income is nonetheless deemed to have been distributed to investors for tax purposes. * */ ACCU, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionMovement1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionMovement1.java index d63b373e6..5e8699885 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionMovement1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionMovement1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionMovement1 { protected String optnNb; @XmlElement(name = "OptnTp") protected CorporateActionOption1FormatChoice optnTp; - @XmlElement(name = "ReqdExctnDt", required = true) + @XmlElement(name = "ReqdExctnDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "AcctOwnrId") @@ -148,7 +151,7 @@ public CorporateActionMovement1 setOptnTp(CorporateActionOption1FormatChoice val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -160,7 +163,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionMovement1 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNarrative1Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNarrative1Code.java index 33da2d47e..8712092d5 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNarrative1Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNarrative1Code.java @@ -48,7 +48,7 @@ public enum CorporateActionNarrative1Code { WTRC, /** - * In the context of a corporate action, an International Central Securities Depository (ICSD) refuses a mark-up/mark-down confirmation sent by the account servicer. + * In the context of a corporate action, an International Central Securities Depository (ICSD) refuses a mark-up/mark-down confirmation sent by the account servicer. * */ RFMC, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOption11Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOption11Code.java deleted file mode 100644 index 74944175f..000000000 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOption11Code.java +++ /dev/null @@ -1,182 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CorporateActionOption11Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="CorporateActionOption11Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ABST"/>
- *     <enumeration value="BSPL"/>
- *     <enumeration value="BUYA"/>
- *     <enumeration value="CASE"/>
- *     <enumeration value="CASH"/>
- *     <enumeration value="CEXC"/>
- *     <enumeration value="CONN"/>
- *     <enumeration value="CONY"/>
- *     <enumeration value="CTEN"/>
- *     <enumeration value="EXER"/>
- *     <enumeration value="LAPS"/>
- *     <enumeration value="MPUT"/>
- *     <enumeration value="NOAC"/>
- *     <enumeration value="NOQU"/>
- *     <enumeration value="OFFR"/>
- *     <enumeration value="OTHR"/>
- *     <enumeration value="OVER"/>
- *     <enumeration value="QINV"/>
- *     <enumeration value="SECU"/>
- *     <enumeration value="SLLE"/>
- *     <enumeration value="PRUN"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "CorporateActionOption11Code") -@XmlEnum -public enum CorporateActionOption11Code { - - - /** - * Vote expressed as abstain. In this case, the issuing company will add the number of shares to the quorum of the meeting. - * If the voting right is not executed, it will not be added to the quorum. In this case, code NOAC should be used. - * - */ - ABST, - - /** - * Receive equities from the share premium reserve of the company and considered as a capital distribution rather than a disbursement of income with different tax implications (typically found in Australia). - * - */ - BSPL, - - /** - * Buy additional securities to round up position. - * - */ - BUYA, - - /** - * Option to choose between different security and cash options. - * - */ - CASE, - - /** - * Option to choose cash. - * - */ - CASH, - - /** - * Vote to consent to change the terms of the securities agreement and to exchange securities. - * - */ - CEXC, - - /** - * Vote not to approve the event or proposal. - * - */ - CONN, - - /** - * Vote to approve the event or proposal. - * - */ - CONY, - - /** - * Vote to consent to change the terms of the securities agreement and to tender securities for cash. - * - */ - CTEN, - - /** - * Exercise intermediate securities or warrants. - * - */ - EXER, - - /** - * Allow event or entitled security to expire. - * - */ - LAPS, - - /** - * Option that allows a holder to elect to retain their holding, for example, a putable bond. - * - */ - MPUT, - - /** - * Option for the account owner not to take part in the event. This would include opt-out for class actions and lodging of dissenters' rights. - * - */ - NOAC, - - /** - * Account owner is a non-qualified investor. - * - */ - NOQU, - - /** - * In a remarketing of variable notes, the margin that shareholders can propose in respect of the next interest period. - * - */ - OFFR, - - /** - * Generic corporate action option to be used in case that no other specific code is appropriate. - * - */ - OTHR, - - /** - * Subscribe to more equities than underlying securities position allows. - * - */ - OVER, - - /** - * Account owner is a qualified investor. - * - */ - QINV, - - /** - * Distribution of securities to holders. - * - */ - SECU, - - /** - * Sell the intermediate securities. - * - */ - SLLE, - - /** - * Proceeds not known during election period. The option can result in cash and/or securities. - * - */ - PRUN; - - public String value() { - return name(); - } - - public static CorporateActionOption11Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCalculationMethod1Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCalculationMethod1Code.java index dee709bc4..b12211363 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCalculationMethod1Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCalculationMethod1Code.java @@ -24,17 +24,7 @@ @XmlEnum public enum DateCalculationMethod1Code { - - /** - * First in, first out. - * - */ FIFO, - - /** - * Last in, first out. - * - */ LIFO; public String value() { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat1.java index d52875a89..20727c616 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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 DateCodeAndTimeFormat1 { @XmlElement(name = "DtCd", required = true) protected DateCode4Choice dtCd; - @XmlElement(name = "Tm", required = true) + @XmlElement(name = "Tm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar tm; @@ -62,7 +65,7 @@ public DateCodeAndTimeFormat1 setDtCd(DateCode4Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateCodeAndTimeFormat1 setTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat2.java index aa098e6af..b028cbf28 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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 DateCodeAndTimeFormat2 { @XmlElement(name = "DtCd", required = true) protected DateCode8Choice dtCd; - @XmlElement(name = "Tm", required = true) + @XmlElement(name = "Tm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar tm; @@ -62,7 +65,7 @@ public DateCodeAndTimeFormat2 setDtCd(DateCode8Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateCodeAndTimeFormat2 setTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat3.java index 0133161a8..aafd5c8d7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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 DateCodeAndTimeFormat3 { @XmlElement(name = "DtCd", required = true) protected DateCode21Choice dtCd; - @XmlElement(name = "Tm", required = true) + @XmlElement(name = "Tm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar tm; @@ -62,7 +65,7 @@ public DateCodeAndTimeFormat3 setDtCd(DateCode21Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateCodeAndTimeFormat3 setTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat4.java index 7caad81d6..04e8b96a9 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateCodeAndTimeFormat4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import 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 DateCodeAndTimeFormat4 { @XmlElement(name = "DtCd", required = true) protected DateCode26Choice dtCd; - @XmlElement(name = "Tm", required = true) + @XmlElement(name = "Tm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar tm; @@ -62,7 +65,7 @@ public DateCodeAndTimeFormat4 setDtCd(DateCode26Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateCodeAndTimeFormat4 setTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat16Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat16Choice.java index 61b3a7871..535fb0fa0 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat16Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat16Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat16Choice { - @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 DateFormat16Choice { * * @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 DateFormat16Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat17Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat17Choice.java index 0d53ae133..f462f64ee 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat17Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat17Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat17Choice { - @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 DateFormat17Choice { * * @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 DateFormat17Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat2Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat2Choice.java index 73df78ac9..3f2532b9c 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat2Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat2Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat2Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dt; @XmlElement(name = "DtCd") @@ -38,7 +41,7 @@ public class DateFormat2Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -50,7 +53,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateFormat2Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat30Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat30Choice.java index f72578839..9627bb779 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat30Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat30Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat30Choice { - @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 DateFormat30Choice { * * @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 DateFormat30Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat3Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat3Choice.java index 3b83f1392..cb3cb9567 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat3Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat3Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat3Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "DtCd") @@ -38,7 +41,7 @@ public class DateFormat3Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -50,7 +53,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateFormat3Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat41Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat41Choice.java index 995a8a430..a898e684f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat41Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat41Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat41Choice { - @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 DateFormat41Choice { * * @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 DateFormat41Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat57Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat57Choice.java index 3c555c4cb..49b4f572d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat57Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat57Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat57Choice { - @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 DateFormat57Choice { * * @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 DateFormat57Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat5Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat5Choice.java index 875cd9015..0fdd79e79 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat5Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat5Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat5Choice { - @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 DateFormat5Choice { * * @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 DateFormat5Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat8Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat8Choice.java index 5aed651b6..fe186f5f6 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat8Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat8Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat8Choice { - @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 DateFormat8Choice { * * @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 DateFormat8Choice setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateType7Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateType7Code.java index 32ce3365c..a32f6fec1 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateType7Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateType7Code.java @@ -25,7 +25,7 @@ public enum DateType7Code { /** - * Ongoing basis, which indicates that the date is determined by "ongoing basis" process, for example "au fil de l'eau". + * Ongoing basis, which indicates that the date is determined by "ongoing basis" process, for example "au fil de l'eau". * */ ONGO; diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DisclosureRequestType1Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DisclosureRequestType1Code.java index 67dd63087..82ceccb01 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DisclosureRequestType1Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DisclosureRequestType1Code.java @@ -24,7 +24,17 @@ @XmlEnum public enum DisclosureRequestType1Code { + + /** + * New disclosure request. + * + */ NEWM, + + /** + * Disclosure request replacing a previously sent request. + * + */ REPL; public String value() { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates.java index 58c88ad87..c4862a72b 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EligibilityDates { - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; - @XmlElement(name = "SctiesRegnDt") + @XmlElement(name = "SctiesRegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sctiesRegnDt; @XmlElement(name = "BlckgPrd") @@ -41,7 +45,7 @@ public class EligibilityDates { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -53,7 +57,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EligibilityDates setRcrdDt(XMLGregorianCalendar value) { @@ -66,7 +70,7 @@ public EligibilityDates setRcrdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesRegnDt() { @@ -78,7 +82,7 @@ public XMLGregorianCalendar getSctiesRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EligibilityDates setSctiesRegnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates1.java index cee611abb..fbc04d0ed 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EligibilityDates1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EligibilityDates1 { - @XmlElement(name = "EntitlmntFxgDt", required = true) + @XmlElement(name = "EntitlmntFxgDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar entitlmntFxgDt; @@ -34,7 +37,7 @@ public class EligibilityDates1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEntitlmntFxgDt() { @@ -46,7 +49,7 @@ public XMLGregorianCalendar getEntitlmntFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EligibilityDates1 setEntitlmntFxgDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment.java index 51032a268..222de5139 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment.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; @@ -35,27 +38,34 @@ }) public class EntitlementAssessment { - @XmlElement(name = "SctiesBlckgDdln") + @XmlElement(name = "SctiesBlckgDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgDdln; - @XmlElement(name = "SctiesBlckgMktDdln") + @XmlElement(name = "SctiesBlckgMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgMktDdln; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; - @XmlElement(name = "SctiesRregnDdln") + @XmlElement(name = "SctiesRregnDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesRregnDdln; - @XmlElement(name = "SctiesRregnMktDdln") + @XmlElement(name = "SctiesRregnMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesRregnMktDdln; - @XmlElement(name = "SctiesRegnDt") + @XmlElement(name = "SctiesRegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sctiesRegnDt; @XmlElement(name = "RegnBnfcry") protected PartyIdentification7Choice regnBnfcry; - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; @XmlElement(name = "EntitlmntDesc") @@ -68,7 +78,7 @@ public class EntitlementAssessment { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgDdln() { @@ -80,7 +90,7 @@ public XMLGregorianCalendar getSctiesBlckgDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesBlckgDdln(XMLGregorianCalendar value) { @@ -93,7 +103,7 @@ public EntitlementAssessment setSctiesBlckgDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgMktDdln() { @@ -105,7 +115,7 @@ public XMLGregorianCalendar getSctiesBlckgMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesBlckgMktDdln(XMLGregorianCalendar value) { @@ -118,7 +128,7 @@ public EntitlementAssessment setSctiesBlckgMktDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -130,7 +140,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { @@ -143,7 +153,7 @@ public EntitlementAssessment setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesRregnDdln() { @@ -155,7 +165,7 @@ public XMLGregorianCalendar getSctiesRregnDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesRregnDdln(XMLGregorianCalendar value) { @@ -168,7 +178,7 @@ public EntitlementAssessment setSctiesRregnDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesRregnMktDdln() { @@ -180,7 +190,7 @@ public XMLGregorianCalendar getSctiesRregnMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesRregnMktDdln(XMLGregorianCalendar value) { @@ -193,7 +203,7 @@ public EntitlementAssessment setSctiesRregnMktDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesRegnDt() { @@ -205,7 +215,7 @@ public XMLGregorianCalendar getSctiesRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setSctiesRegnDt(XMLGregorianCalendar value) { @@ -243,7 +253,7 @@ public EntitlementAssessment setRegnBnfcry(PartyIdentification7Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -255,7 +265,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment setRcrdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment1.java index 156c07c02..3b251d397 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment1.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 EntitlementAssessment1 { protected DateFormat2Choice sctiesBlckgSTPDdln; @XmlElement(name = "SctiesBlckgMktDdln") protected DateFormat2Choice sctiesBlckgMktDdln; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; @XmlElement(name = "EntitlmntFxgDt") @@ -146,7 +149,7 @@ public EntitlementAssessment1 setSctiesBlckgMktDdln(DateFormat2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -158,7 +161,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment1 setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment2.java index 3b4eaef8d..36feb08b4 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EntitlementAssessment2 { protected DateFormat2Choice sctiesBlckgSTPDdln; @XmlElement(name = "SctiesBlckgMktDdln") protected DateFormat2Choice sctiesBlckgMktDdln; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; @XmlElement(name = "EntitlmntFxgDt") @@ -142,7 +145,7 @@ public EntitlementAssessment2 setSctiesBlckgMktDdln(DateFormat2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -154,7 +157,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment2 setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment3.java index 6cb7c8055..f1f0a865a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EntitlementAssessment3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EntitlementAssessment3 { protected DateFormat29Choice sctiesBlckgSTPDdln; @XmlElement(name = "SctiesBlckgMktDdln") protected DateFormat29Choice sctiesBlckgMktDdln; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; @XmlElement(name = "EntitlmntFxgDt") @@ -142,7 +145,7 @@ public EntitlementAssessment3 setSctiesBlckgMktDdln(DateFormat29Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -154,7 +157,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EntitlementAssessment3 setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes10.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes10.java index a6040f163..fdf7fccb6 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes10.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes10.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes10 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes10 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes10 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes10 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes10 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes10 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes10 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes10 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes10 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes10 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes11.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes11.java index 962e32cde..71eaa4c8c 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes11.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes11.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes11 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes11 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes11 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes11 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes11 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes11 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes11 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes11 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes11 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes11 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes11 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes16.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes16.java index e68eb182a..2bacfce17 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes16.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes16.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes16 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes16 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes16 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes16 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes16 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes16 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes16 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes16 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes16 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes16 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes18.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes18.java index 1f9a5d493..cd8c7adf3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes18.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes18.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes18 { protected ClassificationType2Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes18 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes18 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes18 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes18 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes18 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes18 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes18 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes18 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes18 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes18 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes19.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes19.java index bafa57e22..86804309f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes19.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes19.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes19 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes19 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes19 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes19 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes19 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes19 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes19 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes19 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes19 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes19 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes19 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes22.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes22.java index a6105ff92..61f0db34f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes22.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes22.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes22 { protected ClassificationType3Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes22 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes22 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes22 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes22 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes22 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes22 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes22 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes22 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes22 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes22 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes23.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes23.java index a13ae865b..64c759460 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes23.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes23.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes23 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes23 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes23 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes23 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes23 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes23 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes23 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes23 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes23 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes23 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes23 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes24.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes24.java index 5c5d1a8f6..3b526205a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes24.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes24.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes24 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes24 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes24 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes24 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes24 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes24 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes24 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes24 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes24 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes24 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes32.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes32.java index 50815b1f8..48ea16fff 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes32.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes32.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes32 { protected ClassificationType2Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes32 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes32 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes32 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes32 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes32 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes32 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes32 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes32 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes32 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes32 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes33.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes33.java index 87d3cd402..329c8c6ef 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes33.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes33.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes33 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes33 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes33 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes33 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes33 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes33 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes33 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes33 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes33 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes33 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes33 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes34.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes34.java index 8aa502100..e14815749 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes34.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes34.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes34 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes34 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes34 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes34 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes34 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes34 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes34 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes34 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes34 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes34 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes38.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes38.java index 82bf79853..261b4035c 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes38.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes38.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes38 { protected ClassificationType3Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes38 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes38 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes38 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes38 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes38 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes38 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes38 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes38 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes38 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes38 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes39.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes39.java index 3e161e845..ec05a0ab9 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes39.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes39.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes39 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes39 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes39 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes39 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes39 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes39 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes39 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes39 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes39 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes39 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes39 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes40.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes40.java index 93340e94a..0baa7f56f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes40.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes40.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes40 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes40 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes40 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes40 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes40 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes40 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes40 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes40 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes40 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes40 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes43.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes43.java index dd517b252..e9166e184 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes43.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes43.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +63,40 @@ public class FinancialInstrumentAttributes43 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -264,7 +275,7 @@ public FinancialInstrumentAttributes43 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -276,7 +287,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setNxtCpnDt(XMLGregorianCalendar value) { @@ -289,7 +300,7 @@ public FinancialInstrumentAttributes43 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -301,7 +312,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setXpryDt(XMLGregorianCalendar value) { @@ -314,7 +325,7 @@ public FinancialInstrumentAttributes43 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -326,7 +337,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -339,7 +350,7 @@ public FinancialInstrumentAttributes43 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -351,7 +362,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setMtrtyDt(XMLGregorianCalendar value) { @@ -364,7 +375,7 @@ public FinancialInstrumentAttributes43 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -376,7 +387,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setIsseDt(XMLGregorianCalendar value) { @@ -389,7 +400,7 @@ public FinancialInstrumentAttributes43 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -401,7 +412,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setNxtCllblDt(XMLGregorianCalendar value) { @@ -414,7 +425,7 @@ public FinancialInstrumentAttributes43 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -426,7 +437,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setPutblDt(XMLGregorianCalendar value) { @@ -439,7 +450,7 @@ public FinancialInstrumentAttributes43 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -451,7 +462,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setDtdDt(XMLGregorianCalendar value) { @@ -464,7 +475,7 @@ public FinancialInstrumentAttributes43 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -476,7 +487,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes43 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes45.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes45.java index def6641e6..e099c4545 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes45.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes45.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +63,40 @@ public class FinancialInstrumentAttributes45 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -264,7 +275,7 @@ public FinancialInstrumentAttributes45 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -276,7 +287,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setNxtCpnDt(XMLGregorianCalendar value) { @@ -289,7 +300,7 @@ public FinancialInstrumentAttributes45 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -301,7 +312,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setXpryDt(XMLGregorianCalendar value) { @@ -314,7 +325,7 @@ public FinancialInstrumentAttributes45 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -326,7 +337,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -339,7 +350,7 @@ public FinancialInstrumentAttributes45 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -351,7 +362,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setMtrtyDt(XMLGregorianCalendar value) { @@ -364,7 +375,7 @@ public FinancialInstrumentAttributes45 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -376,7 +387,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setIsseDt(XMLGregorianCalendar value) { @@ -389,7 +400,7 @@ public FinancialInstrumentAttributes45 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -401,7 +412,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setNxtCllblDt(XMLGregorianCalendar value) { @@ -414,7 +425,7 @@ public FinancialInstrumentAttributes45 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -426,7 +437,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setPutblDt(XMLGregorianCalendar value) { @@ -439,7 +450,7 @@ public FinancialInstrumentAttributes45 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -451,7 +462,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setDtdDt(XMLGregorianCalendar value) { @@ -464,7 +475,7 @@ public FinancialInstrumentAttributes45 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -476,7 +487,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes45 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes48.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes48.java index d502f4247..5ba4447f3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes48.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes48.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +63,40 @@ public class FinancialInstrumentAttributes48 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -264,7 +275,7 @@ public FinancialInstrumentAttributes48 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -276,7 +287,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setNxtCpnDt(XMLGregorianCalendar value) { @@ -289,7 +300,7 @@ public FinancialInstrumentAttributes48 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -301,7 +312,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setXpryDt(XMLGregorianCalendar value) { @@ -314,7 +325,7 @@ public FinancialInstrumentAttributes48 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -326,7 +337,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -339,7 +350,7 @@ public FinancialInstrumentAttributes48 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -351,7 +362,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setMtrtyDt(XMLGregorianCalendar value) { @@ -364,7 +375,7 @@ public FinancialInstrumentAttributes48 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -376,7 +387,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setIsseDt(XMLGregorianCalendar value) { @@ -389,7 +400,7 @@ public FinancialInstrumentAttributes48 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -401,7 +412,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setNxtCllblDt(XMLGregorianCalendar value) { @@ -414,7 +425,7 @@ public FinancialInstrumentAttributes48 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -426,7 +437,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setPutblDt(XMLGregorianCalendar value) { @@ -439,7 +450,7 @@ public FinancialInstrumentAttributes48 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -451,7 +462,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setDtdDt(XMLGregorianCalendar value) { @@ -464,7 +475,7 @@ public FinancialInstrumentAttributes48 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -476,7 +487,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes48 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes49.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes49.java index c7c0af332..de0fa0fec 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes49.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes49.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes49 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes49 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes49 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes49 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes49 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes49 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes49 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes49 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes49 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes49 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes5.java index 4c8268ab1..7ec82d8cc 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes5 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes5 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes5 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes5 setFltgRateFxgDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes5 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes5 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes5 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes5 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes5 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes5 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes50.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes50.java index 1e0a28f62..a7423bde7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes50.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes50.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes50 { protected ClassificationType2Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes50 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes50 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes50 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes50 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes50 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes50 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes50 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes50 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes50 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes50 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes55.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes55.java index afb80883a..4947b8ad7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes55.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes55.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +63,40 @@ public class FinancialInstrumentAttributes55 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -264,7 +275,7 @@ public FinancialInstrumentAttributes55 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -276,7 +287,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setNxtCpnDt(XMLGregorianCalendar value) { @@ -289,7 +300,7 @@ public FinancialInstrumentAttributes55 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -301,7 +312,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setXpryDt(XMLGregorianCalendar value) { @@ -314,7 +325,7 @@ public FinancialInstrumentAttributes55 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -326,7 +337,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -339,7 +350,7 @@ public FinancialInstrumentAttributes55 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -351,7 +362,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setMtrtyDt(XMLGregorianCalendar value) { @@ -364,7 +375,7 @@ public FinancialInstrumentAttributes55 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -376,7 +387,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setIsseDt(XMLGregorianCalendar value) { @@ -389,7 +400,7 @@ public FinancialInstrumentAttributes55 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -401,7 +412,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setNxtCllblDt(XMLGregorianCalendar value) { @@ -414,7 +425,7 @@ public FinancialInstrumentAttributes55 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -426,7 +437,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setPutblDt(XMLGregorianCalendar value) { @@ -439,7 +450,7 @@ public FinancialInstrumentAttributes55 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -451,7 +462,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setDtdDt(XMLGregorianCalendar value) { @@ -464,7 +475,7 @@ public FinancialInstrumentAttributes55 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -476,7 +487,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes55 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes56.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes56.java index dc02cb001..a5ed19d3d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes56.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes56.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes56 { protected OptionStyle5Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes56 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes56 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes56 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes56 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes56 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes56 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes56 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes56 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes56 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes57.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes57.java index 3615b5a74..ade1eca11 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes57.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes57.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes57 { protected ClassificationType3Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes57 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes57 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes57 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes57 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes57 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes57 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes57 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes57 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes57 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes57 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes6.java index 7a6fc82c2..d04bf1eab 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes6.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes6 { protected ClassificationType2Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes6 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes6 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes6 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes6 setFltgRateFxgDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes6 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes6 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes6 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes6 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes6 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes6 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes65.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes65.java index db1a2c3fe..da71f68d1 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes65.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes65.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; @@ -55,31 +57,40 @@ public class FinancialInstrumentAttributes65 { protected ClassificationType32Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -225,7 +236,7 @@ public FinancialInstrumentAttributes65 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -237,7 +248,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setNxtCpnDt(XMLGregorianCalendar value) { @@ -250,7 +261,7 @@ public FinancialInstrumentAttributes65 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -262,7 +273,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setXpryDt(XMLGregorianCalendar value) { @@ -275,7 +286,7 @@ public FinancialInstrumentAttributes65 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -287,7 +298,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -300,7 +311,7 @@ public FinancialInstrumentAttributes65 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -312,7 +323,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setMtrtyDt(XMLGregorianCalendar value) { @@ -325,7 +336,7 @@ public FinancialInstrumentAttributes65 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -337,7 +348,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setIsseDt(XMLGregorianCalendar value) { @@ -350,7 +361,7 @@ public FinancialInstrumentAttributes65 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -362,7 +373,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setNxtCllblDt(XMLGregorianCalendar value) { @@ -375,7 +386,7 @@ public FinancialInstrumentAttributes65 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -387,7 +398,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setPutblDt(XMLGregorianCalendar value) { @@ -400,7 +411,7 @@ public FinancialInstrumentAttributes65 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -412,7 +423,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setDtdDt(XMLGregorianCalendar value) { @@ -425,7 +436,7 @@ public FinancialInstrumentAttributes65 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -437,7 +448,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes65 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes66.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes66.java index e6adca387..9e3c6931d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes66.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes66.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +61,40 @@ public class FinancialInstrumentAttributes66 { protected OptionStyle8Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -258,7 +269,7 @@ public FinancialInstrumentAttributes66 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -270,7 +281,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setNxtCpnDt(XMLGregorianCalendar value) { @@ -283,7 +294,7 @@ public FinancialInstrumentAttributes66 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -295,7 +306,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setXpryDt(XMLGregorianCalendar value) { @@ -308,7 +319,7 @@ public FinancialInstrumentAttributes66 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -320,7 +331,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -333,7 +344,7 @@ public FinancialInstrumentAttributes66 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -345,7 +356,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setMtrtyDt(XMLGregorianCalendar value) { @@ -358,7 +369,7 @@ public FinancialInstrumentAttributes66 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -370,7 +381,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setIsseDt(XMLGregorianCalendar value) { @@ -383,7 +394,7 @@ public FinancialInstrumentAttributes66 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -395,7 +406,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setNxtCllblDt(XMLGregorianCalendar value) { @@ -408,7 +419,7 @@ public FinancialInstrumentAttributes66 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -420,7 +431,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setPutblDt(XMLGregorianCalendar value) { @@ -433,7 +444,7 @@ public FinancialInstrumentAttributes66 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -445,7 +456,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setDtdDt(XMLGregorianCalendar value) { @@ -458,7 +469,7 @@ public FinancialInstrumentAttributes66 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -470,7 +481,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes66 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes67.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes67.java index c5bdc55ff..c75ec1f75 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes67.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes67.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes67 { protected OptionStyle8Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes67 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes67 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes67 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes67 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes67 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes67 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes67 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes67 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes67 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes69.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes69.java index c0168bd67..ab0271d70 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes69.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes69.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; @@ -55,31 +57,40 @@ public class FinancialInstrumentAttributes69 { protected ClassificationType33Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -225,7 +236,7 @@ public FinancialInstrumentAttributes69 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -237,7 +248,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setNxtCpnDt(XMLGregorianCalendar value) { @@ -250,7 +261,7 @@ public FinancialInstrumentAttributes69 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -262,7 +273,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setXpryDt(XMLGregorianCalendar value) { @@ -275,7 +286,7 @@ public FinancialInstrumentAttributes69 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -287,7 +298,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -300,7 +311,7 @@ public FinancialInstrumentAttributes69 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -312,7 +323,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setMtrtyDt(XMLGregorianCalendar value) { @@ -325,7 +336,7 @@ public FinancialInstrumentAttributes69 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -337,7 +348,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setIsseDt(XMLGregorianCalendar value) { @@ -350,7 +361,7 @@ public FinancialInstrumentAttributes69 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -362,7 +373,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setNxtCllblDt(XMLGregorianCalendar value) { @@ -375,7 +386,7 @@ public FinancialInstrumentAttributes69 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -387,7 +398,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setPutblDt(XMLGregorianCalendar value) { @@ -400,7 +411,7 @@ public FinancialInstrumentAttributes69 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -412,7 +423,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setDtdDt(XMLGregorianCalendar value) { @@ -425,7 +436,7 @@ public FinancialInstrumentAttributes69 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -437,7 +448,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes69 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes7.java index ae08ac165..12c36bdd9 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +62,40 @@ public class FinancialInstrumentAttributes7 { protected OptionStyle4Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -261,7 +272,7 @@ public FinancialInstrumentAttributes7 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -273,7 +284,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setNxtCpnDt(XMLGregorianCalendar value) { @@ -286,7 +297,7 @@ public FinancialInstrumentAttributes7 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -298,7 +309,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setXpryDt(XMLGregorianCalendar value) { @@ -311,7 +322,7 @@ public FinancialInstrumentAttributes7 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -323,7 +334,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -336,7 +347,7 @@ public FinancialInstrumentAttributes7 setFltgRateFxgDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -348,7 +359,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setMtrtyDt(XMLGregorianCalendar value) { @@ -361,7 +372,7 @@ public FinancialInstrumentAttributes7 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -373,7 +384,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setIsseDt(XMLGregorianCalendar value) { @@ -386,7 +397,7 @@ public FinancialInstrumentAttributes7 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -398,7 +409,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setNxtCllblDt(XMLGregorianCalendar value) { @@ -411,7 +422,7 @@ public FinancialInstrumentAttributes7 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -423,7 +434,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setPutblDt(XMLGregorianCalendar value) { @@ -436,7 +447,7 @@ public FinancialInstrumentAttributes7 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -448,7 +459,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setDtdDt(XMLGregorianCalendar value) { @@ -461,7 +472,7 @@ public FinancialInstrumentAttributes7 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -473,7 +484,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes7 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes70.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes70.java index 4ea3e4e32..d5d4a3a63 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes70.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes70.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +61,40 @@ public class FinancialInstrumentAttributes70 { protected OptionStyle9Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -258,7 +269,7 @@ public FinancialInstrumentAttributes70 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -270,7 +281,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setNxtCpnDt(XMLGregorianCalendar value) { @@ -283,7 +294,7 @@ public FinancialInstrumentAttributes70 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -295,7 +306,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setXpryDt(XMLGregorianCalendar value) { @@ -308,7 +319,7 @@ public FinancialInstrumentAttributes70 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -320,7 +331,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -333,7 +344,7 @@ public FinancialInstrumentAttributes70 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -345,7 +356,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setMtrtyDt(XMLGregorianCalendar value) { @@ -358,7 +369,7 @@ public FinancialInstrumentAttributes70 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -370,7 +381,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setIsseDt(XMLGregorianCalendar value) { @@ -383,7 +394,7 @@ public FinancialInstrumentAttributes70 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -395,7 +406,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setNxtCllblDt(XMLGregorianCalendar value) { @@ -408,7 +419,7 @@ public FinancialInstrumentAttributes70 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -420,7 +431,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setPutblDt(XMLGregorianCalendar value) { @@ -433,7 +444,7 @@ public FinancialInstrumentAttributes70 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -445,7 +456,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setDtdDt(XMLGregorianCalendar value) { @@ -458,7 +469,7 @@ public FinancialInstrumentAttributes70 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -470,7 +481,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes70 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes71.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes71.java index 113907089..056603a52 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes71.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes71.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes71 { protected OptionStyle9Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes71 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes71 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes71 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes71 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes71 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes71 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes71 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes71 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes71 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes79.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes79.java index 831ed14d3..74bd15b5a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes79.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes79.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +61,40 @@ public class FinancialInstrumentAttributes79 { protected OptionStyle8Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -258,7 +269,7 @@ public FinancialInstrumentAttributes79 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -270,7 +281,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setNxtCpnDt(XMLGregorianCalendar value) { @@ -283,7 +294,7 @@ public FinancialInstrumentAttributes79 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -295,7 +306,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setXpryDt(XMLGregorianCalendar value) { @@ -308,7 +319,7 @@ public FinancialInstrumentAttributes79 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -320,7 +331,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -333,7 +344,7 @@ public FinancialInstrumentAttributes79 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -345,7 +356,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setMtrtyDt(XMLGregorianCalendar value) { @@ -358,7 +369,7 @@ public FinancialInstrumentAttributes79 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -370,7 +381,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setIsseDt(XMLGregorianCalendar value) { @@ -383,7 +394,7 @@ public FinancialInstrumentAttributes79 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -395,7 +406,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setNxtCllblDt(XMLGregorianCalendar value) { @@ -408,7 +419,7 @@ public FinancialInstrumentAttributes79 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -420,7 +431,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setPutblDt(XMLGregorianCalendar value) { @@ -433,7 +444,7 @@ public FinancialInstrumentAttributes79 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -445,7 +456,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setDtdDt(XMLGregorianCalendar value) { @@ -458,7 +469,7 @@ public FinancialInstrumentAttributes79 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -470,7 +481,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes79 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes80.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes80.java index 0818b60c7..945481053 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes80.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes80.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes80 { protected OptionStyle8Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes80 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes80 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes80 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes80 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes80 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes80 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes80 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes80 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes80 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes81.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes81.java index cb6e70c4e..5e318d573 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes81.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes81.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; @@ -55,31 +57,40 @@ public class FinancialInstrumentAttributes81 { protected ClassificationType32Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -225,7 +236,7 @@ public FinancialInstrumentAttributes81 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -237,7 +248,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setNxtCpnDt(XMLGregorianCalendar value) { @@ -250,7 +261,7 @@ public FinancialInstrumentAttributes81 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -262,7 +273,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setXpryDt(XMLGregorianCalendar value) { @@ -275,7 +286,7 @@ public FinancialInstrumentAttributes81 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -287,7 +298,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -300,7 +311,7 @@ public FinancialInstrumentAttributes81 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -312,7 +323,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setMtrtyDt(XMLGregorianCalendar value) { @@ -325,7 +336,7 @@ public FinancialInstrumentAttributes81 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -337,7 +348,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setIsseDt(XMLGregorianCalendar value) { @@ -350,7 +361,7 @@ public FinancialInstrumentAttributes81 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -362,7 +373,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setNxtCllblDt(XMLGregorianCalendar value) { @@ -375,7 +386,7 @@ public FinancialInstrumentAttributes81 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -387,7 +398,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setPutblDt(XMLGregorianCalendar value) { @@ -400,7 +411,7 @@ public FinancialInstrumentAttributes81 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -412,7 +423,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setDtdDt(XMLGregorianCalendar value) { @@ -425,7 +436,7 @@ public FinancialInstrumentAttributes81 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -437,7 +448,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes81 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes83.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes83.java index 9d1fbae4e..43e0245c6 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes83.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes83.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,28 +61,36 @@ public class FinancialInstrumentAttributes83 { protected OptionStyle9Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -257,7 +267,7 @@ public FinancialInstrumentAttributes83 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -269,7 +279,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setNxtCpnDt(XMLGregorianCalendar value) { @@ -282,7 +292,7 @@ public FinancialInstrumentAttributes83 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -294,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -307,7 +317,7 @@ public FinancialInstrumentAttributes83 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -319,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setMtrtyDt(XMLGregorianCalendar value) { @@ -332,7 +342,7 @@ public FinancialInstrumentAttributes83 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -344,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setIsseDt(XMLGregorianCalendar value) { @@ -357,7 +367,7 @@ public FinancialInstrumentAttributes83 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -369,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setNxtCllblDt(XMLGregorianCalendar value) { @@ -382,7 +392,7 @@ public FinancialInstrumentAttributes83 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -394,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setPutblDt(XMLGregorianCalendar value) { @@ -407,7 +417,7 @@ public FinancialInstrumentAttributes83 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -419,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setDtdDt(XMLGregorianCalendar value) { @@ -432,7 +442,7 @@ public FinancialInstrumentAttributes83 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -444,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes83 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes84.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes84.java index 3201bc793..717b4b7ae 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes84.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes84.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; @@ -55,31 +57,40 @@ public class FinancialInstrumentAttributes84 { protected ClassificationType33Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -225,7 +236,7 @@ public FinancialInstrumentAttributes84 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -237,7 +248,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setNxtCpnDt(XMLGregorianCalendar value) { @@ -250,7 +261,7 @@ public FinancialInstrumentAttributes84 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -262,7 +273,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setXpryDt(XMLGregorianCalendar value) { @@ -275,7 +286,7 @@ public FinancialInstrumentAttributes84 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -287,7 +298,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -300,7 +311,7 @@ public FinancialInstrumentAttributes84 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -312,7 +323,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setMtrtyDt(XMLGregorianCalendar value) { @@ -325,7 +336,7 @@ public FinancialInstrumentAttributes84 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -337,7 +348,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setIsseDt(XMLGregorianCalendar value) { @@ -350,7 +361,7 @@ public FinancialInstrumentAttributes84 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -362,7 +373,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setNxtCllblDt(XMLGregorianCalendar value) { @@ -375,7 +386,7 @@ public FinancialInstrumentAttributes84 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -387,7 +398,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setPutblDt(XMLGregorianCalendar value) { @@ -400,7 +411,7 @@ public FinancialInstrumentAttributes84 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -412,7 +423,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setDtdDt(XMLGregorianCalendar value) { @@ -425,7 +436,7 @@ public FinancialInstrumentAttributes84 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -437,7 +448,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes84 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes85.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes85.java index b5c562203..9d211d382 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes85.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes85.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +61,40 @@ public class FinancialInstrumentAttributes85 { protected OptionStyle9Choice optnStyle; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "IntrstRate") @@ -258,7 +269,7 @@ public FinancialInstrumentAttributes85 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -270,7 +281,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setNxtCpnDt(XMLGregorianCalendar value) { @@ -283,7 +294,7 @@ public FinancialInstrumentAttributes85 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -295,7 +306,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setXpryDt(XMLGregorianCalendar value) { @@ -308,7 +319,7 @@ public FinancialInstrumentAttributes85 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -320,7 +331,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -333,7 +344,7 @@ public FinancialInstrumentAttributes85 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -345,7 +356,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setMtrtyDt(XMLGregorianCalendar value) { @@ -358,7 +369,7 @@ public FinancialInstrumentAttributes85 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -370,7 +381,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setIsseDt(XMLGregorianCalendar value) { @@ -383,7 +394,7 @@ public FinancialInstrumentAttributes85 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -395,7 +406,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setNxtCllblDt(XMLGregorianCalendar value) { @@ -408,7 +419,7 @@ public FinancialInstrumentAttributes85 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -420,7 +431,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setPutblDt(XMLGregorianCalendar value) { @@ -433,7 +444,7 @@ public FinancialInstrumentAttributes85 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -445,7 +456,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setDtdDt(XMLGregorianCalendar value) { @@ -458,7 +469,7 @@ public FinancialInstrumentAttributes85 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -470,7 +481,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes85 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes9.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes9.java index 9b684395c..0d662223f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes9.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes9.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; @@ -57,31 +59,40 @@ public class FinancialInstrumentAttributes9 { protected ClassificationType3Choice clssfctnTp; @XmlElement(name = "DnmtnCcy") protected String dnmtnCcy; - @XmlElement(name = "NxtCpnDt") + @XmlElement(name = "NxtCpnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtCpnDt; - @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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; @XmlElement(name = "PrvsFctr") @@ -231,7 +242,7 @@ public FinancialInstrumentAttributes9 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCpnDt() { @@ -243,7 +254,7 @@ public XMLGregorianCalendar getNxtCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setNxtCpnDt(XMLGregorianCalendar value) { @@ -256,7 +267,7 @@ public FinancialInstrumentAttributes9 setNxtCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -268,7 +279,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setXpryDt(XMLGregorianCalendar value) { @@ -281,7 +292,7 @@ public FinancialInstrumentAttributes9 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -293,7 +304,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -306,7 +317,7 @@ public FinancialInstrumentAttributes9 setFltgRateFxgDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -318,7 +329,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setMtrtyDt(XMLGregorianCalendar value) { @@ -331,7 +342,7 @@ public FinancialInstrumentAttributes9 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -343,7 +354,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setIsseDt(XMLGregorianCalendar value) { @@ -356,7 +367,7 @@ public FinancialInstrumentAttributes9 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -368,7 +379,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setNxtCllblDt(XMLGregorianCalendar value) { @@ -381,7 +392,7 @@ public FinancialInstrumentAttributes9 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -393,7 +404,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setPutblDt(XMLGregorianCalendar value) { @@ -406,7 +417,7 @@ public FinancialInstrumentAttributes9 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -418,7 +429,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setDtdDt(XMLGregorianCalendar value) { @@ -431,7 +442,7 @@ public FinancialInstrumentAttributes9 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -443,7 +454,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes9 setConvsDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GrossDividendRateType5Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GrossDividendRateType5Code.java index 5fa4212a7..487a288b6 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GrossDividendRateType5Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GrossDividendRateType5Code.java @@ -45,7 +45,7 @@ public enum GrossDividendRateType5Code { CAPO, /** - * Distribution rate relating to the full period units, for example Group I units in UK. + * Distribution rate relating to the full period units, for example Group I units in UK. * */ FUPU, @@ -75,7 +75,7 @@ public enum GrossDividendRateType5Code { LTCG, /** - * Distribution rate relating to the part way period units, for example Group II units in UK. + * Distribution rate relating to the part way period units, for example Group II units in UK. * */ PAPU, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance2.java index a66dbbdc0..fb39824f5 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance2.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 HoldingBalance2 { protected SecuritiesEntryType1Code balTp; @XmlElement(name = "SfkpgPlc") protected SafekeepingPlaceFormatChoice sfkpgPlc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "VtngRghtsNb") @@ -123,7 +126,7 @@ public HoldingBalance2 setSfkpgPlc(SafekeepingPlaceFormatChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -135,7 +138,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public HoldingBalance2 setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance3.java index 6f4a87e21..ac2f8c9d6 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldingBalance3 { protected SecuritiesEntryType2Code balTp; @XmlElement(name = "SfkpgPlc") protected SafekeepingPlaceFormatChoice sfkpgPlc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -119,7 +122,7 @@ public HoldingBalance3 setSfkpgPlc(SafekeepingPlaceFormatChoice 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 HoldingBalance3 setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance6.java index 02784d6f4..70901ef08 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldingBalance6 { protected SecuritiesEntryType2Code balTp; @XmlElement(name = "SfkpgPlc") protected SafekeepingPlaceFormatChoice sfkpgPlc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -119,7 +122,7 @@ public HoldingBalance6 setSfkpgPlc(SafekeepingPlaceFormatChoice 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 HoldingBalance6 setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance7.java index f8ea40b2a..726d29a06 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldingBalance7 { protected SecuritiesEntryType2Code balTp; @XmlElement(name = "SfkpgPlc") protected SafekeepingPlaceFormat2Choice sfkpgPlc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -119,7 +122,7 @@ public HoldingBalance7 setSfkpgPlc(SafekeepingPlaceFormat2Choice 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 HoldingBalance7 setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance9.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance9.java index 2fd94ebc6..f90964492 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance9.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldingBalance9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldingBalance9 { protected SecuritiesEntryType2Code balTp; @XmlElement(name = "SfkpgPlc") protected SafekeepingPlaceFormat28Choice sfkpgPlc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @@ -119,7 +122,7 @@ public HoldingBalance9 setSfkpgPlc(SafekeepingPlaceFormat28Choice 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 HoldingBalance9 setDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IncentivePremium1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IncentivePremium1.java index 27baaa3f1..4149dc07f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IncentivePremium1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IncentivePremium1.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,7 +43,8 @@ public class IncentivePremium1 { protected BigDecimal perVote; @XmlElement(name = "PerAttndee") protected Boolean perAttndee; - @XmlElement(name = "PmtDt") + @XmlElement(name = "PmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDt; @@ -175,7 +178,7 @@ public IncentivePremium1 setPerAttndee(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDt() { @@ -187,7 +190,7 @@ public XMLGregorianCalendar getPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IncentivePremium1 setPmtDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption1.java index d460ee361..bd5cc5491 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption1 { protected BalanceFormat1Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption1 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption1 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption2.java index bcc01ab7e..577493610 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption2 { protected BalanceFormat2Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption2 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption2 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption4.java index 08390b23d..75444f3c8 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption4 { protected BalanceFormat1Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption4 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption4 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption5.java index 12a71b1b8..379ebd8ab 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption5 { protected BalanceFormat2Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption5 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption5 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption6.java index f0d6bf2e2..355e6ade3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption6 { protected BalanceFormat5Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption6 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption6 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption7.java index 667c3c591..22868fad0 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstructedCorporateActionOption7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InstructedCorporateActionOption7 { protected BalanceFormat7Choice instdBal; @XmlElement(name = "DfltActn") protected DefaultProcessingOrStandingInstruction1Choice dfltActn; - @XmlElement(name = "DdlnDtTm", required = true) + @XmlElement(name = "DdlnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ddlnDtTm; @XmlElement(name = "DdlnTp", required = true) @@ -149,7 +152,7 @@ public InstructedCorporateActionOption7 setDfltActn(DefaultProcessingOrStandingI * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDdlnDtTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getDdlnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InstructedCorporateActionOption7 setDdlnDtTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction1.java index 0ce01d82a..be7817f74 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instruction1 { @XmlElement(name = "InstrId", required = true) protected String instrId; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -82,7 +85,7 @@ public Instruction1 setInstrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instruction1 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction2.java index 4bb96493f..5394f7b79 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instruction2 { @XmlElement(name = "InstrId", required = true) protected String instrId; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -82,7 +85,7 @@ public Instruction2 setInstrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instruction2 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3.java index 152b46e92..c85d275bf 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instruction3 { @XmlElement(name = "InstrId", required = true) protected String instrId; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -82,7 +85,7 @@ public Instruction3 setInstrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instruction3 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction4.java index 91f70f9e2..324644fe2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instruction4 { @XmlElement(name = "SnglInstrId", required = true) protected String snglInstrId; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -82,7 +85,7 @@ public Instruction4 setSnglInstrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instruction4 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5.java index b96ac0608..b5db798f8 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instruction5 { @XmlElement(name = "SnglInstrId", required = true) protected String snglInstrId; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -82,7 +85,7 @@ public Instruction5 setSnglInstrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instruction5 setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntermediateSecurityDistributionType5Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntermediateSecurityDistributionType5Code.java index 529ab848c..7e867c0c3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntermediateSecurityDistributionType5Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntermediateSecurityDistributionType5Code.java @@ -99,7 +99,7 @@ public enum IntermediateSecurityDistributionType5Code { LIQU, /** - * A distribution of subsidiary stock to the shareholders. + * A distribution of subsidiary stock to the shareholders * */ SOFF, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Meeting1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Meeting1.java index b1511a04a..054774b5b 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Meeting1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Meeting1.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; @@ -33,7 +35,8 @@ }) public class Meeting1 { - @XmlElement(name = "DtAndTm", required = true) + @XmlElement(name = "DtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dtAndTm; @XmlElement(name = "DtSts", required = true) @@ -53,7 +56,7 @@ public class Meeting1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtAndTm() { @@ -65,7 +68,7 @@ public XMLGregorianCalendar getDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Meeting1 setDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice1.java index 880454708..b58686dbf 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice1.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; @@ -57,28 +60,34 @@ public class MeetingNotice1 { @XmlElement(name = "Tp", required = true) @XmlSchemaType(name = "string") protected MeetingType1Code tp; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "AttndncReqrd") protected Boolean attndncReqrd; @XmlElement(name = "AttndncConfInf") protected String attndncConfInf; - @XmlElement(name = "AttndncConfDdln") + @XmlElement(name = "AttndncConfDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar attndncConfDdln; - @XmlElement(name = "AttndncConfElctrncDdln") + @XmlElement(name = "AttndncConfElctrncDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar attndncConfElctrncDdln; - @XmlElement(name = "AttndncConfMktDdln") + @XmlElement(name = "AttndncConfMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar attndncConfMktDdln; @XmlElement(name = "AddtlDcmnttnURLAdr") protected String addtlDcmnttnURLAdr; - @XmlElement(name = "RsltnPrpslDdln") + @XmlElement(name = "RsltnPrpslDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rsltnPrpslDdln; - @XmlElement(name = "RsltnPrpslMktDdln") + @XmlElement(name = "RsltnPrpslMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rsltnPrpslMktDdln; @XmlElement(name = "PrxyAppntmntNtfctnAdr") @@ -89,7 +98,8 @@ public class MeetingNotice1 { protected BigDecimal ttlNbOfVtngRghts; @XmlElement(name = "CtctPrsnDtls") protected List ctctPrsnDtls; - @XmlElement(name = "RsltPblctnDt") + @XmlElement(name = "RsltPblctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rsltPblctnDt; @XmlElement(name = "InittdByHldr") @@ -186,7 +196,7 @@ public MeetingNotice1 setTp(MeetingType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -198,7 +208,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setAnncmntDt(XMLGregorianCalendar value) { @@ -261,7 +271,7 @@ public MeetingNotice1 setAttndncConfInf(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAttndncConfDdln() { @@ -273,7 +283,7 @@ public XMLGregorianCalendar getAttndncConfDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setAttndncConfDdln(XMLGregorianCalendar value) { @@ -286,7 +296,7 @@ public MeetingNotice1 setAttndncConfDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAttndncConfElctrncDdln() { @@ -298,7 +308,7 @@ public XMLGregorianCalendar getAttndncConfElctrncDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setAttndncConfElctrncDdln(XMLGregorianCalendar value) { @@ -311,7 +321,7 @@ public MeetingNotice1 setAttndncConfElctrncDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAttndncConfMktDdln() { @@ -323,7 +333,7 @@ public XMLGregorianCalendar getAttndncConfMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setAttndncConfMktDdln(XMLGregorianCalendar value) { @@ -361,7 +371,7 @@ public MeetingNotice1 setAddtlDcmnttnURLAdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRsltnPrpslDdln() { @@ -373,7 +383,7 @@ public XMLGregorianCalendar getRsltnPrpslDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setRsltnPrpslDdln(XMLGregorianCalendar value) { @@ -386,7 +396,7 @@ public MeetingNotice1 setRsltnPrpslDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRsltnPrpslMktDdln() { @@ -398,7 +408,7 @@ public XMLGregorianCalendar getRsltnPrpslMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setRsltnPrpslMktDdln(XMLGregorianCalendar value) { @@ -515,7 +525,7 @@ public List getCtctPrsnDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRsltPblctnDt() { @@ -527,7 +537,7 @@ public XMLGregorianCalendar getRsltPblctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice1 setRsltPblctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice2.java index eac22465e..e6fc620b2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice2.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 MeetingNotice2 { protected MeetingTypeClassification1Code clssfctn; @XmlElement(name = "XtndedClssfctn") protected String xtndedClssfctn; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "AttndncReqrd") @@ -231,7 +234,7 @@ public MeetingNotice2 setXtndedClssfctn(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -243,7 +246,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice2 setAnncmntDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice3.java index 52a56023a..d822447cf 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice3.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 MeetingNotice3 { protected MeetingType2Code tp; @XmlElement(name = "Clssfctn") protected MeetingTypeClassification1Choice clssfctn; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "AttndncReqrd") @@ -189,7 +192,7 @@ public MeetingNotice3 setClssfctn(MeetingTypeClassification1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -201,7 +204,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice3 setAnncmntDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice4.java index 2dcae3fe5..18a9b1fa5 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice4.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 MeetingNotice4 { protected MeetingType3Code tp; @XmlElement(name = "Clssfctn") protected MeetingTypeClassification1Choice clssfctn; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "AttndncReqrd") @@ -189,7 +192,7 @@ public MeetingNotice4 setClssfctn(MeetingTypeClassification1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -201,7 +204,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice4 setAnncmntDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice5.java index be56417cd..436da2e90 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice5.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; @@ -57,7 +60,8 @@ public class MeetingNotice5 { protected MeetingType4Code tp; @XmlElement(name = "Clssfctn") protected MeetingTypeClassification2Choice clssfctn; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "Prtcptn") @@ -80,7 +84,8 @@ public class MeetingNotice5 { protected List ctctPrsnDtls; @XmlElement(name = "RsltPblctnDt") protected DateFormat3Choice rsltPblctnDt; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; @XmlElement(name = "EntitlmntFxgDt") @@ -199,7 +204,7 @@ public MeetingNotice5 setClssfctn(MeetingTypeClassification2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -211,7 +216,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice5 setAnncmntDt(XMLGregorianCalendar value) { @@ -490,7 +495,7 @@ public MeetingNotice5 setRsltPblctnDt(DateFormat3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -502,7 +507,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice5 setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice6.java index eee3a63d8..a67e197d2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingNotice6.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; @@ -80,7 +82,8 @@ public class MeetingNotice6 { protected List ctctPrsnDtls; @XmlElement(name = "RsltPblctnDt") protected DateFormat3Choice rsltPblctnDt; - @XmlElement(name = "SctiesBlckgPrdEndDt") + @XmlElement(name = "SctiesBlckgPrdEndDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar sctiesBlckgPrdEndDt; @XmlElement(name = "EntitlmntFxgDt") @@ -511,7 +514,7 @@ public MeetingNotice6 setRsltPblctnDt(DateFormat3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { @@ -523,7 +526,7 @@ public XMLGregorianCalendar getSctiesBlckgPrdEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingNotice6 setSctiesBlckgPrdEndDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference1.java index 0711775c9..68903b064 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference1 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -99,7 +102,7 @@ public MeetingReference1 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -111,7 +114,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference1 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference10.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference10.java index 43b7f58c3..1da9e6a3a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference10.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference10.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference10 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -105,7 +108,7 @@ public MeetingReference10 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -117,7 +120,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference10 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference2.java index 9879aa505..6cc96d335 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference2 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm") + @XmlElement(name = "MtgDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp") @@ -106,7 +109,7 @@ public MeetingReference2 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference2 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference3.java index 69fefdb50..85eb4c5b2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference3 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -106,7 +109,7 @@ public MeetingReference3 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference3 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference4.java index e5c303d99..672cd1435 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference4 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -102,7 +105,7 @@ public MeetingReference4 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference4 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference5.java index 9c46a1baf..01e8c004e 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference5 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm") + @XmlElement(name = "MtgDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp") @@ -102,7 +105,7 @@ public MeetingReference5 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference5 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference6.java index 3f4e6cc6d..e7b225ab8 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference6 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm") + @XmlElement(name = "MtgDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp") @@ -102,7 +105,7 @@ public MeetingReference6 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference6 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference7.java index 75ab64361..81629b290 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference7 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -102,7 +105,7 @@ public MeetingReference7 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference7 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference8.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference8.java index e16efffc2..831cbabfb 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference8.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference8 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm", required = true) + @XmlElement(name = "MtgDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -105,7 +108,7 @@ public MeetingReference8 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -117,7 +120,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference8 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference9.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference9.java index 54fc2861d..c887f49fe 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference9.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MeetingReference9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MeetingReference9 { protected String mtgId; @XmlElement(name = "IssrMtgId") protected String issrMtgId; - @XmlElement(name = "MtgDtAndTm") + @XmlElement(name = "MtgDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtgDtAndTm; @XmlElement(name = "Tp", required = true) @@ -105,7 +108,7 @@ public MeetingReference9 setIssrMtgId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtgDtAndTm() { @@ -117,7 +120,7 @@ public XMLGregorianCalendar getMtgDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MeetingReference9 setMtgDtAndTm(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails1.java index 6f4f527c2..6faa4e9cf 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails1 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity1Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails1 setInstrQty(FinancialInstrumentQuantity1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails1 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails1 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails1 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails1 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails1 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails2.java index d358c67da..3eb66637d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails2 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity15Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails2 setInstrQty(FinancialInstrumentQuantity15Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails2 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails2 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails2 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails2 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails2 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails3.java index 8aedd2ff6..799af9d5a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails3 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity1Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails3 setInstrQty(FinancialInstrumentQuantity1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails3 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails3 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails3 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails3 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails3 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails4.java index 939e2570a..beac395cb 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails4 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity15Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails4 setInstrQty(FinancialInstrumentQuantity15Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails4 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails4 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails4 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails4 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails4 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails5.java index fce4354bb..202137689 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails5 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity1Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails5 setInstrQty(FinancialInstrumentQuantity1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails5 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails5 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails5 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails5 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails5 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails6.java index 55d5f6272..a42205626 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionInstructionDetails6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +47,16 @@ public class OptionInstructionDetails6 { protected ProtectTransactionType2Code prtctInd; @XmlElement(name = "InstrQty", required = true) protected FinancialInstrumentQuantity15Choice instrQty; - @XmlElement(name = "InstrDt", required = true) + @XmlElement(name = "InstrDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar instrDt; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "BidPric") @@ -170,7 +175,7 @@ public OptionInstructionDetails6 setInstrQty(FinancialInstrumentQuantity15Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getInstrDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getInstrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails6 setInstrDt(XMLGregorianCalendar value) { @@ -195,7 +200,7 @@ public OptionInstructionDetails6 setInstrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -207,7 +212,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails6 setPrtctDt(XMLGregorianCalendar value) { @@ -220,7 +225,7 @@ public OptionInstructionDetails6 setPrtctDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -232,7 +237,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionInstructionDetails6 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation1.java index 1f5dd5113..a8b52ac09 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation1.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 Participation1 { protected BigDecimal pctgOfVtngRghts; @XmlElement(name = "TtlNbOfSctiesOutsdng") protected CurrencyAndAmount ttlNbOfSctiesOutsdng; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -119,7 +122,7 @@ public Participation1 setTtlNbOfSctiesOutsdng(CurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Participation1 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation2.java index 1d81413f3..91f43144d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation2.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 Participation2 { protected BigDecimal pctgOfVtngRghts; @XmlElement(name = "TtlNbOfSctiesOutsdng") protected CurrencyAndAmount ttlNbOfSctiesOutsdng; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -119,7 +122,7 @@ public Participation2 setTtlNbOfSctiesOutsdng(CurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Participation2 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation3.java index 8e3c810fa..bed532d11 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation3.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 Participation3 { protected BigDecimal pctgOfVtngRghts; @XmlElement(name = "TtlNbOfSctiesOutsdng") protected ActiveCurrencyAndAmount ttlNbOfSctiesOutsdng; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -119,7 +122,7 @@ public Participation3 setTtlNbOfSctiesOutsdng(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Participation3 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation4.java index 7be9ecfbc..3aabe597c 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation4.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 Participation4 { protected BigDecimal pctgOfVtngRghts; @XmlElement(name = "TtlNbOfSctiesOutsdng") protected UnitOrFaceAmount1Choice ttlNbOfSctiesOutsdng; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -119,7 +122,7 @@ public Participation4 setTtlNbOfSctiesOutsdng(UnitOrFaceAmount1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Participation4 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation5.java index ee1336e20..b872cefed 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Participation5.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 Participation5 { protected BigDecimal pctgOfVtngRghts; @XmlElement(name = "TtlNbOfSctiesOutsdng") protected FinancialInstrumentQuantity18Choice ttlNbOfSctiesOutsdng; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -119,7 +122,7 @@ public Participation5 setTtlNbOfSctiesOutsdng(FinancialInstrumentQuantity18Choic * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Participation5 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAdditionalIdentification2Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAdditionalIdentification2Choice.java index 3468f4efb..4159faa19 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAdditionalIdentification2Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyAdditionalIdentification2Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PartyAdditionalIdentification2Choice { - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "RegnId") @@ -37,7 +40,7 @@ public class PartyAdditionalIdentification2Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -49,7 +52,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PartyAdditionalIdentification2Choice setBirthDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification214.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification214.java index 48d70a11b..bc5aac093 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification214.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification214.java @@ -12,7 +12,7 @@ /** - * Java class for PartyIdentification214 complex type. + * Identification of a party. * * * diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction1.java index 62f6e2988..26f9fd63f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction1 { protected String txId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @@ -119,7 +122,7 @@ public ProtectInstruction1 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction1 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction2.java index 627fea882..79e96f090 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction2 { protected String txId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "UcvrdPrtctQty") @@ -151,7 +154,7 @@ public ProtectInstruction2 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -163,7 +166,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction2 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction3.java index b2c48bb7f..3164a420f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction3 { protected ProtectTransactionType3Code txTp; @XmlElement(name = "TxId") protected String txId; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @@ -91,7 +94,7 @@ public ProtectInstruction3 setTxId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -103,7 +106,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction3 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction4.java index 5726ead68..b09d8d0a3 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction4 { protected ProtectInstructionStatus4Code prtctTxSts; @XmlElement(name = "TxId") protected String txId; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "UcvrdPrtctQty") @@ -123,7 +126,7 @@ public ProtectInstruction4 setTxId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -135,7 +138,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction4 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction5.java index 56edff697..ddce6b0fb 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction5 { protected String txId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @@ -119,7 +122,7 @@ public ProtectInstruction5 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction5 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction6.java index 13500b5a8..aa1898961 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction6 { protected String txId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "UcvrdPrtctQty") @@ -151,7 +154,7 @@ public ProtectInstruction6 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -163,7 +166,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction6 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction7.java index be8e273f6..592cb8720 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction7 { protected ProtectTransactionType3Code txTp; @XmlElement(name = "TxId") protected String txId; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @@ -91,7 +94,7 @@ public ProtectInstruction7 setTxId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -103,7 +106,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction7 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction8.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction8.java index 2f848e593..f8ce07d63 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction8.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProtectInstruction8.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ProtectInstruction8 { protected ProtectInstructionStatus4Code prtctTxSts; @XmlElement(name = "TxId") protected String txId; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "UcvrdPrtctQty") @@ -123,7 +126,7 @@ public ProtectInstruction8 setTxId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -135,7 +138,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProtectInstruction8 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyParameters.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyParameters.java index d50092d3c..7d5a983e7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyParameters.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyParameters.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +37,16 @@ public class ProxyParameters { protected List authrsdPrxy; @XmlElement(name = "PrxyAppntmntInf") protected String prxyAppntmntInf; - @XmlElement(name = "PrxyAppntmntDdln") + @XmlElement(name = "PrxyAppntmntDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prxyAppntmntDdln; - @XmlElement(name = "PrxyAppntmntElctrncDdln") + @XmlElement(name = "PrxyAppntmntElctrncDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prxyAppntmntElctrncDdln; - @XmlElement(name = "PrxyAppntmntMktDdln") + @XmlElement(name = "PrxyAppntmntMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prxyAppntmntMktDdln; @@ -104,7 +109,7 @@ public ProxyParameters setPrxyAppntmntInf(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrxyAppntmntDdln() { @@ -116,7 +121,7 @@ public XMLGregorianCalendar getPrxyAppntmntDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProxyParameters setPrxyAppntmntDdln(XMLGregorianCalendar value) { @@ -129,7 +134,7 @@ public ProxyParameters setPrxyAppntmntDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrxyAppntmntElctrncDdln() { @@ -141,7 +146,7 @@ public XMLGregorianCalendar getPrxyAppntmntElctrncDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProxyParameters setPrxyAppntmntElctrncDdln(XMLGregorianCalendar value) { @@ -154,7 +159,7 @@ public ProxyParameters setPrxyAppntmntElctrncDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrxyAppntmntMktDdln() { @@ -166,7 +171,7 @@ public XMLGregorianCalendar getPrxyAppntmntMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ProxyParameters setPrxyAppntmntMktDdln(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyType2Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyType2Code.java index b9499b807..f77610c41 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyType2Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProxyType2Code.java @@ -33,7 +33,7 @@ public enum ProxyType2Code { CHRM, /** - * Any type of proxy is allowed + * Any type of proxy is allowed. * */ DISC, diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat37Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat37Choice.java index 79f3b7e3e..fb320eea8 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat37Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat37Choice.java @@ -14,7 +14,7 @@ /** - * Choice of format between a rate, an amount or an unspecified rate. + * Choice of format between a rate, an amount or a unspecified rate. * * * diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat39Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat39Choice.java deleted file mode 100644 index f77b14be0..000000000 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAndAmountFormat39Choice.java +++ /dev/null @@ -1,98 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import java.math.BigDecimal; -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; - - -/** - * Choice of format between rate and amount. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RateAndAmountFormat39Choice", propOrder = { - "rate", - "amt" -}) -public class RateAndAmountFormat39Choice { - - @XmlElement(name = "Rate") - protected BigDecimal rate; - @XmlElement(name = "Amt") - protected ActiveCurrencyAnd13DecimalAmount amt; - - /** - * Gets the value of the rate property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRate() { - return rate; - } - - /** - * Sets the value of the rate property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public RateAndAmountFormat39Choice setRate(BigDecimal value) { - this.rate = value; - return this; - } - - /** - * Gets the value of the amt property. - * - * @return - * possible object is - * {@link ActiveCurrencyAnd13DecimalAmount } - * - */ - public ActiveCurrencyAnd13DecimalAmount getAmt() { - return amt; - } - - /** - * Sets the value of the amt property. - * - * @param value - * allowed object is - * {@link ActiveCurrencyAnd13DecimalAmount } - * - */ - public RateAndAmountFormat39Choice setAmt(ActiveCurrencyAnd13DecimalAmount value) { - this.amt = 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-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestInformation.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestInformation.java index 1f1d724cc..6fdd4d9e5 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestInformation.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestInformation.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; @@ -30,7 +32,8 @@ public class RequestInformation { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "QtyOfScty") @@ -66,7 +69,7 @@ public RequestInformation setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RequestInformation setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestShareHeldDate1Choice.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestShareHeldDate1Choice.java index de8d64d8e..122ac1af2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestShareHeldDate1Choice.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestShareHeldDate1Choice.java @@ -13,7 +13,7 @@ /** - * Java class for RequestShareHeldDate1Choice complex type. + * Choice between different ways of specifying the method to determine as from when shares have been held by an investor. * * * diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SafekeepingAccountIdentification1Code.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SafekeepingAccountIdentification1Code.java index 8ed862078..dc7b34eb2 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SafekeepingAccountIdentification1Code.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SafekeepingAccountIdentification1Code.java @@ -25,7 +25,7 @@ public enum SafekeepingAccountIdentification1Code { /** - * Announcement applies to all safekeeping accounts that own underlying financial instrument. (Used for general or preliminary announcements.). + * Announcement applies to all safekeeping accounts that own underlying financial instrument. (Used for general or preliminary announcements.) * */ GENR; diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxVoucher1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxVoucher1.java index 1f49054fe..6e18aef4a 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxVoucher1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxVoucher1.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; @@ -76,10 +78,12 @@ public class TaxVoucher1 { protected ActiveCurrencyAndAmount ntnlTax; @XmlElement(name = "NtnlDvddPybl") protected ActiveCurrencyAndAmount ntnlDvddPybl; - @XmlElement(name = "BrgnDt") + @XmlElement(name = "BrgnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar brgnDt; - @XmlElement(name = "BrgnSttlmDt") + @XmlElement(name = "BrgnSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar brgnSttlmDt; @XmlElement(name = "StmpDtyAmt") @@ -471,7 +475,7 @@ public TaxVoucher1 setNtnlDvddPybl(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBrgnDt() { @@ -483,7 +487,7 @@ public XMLGregorianCalendar getBrgnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TaxVoucher1 setBrgnDt(XMLGregorianCalendar value) { @@ -496,7 +500,7 @@ public TaxVoucher1 setBrgnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBrgnSttlmDt() { @@ -508,7 +512,7 @@ public XMLGregorianCalendar getBrgnSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TaxVoucher1 setBrgnSttlmDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation1.java index c89c550f3..e8fb4a33f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation1 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation1 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation1 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation10.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation10.java index 38ed69d17..cc6841a92 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation10.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation10.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation10 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation10 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation10 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation11.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation11.java index 7a8ef8db7..17f4c9268 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation11.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation11 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -95,7 +98,7 @@ public UpdatedAdditionalInformation11 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -107,7 +110,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation11 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation12.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation12.java index 65f59eccb..971e766f7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation12.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation12.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation12 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -93,7 +96,7 @@ public UpdatedAdditionalInformation12 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation12 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation13.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation13.java index 107d206de..b0aaa9518 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation13.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation13.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation13 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -95,7 +98,7 @@ public UpdatedAdditionalInformation13 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -107,7 +110,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation13 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation14.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation14.java index da5914079..f425a7400 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation14.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation14.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation14 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -93,7 +96,7 @@ public UpdatedAdditionalInformation14 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation14 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation15.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation15.java index 3fdc11f29..043000080 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation15.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation15 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -95,7 +98,7 @@ public UpdatedAdditionalInformation15 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -107,7 +110,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation15 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation16.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation16.java index 1e98f6af6..8b9b6cc42 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation16.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation16.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation16 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -95,7 +98,7 @@ public UpdatedAdditionalInformation16 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -107,7 +110,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation16 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation2.java index 016c209b7..f5aced494 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation2 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation2 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation2 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation3.java index 17b8d21d6..d87ce0a3d 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation3 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -65,7 +68,7 @@ public UpdatedAdditionalInformation3 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation3 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation4.java index 79d8ab6f1..e94b95a39 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation4 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation4 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation4 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation5.java index 137db3b49..23918926e 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation5 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation5 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation5 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation6.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation6.java index 4593aed86..347996a29 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation6.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation6 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -65,7 +68,7 @@ public UpdatedAdditionalInformation6 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation6 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation7.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation7.java index 4340ac665..2f935955f 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation7.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation7 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation7 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation7 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation8.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation8.java index 7651df8f6..b5ec07ec7 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation8.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedAdditionalInformation8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedAdditionalInformation8 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "AddtlInf", required = true) @@ -67,7 +70,7 @@ public UpdatedAdditionalInformation8 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedAdditionalInformation8 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation.java index 227b1534c..439ce55e0 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -65,7 +68,7 @@ public UpdatedURLlnformation setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation1.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation1.java index 9e97b3daf..89d0f6af0 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation1.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation1 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -65,7 +68,7 @@ public UpdatedURLlnformation1 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation1 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation2.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation2.java index d3658fbfb..f86f07141 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation2.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation2 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -65,7 +68,7 @@ public UpdatedURLlnformation2 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation2 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation3.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation3.java index 60002dd71..e2ed9bc93 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation3.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation3 { @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -65,7 +68,7 @@ public UpdatedURLlnformation3 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation3 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation4.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation4.java index bb4a65108..92f09dd78 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation4.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation4 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -93,7 +96,7 @@ public UpdatedURLlnformation4 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation4 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation5.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation5.java index 899b268a4..f8a01c054 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation5.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdatedURLlnformation5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UpdatedURLlnformation5 { protected String lang; @XmlElement(name = "UpdDesc") protected String updDesc; - @XmlElement(name = "UpdDt") + @XmlElement(name = "UpdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar updDt; @XmlElement(name = "URLAdr", required = true) @@ -93,7 +96,7 @@ public UpdatedURLlnformation5 setUpdDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getUpdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UpdatedURLlnformation5 setUpdDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteInstruction.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteInstruction.java index ddb8c712c..45bf36902 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteInstruction.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteInstruction.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 VoteInstruction { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "VoteExctnConf") @@ -71,7 +74,7 @@ public VoteInstruction setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteInstruction setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteParameters.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteParameters.java index 742017d46..687a6c220 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteParameters.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VoteParameters.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,13 +51,16 @@ public class VoteParameters { protected Boolean prtlVoteAllwd; @XmlElement(name = "SpltVoteAllwd") protected Boolean spltVoteAllwd; - @XmlElement(name = "VoteDdln") + @XmlElement(name = "VoteDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteDdln; - @XmlElement(name = "VoteElctrncDdln") + @XmlElement(name = "VoteElctrncDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteElctrncDdln; - @XmlElement(name = "VoteMktDdln") + @XmlElement(name = "VoteMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteMktDdln; @XmlElement(name = "VoteMthds") @@ -73,13 +78,16 @@ public class VoteParameters { @XmlElement(name = "VoteInstrTp") @XmlSchemaType(name = "string") protected List voteInstrTp; - @XmlElement(name = "VoteWthPrmDdln") + @XmlElement(name = "VoteWthPrmDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteWthPrmDdln; - @XmlElement(name = "VoteWthPrmElctrncDdln") + @XmlElement(name = "VoteWthPrmElctrncDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteWthPrmElctrncDdln; - @XmlElement(name = "VoteWthPrmMktDdln") + @XmlElement(name = "VoteWthPrmMktDdln", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar voteWthPrmMktDdln; @@ -163,7 +171,7 @@ public VoteParameters setSpltVoteAllwd(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteDdln() { @@ -175,7 +183,7 @@ public XMLGregorianCalendar getVoteDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteDdln(XMLGregorianCalendar value) { @@ -188,7 +196,7 @@ public VoteParameters setVoteDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteElctrncDdln() { @@ -200,7 +208,7 @@ public XMLGregorianCalendar getVoteElctrncDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteElctrncDdln(XMLGregorianCalendar value) { @@ -213,7 +221,7 @@ public VoteParameters setVoteElctrncDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteMktDdln() { @@ -225,7 +233,7 @@ public XMLGregorianCalendar getVoteMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteMktDdln(XMLGregorianCalendar value) { @@ -417,7 +425,7 @@ public List getVoteInstrTp() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteWthPrmDdln() { @@ -429,7 +437,7 @@ public XMLGregorianCalendar getVoteWthPrmDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteWthPrmDdln(XMLGregorianCalendar value) { @@ -442,7 +450,7 @@ public VoteParameters setVoteWthPrmDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteWthPrmElctrncDdln() { @@ -454,7 +462,7 @@ public XMLGregorianCalendar getVoteWthPrmElctrncDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteWthPrmElctrncDdln(XMLGregorianCalendar value) { @@ -467,7 +475,7 @@ public VoteParameters setVoteWthPrmElctrncDdln(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVoteWthPrmMktDdln() { @@ -479,7 +487,7 @@ public XMLGregorianCalendar getVoteWthPrmMktDdln() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VoteParameters setVoteWthPrmMktDdln(XMLGregorianCalendar value) { diff --git a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VotingPartyAndInstruction.java b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VotingPartyAndInstruction.java index 3634811dc..74f6e74f0 100644 --- a/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VotingPartyAndInstruction.java +++ b/model-seev-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/VotingPartyAndInstruction.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 VotingPartyAndInstruction { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "ReqdExctnDt") + @XmlElement(name = "ReqdExctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar reqdExctnDt; @XmlElement(name = "PrsnDtl", required = true) @@ -75,7 +78,7 @@ public VotingPartyAndInstruction setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdExctnDt() { @@ -87,7 +90,7 @@ public XMLGregorianCalendar getReqdExctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public VotingPartyAndInstruction setReqdExctnDt(XMLGregorianCalendar value) { diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100101.java index 3e5c30256..b811ad54a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00100101 parse(String xml) { - return ((MxSemt00100101) MxReadImpl.parse(MxSemt00100101 .class, xml, _classes)); + return ((MxSemt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100102.java index c187d2664..c6886929e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00100102 parse(String xml) { - return ((MxSemt00100102) MxReadImpl.parse(MxSemt00100102 .class, xml, _classes)); + return ((MxSemt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100103.java index 3d73792b4..2a0c8d0e0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00100103 parse(String xml) { - return ((MxSemt00100103) MxReadImpl.parse(MxSemt00100103 .class, xml, _classes)); + return ((MxSemt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200101.java index 33ff213cf..f65c77f41 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200101 parse(String xml) { - return ((MxSemt00200101) MxReadImpl.parse(MxSemt00200101 .class, xml, _classes)); + return ((MxSemt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200102.java index 00698e2e8..51a9c691e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200102 parse(String xml) { - return ((MxSemt00200102) MxReadImpl.parse(MxSemt00200102 .class, xml, _classes)); + return ((MxSemt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200103.java index dafc46d46..54089c1bb 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200103 parse(String xml) { - return ((MxSemt00200103) MxReadImpl.parse(MxSemt00200103 .class, xml, _classes)); + return ((MxSemt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200104.java index 8ecb4978b..e99d9a162 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200104 parse(String xml) { - return ((MxSemt00200104) MxReadImpl.parse(MxSemt00200104 .class, xml, _classes)); + return ((MxSemt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200105.java index 73d6121a3..270f89090 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200105 parse(String xml) { - return ((MxSemt00200105) MxReadImpl.parse(MxSemt00200105 .class, xml, _classes)); + return ((MxSemt00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200106.java index e9647ce2e..a2d66ed26 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200106 parse(String xml) { - return ((MxSemt00200106) MxReadImpl.parse(MxSemt00200106 .class, xml, _classes)); + return ((MxSemt00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200107.java index b18e666cf..385ab5ad8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200107 parse(String xml) { - return ((MxSemt00200107) MxReadImpl.parse(MxSemt00200107 .class, xml, _classes)); + return ((MxSemt00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200108.java index bc9b642dc..6a69f3ae2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200108 parse(String xml) { - return ((MxSemt00200108) MxReadImpl.parse(MxSemt00200108 .class, xml, _classes)); + return ((MxSemt00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200109.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200109.java index e424a7c1d..1942faf3a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200109.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200109 parse(String xml) { - return ((MxSemt00200109) MxReadImpl.parse(MxSemt00200109 .class, xml, _classes)); + return ((MxSemt00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200109 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200110.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200110.java index 62886bc9e..3c09ca567 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200110.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200110 parse(String xml) { - return ((MxSemt00200110) MxReadImpl.parse(MxSemt00200110 .class, xml, _classes)); + return ((MxSemt00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200110 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200203.java index d12542f0f..099103210 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200203 parse(String xml) { - return ((MxSemt00200203) MxReadImpl.parse(MxSemt00200203 .class, xml, _classes)); + return ((MxSemt00200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200204.java index b7c77e544..1469f299f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200204 parse(String xml) { - return ((MxSemt00200204) MxReadImpl.parse(MxSemt00200204 .class, xml, _classes)); + return ((MxSemt00200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200205.java index 26d086994..ed87918e5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200205 parse(String xml) { - return ((MxSemt00200205) MxReadImpl.parse(MxSemt00200205 .class, xml, _classes)); + return ((MxSemt00200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200206.java index 39e1c1376..951414c49 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200206 parse(String xml) { - return ((MxSemt00200206) MxReadImpl.parse(MxSemt00200206 .class, xml, _classes)); + return ((MxSemt00200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200207.java index 14f0cfaf0..4f7b06d07 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200207 parse(String xml) { - return ((MxSemt00200207) MxReadImpl.parse(MxSemt00200207 .class, xml, _classes)); + return ((MxSemt00200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200208.java index 373dbe2a2..5ddb168d0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200208 parse(String xml) { - return ((MxSemt00200208) MxReadImpl.parse(MxSemt00200208 .class, xml, _classes)); + return ((MxSemt00200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200209.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200209.java index 4a29c40ec..99d9887c0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200209.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200209 parse(String xml) { - return ((MxSemt00200209) MxReadImpl.parse(MxSemt00200209 .class, xml, _classes)); + return ((MxSemt00200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200209 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200210.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200210.java index 4748391f3..3a0f5d6b8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200210.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00200210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00200210 parse(String xml) { - return ((MxSemt00200210) MxReadImpl.parse(MxSemt00200210 .class, xml, _classes)); + return ((MxSemt00200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00200210 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300101.java index 2f2395e10..f8cf868d1 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300101 parse(String xml) { - return ((MxSemt00300101) MxReadImpl.parse(MxSemt00300101 .class, xml, _classes)); + return ((MxSemt00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300102.java index 29a4585f8..57012b1ee 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300102 parse(String xml) { - return ((MxSemt00300102) MxReadImpl.parse(MxSemt00300102 .class, xml, _classes)); + return ((MxSemt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300103.java index baabc6d20..fcf5503c9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300103 parse(String xml) { - return ((MxSemt00300103) MxReadImpl.parse(MxSemt00300103 .class, xml, _classes)); + return ((MxSemt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300104.java index bafb0f0bd..28ca37751 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300104 parse(String xml) { - return ((MxSemt00300104) MxReadImpl.parse(MxSemt00300104 .class, xml, _classes)); + return ((MxSemt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300105.java index 0c822f435..34807aac7 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300105 parse(String xml) { - return ((MxSemt00300105) MxReadImpl.parse(MxSemt00300105 .class, xml, _classes)); + return ((MxSemt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300106.java index 29d8d1970..259a12b7f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300106 parse(String xml) { - return ((MxSemt00300106) MxReadImpl.parse(MxSemt00300106 .class, xml, _classes)); + return ((MxSemt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300107.java index 23de20db4..5ec3e5b5a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300107 parse(String xml) { - return ((MxSemt00300107) MxReadImpl.parse(MxSemt00300107 .class, xml, _classes)); + return ((MxSemt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300108.java index 5b61b6e13..f4a126e89 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300108 parse(String xml) { - return ((MxSemt00300108) MxReadImpl.parse(MxSemt00300108 .class, xml, _classes)); + return ((MxSemt00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300109.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300109.java index 84a62201a..3204d54e5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300109.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300109 parse(String xml) { - return ((MxSemt00300109) MxReadImpl.parse(MxSemt00300109 .class, xml, _classes)); + return ((MxSemt00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300110.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300110.java index 81753dce7..55ac19ffd 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300110.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300110 parse(String xml) { - return ((MxSemt00300110) MxReadImpl.parse(MxSemt00300110 .class, xml, _classes)); + return ((MxSemt00300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300110 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300203.java index 8f5100ebf..ccd038389 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300203 parse(String xml) { - return ((MxSemt00300203) MxReadImpl.parse(MxSemt00300203 .class, xml, _classes)); + return ((MxSemt00300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300204.java index bb9a24b3c..dd836f843 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300204 parse(String xml) { - return ((MxSemt00300204) MxReadImpl.parse(MxSemt00300204 .class, xml, _classes)); + return ((MxSemt00300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300205.java index f8040f3b5..abd9fea44 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300205 parse(String xml) { - return ((MxSemt00300205) MxReadImpl.parse(MxSemt00300205 .class, xml, _classes)); + return ((MxSemt00300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300206.java index 91a3e6db1..1949731e5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300206 parse(String xml) { - return ((MxSemt00300206) MxReadImpl.parse(MxSemt00300206 .class, xml, _classes)); + return ((MxSemt00300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300207.java index 836cab150..37220433b 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300207 parse(String xml) { - return ((MxSemt00300207) MxReadImpl.parse(MxSemt00300207 .class, xml, _classes)); + return ((MxSemt00300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300208.java index 4a460e24b..0964bad0b 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300208 parse(String xml) { - return ((MxSemt00300208) MxReadImpl.parse(MxSemt00300208 .class, xml, _classes)); + return ((MxSemt00300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300209.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300209.java index bb9122a0b..514b16729 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300209.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300209 parse(String xml) { - return ((MxSemt00300209) MxReadImpl.parse(MxSemt00300209 .class, xml, _classes)); + return ((MxSemt00300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300209 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300210.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300210.java index 240a98c69..5bcdbe660 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300210.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00300210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00300210 parse(String xml) { - return ((MxSemt00300210) MxReadImpl.parse(MxSemt00300210 .class, xml, _classes)); + return ((MxSemt00300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00300210 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400101.java index 1315b80e4..75198dd1a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00400101 parse(String xml) { - return ((MxSemt00400101) MxReadImpl.parse(MxSemt00400101 .class, xml, _classes)); + return ((MxSemt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400102.java index 8eba02c3c..ae0d5635d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00400102 parse(String xml) { - return ((MxSemt00400102) MxReadImpl.parse(MxSemt00400102 .class, xml, _classes)); + return ((MxSemt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500101.java index d470a5b38..e1b24a33b 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00500101 parse(String xml) { - return ((MxSemt00500101) MxReadImpl.parse(MxSemt00500101 .class, xml, _classes)); + return ((MxSemt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500102.java index f961a6272..845fcbde5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00500102 parse(String xml) { - return ((MxSemt00500102) MxReadImpl.parse(MxSemt00500102 .class, xml, _classes)); + return ((MxSemt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600101.java index f5aa8c4a0..5b338b6e7 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00600101 parse(String xml) { - return ((MxSemt00600101) MxReadImpl.parse(MxSemt00600101 .class, xml, _classes)); + return ((MxSemt00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600102.java index 37c5af8f6..c0a2bfa5c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00600102 parse(String xml) { - return ((MxSemt00600102) MxReadImpl.parse(MxSemt00600102 .class, xml, _classes)); + return ((MxSemt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600103.java index e8f31d9f6..67e01dd18 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00600103 parse(String xml) { - return ((MxSemt00600103) MxReadImpl.parse(MxSemt00600103 .class, xml, _classes)); + return ((MxSemt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700101.java index 1a7ef1275..a609ee06d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00700101 parse(String xml) { - return ((MxSemt00700101) MxReadImpl.parse(MxSemt00700101 .class, xml, _classes)); + return ((MxSemt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700102.java index 22d422333..fb73075da 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00700102 parse(String xml) { - return ((MxSemt00700102) MxReadImpl.parse(MxSemt00700102 .class, xml, _classes)); + return ((MxSemt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700103.java index 322e056b7..255f4c6c5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00700103 parse(String xml) { - return ((MxSemt00700103) MxReadImpl.parse(MxSemt00700103 .class, xml, _classes)); + return ((MxSemt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00800101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00800101.java index 23e0e8981..583ea71af 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00800101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00800101 parse(String xml) { - return ((MxSemt00800101) MxReadImpl.parse(MxSemt00800101 .class, xml, _classes)); + return ((MxSemt00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00900101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00900101.java index a63d39714..395ba75ba 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00900101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt00900101 parse(String xml) { - return ((MxSemt00900101) MxReadImpl.parse(MxSemt00900101 .class, xml, _classes)); + return ((MxSemt00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01200101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01200101.java index 32e357bfa..802c04813 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01200101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01200101 parse(String xml) { - return ((MxSemt01200101) MxReadImpl.parse(MxSemt01200101 .class, xml, _classes)); + return ((MxSemt01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300101.java index c9618c1de..4348574f2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300101 parse(String xml) { - return ((MxSemt01300101) MxReadImpl.parse(MxSemt01300101 .class, xml, _classes)); + return ((MxSemt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300102.java index ad7031edb..8f0c384f4 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300102 parse(String xml) { - return ((MxSemt01300102) MxReadImpl.parse(MxSemt01300102 .class, xml, _classes)); + return ((MxSemt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300103.java index fc523ac58..cdde99e62 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300103 parse(String xml) { - return ((MxSemt01300103) MxReadImpl.parse(MxSemt01300103 .class, xml, _classes)); + return ((MxSemt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300104.java index 07d9d7739..12e7c4047 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300104 parse(String xml) { - return ((MxSemt01300104) MxReadImpl.parse(MxSemt01300104 .class, xml, _classes)); + return ((MxSemt01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300105.java index 1eb762942..da3ca5ed7 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300105 parse(String xml) { - return ((MxSemt01300105) MxReadImpl.parse(MxSemt01300105 .class, xml, _classes)); + return ((MxSemt01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300201.java index eeef14851..7f1bd38f8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300201 parse(String xml) { - return ((MxSemt01300201) MxReadImpl.parse(MxSemt01300201 .class, xml, _classes)); + return ((MxSemt01300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300202.java index dcfa79660..3dd85037c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300202 parse(String xml) { - return ((MxSemt01300202) MxReadImpl.parse(MxSemt01300202 .class, xml, _classes)); + return ((MxSemt01300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300203.java index 34ead3e2c..7464ca062 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300203 parse(String xml) { - return ((MxSemt01300203) MxReadImpl.parse(MxSemt01300203 .class, xml, _classes)); + return ((MxSemt01300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300204.java index 0fc5d84e2..584d3d513 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300204 parse(String xml) { - return ((MxSemt01300204) MxReadImpl.parse(MxSemt01300204 .class, xml, _classes)); + return ((MxSemt01300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300205.java index 40658938c..4ceae0e3c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01300205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01300205 parse(String xml) { - return ((MxSemt01300205) MxReadImpl.parse(MxSemt01300205 .class, xml, _classes)); + return ((MxSemt01300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01300205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400101.java index d0e2950da..69ded1bf2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400101 parse(String xml) { - return ((MxSemt01400101) MxReadImpl.parse(MxSemt01400101 .class, xml, _classes)); + return ((MxSemt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400102.java index bf2924b6f..85ff04580 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400102 parse(String xml) { - return ((MxSemt01400102) MxReadImpl.parse(MxSemt01400102 .class, xml, _classes)); + return ((MxSemt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400103.java index bad2d7c98..03ae29e4e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400103 parse(String xml) { - return ((MxSemt01400103) MxReadImpl.parse(MxSemt01400103 .class, xml, _classes)); + return ((MxSemt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400104.java index 2dd081fa3..cd0a64e52 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400104 parse(String xml) { - return ((MxSemt01400104) MxReadImpl.parse(MxSemt01400104 .class, xml, _classes)); + return ((MxSemt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400105.java index 9c24307a5..51f40a7a3 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400105 parse(String xml) { - return ((MxSemt01400105) MxReadImpl.parse(MxSemt01400105 .class, xml, _classes)); + return ((MxSemt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400106.java index 6d1961522..a22fb9dc1 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400106 parse(String xml) { - return ((MxSemt01400106) MxReadImpl.parse(MxSemt01400106 .class, xml, _classes)); + return ((MxSemt01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400201.java index b0ea3237f..8fd823ffe 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400201 parse(String xml) { - return ((MxSemt01400201) MxReadImpl.parse(MxSemt01400201 .class, xml, _classes)); + return ((MxSemt01400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400202.java index 7d8852e43..02aa4c6c0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400202 parse(String xml) { - return ((MxSemt01400202) MxReadImpl.parse(MxSemt01400202 .class, xml, _classes)); + return ((MxSemt01400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400203.java index 9972443ee..34eb63b02 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400203 parse(String xml) { - return ((MxSemt01400203) MxReadImpl.parse(MxSemt01400203 .class, xml, _classes)); + return ((MxSemt01400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400204.java index b4d458ae1..632c57bbe 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400204 parse(String xml) { - return ((MxSemt01400204) MxReadImpl.parse(MxSemt01400204 .class, xml, _classes)); + return ((MxSemt01400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400205.java index ffd725e78..c9d06d55a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400205 parse(String xml) { - return ((MxSemt01400205) MxReadImpl.parse(MxSemt01400205 .class, xml, _classes)); + return ((MxSemt01400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400206.java index bf01aea99..703626074 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01400206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01400206 parse(String xml) { - return ((MxSemt01400206) MxReadImpl.parse(MxSemt01400206 .class, xml, _classes)); + return ((MxSemt01400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01400206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500101.java index cee829a76..f20f70abc 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500101 parse(String xml) { - return ((MxSemt01500101) MxReadImpl.parse(MxSemt01500101 .class, xml, _classes)); + return ((MxSemt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500102.java index 2118f0a9e..215cc9d37 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500102 parse(String xml) { - return ((MxSemt01500102) MxReadImpl.parse(MxSemt01500102 .class, xml, _classes)); + return ((MxSemt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500103.java index 0ac3a7618..14485c2af 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500103 parse(String xml) { - return ((MxSemt01500103) MxReadImpl.parse(MxSemt01500103 .class, xml, _classes)); + return ((MxSemt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500104.java index a7e6bd251..e9a4f6ed1 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500104 parse(String xml) { - return ((MxSemt01500104) MxReadImpl.parse(MxSemt01500104 .class, xml, _classes)); + return ((MxSemt01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500105.java index e12592e39..3be293180 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500105 parse(String xml) { - return ((MxSemt01500105) MxReadImpl.parse(MxSemt01500105 .class, xml, _classes)); + return ((MxSemt01500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500106.java index 162a7b675..4eabda38a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500106 parse(String xml) { - return ((MxSemt01500106) MxReadImpl.parse(MxSemt01500106 .class, xml, _classes)); + return ((MxSemt01500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500107.java index 72f13ea1e..2a45825d8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500107 parse(String xml) { - return ((MxSemt01500107) MxReadImpl.parse(MxSemt01500107 .class, xml, _classes)); + return ((MxSemt01500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500108.java index a1b509a49..28afbc01c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500108 parse(String xml) { - return ((MxSemt01500108) MxReadImpl.parse(MxSemt01500108 .class, xml, _classes)); + return ((MxSemt01500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500201.java index d5cb2572d..49c15bcb5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500201 parse(String xml) { - return ((MxSemt01500201) MxReadImpl.parse(MxSemt01500201 .class, xml, _classes)); + return ((MxSemt01500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500202.java index a3abfb9f8..8df17d4d5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500202 parse(String xml) { - return ((MxSemt01500202) MxReadImpl.parse(MxSemt01500202 .class, xml, _classes)); + return ((MxSemt01500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500203.java index c619e8766..fff207d20 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500203 parse(String xml) { - return ((MxSemt01500203) MxReadImpl.parse(MxSemt01500203 .class, xml, _classes)); + return ((MxSemt01500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500204.java index 84d651914..d9d16aa32 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500204 parse(String xml) { - return ((MxSemt01500204) MxReadImpl.parse(MxSemt01500204 .class, xml, _classes)); + return ((MxSemt01500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500205.java index e5cf7fad2..1abfc5b12 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500205 parse(String xml) { - return ((MxSemt01500205) MxReadImpl.parse(MxSemt01500205 .class, xml, _classes)); + return ((MxSemt01500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500206.java index 6ecada6e3..0a15dc7fd 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500206 parse(String xml) { - return ((MxSemt01500206) MxReadImpl.parse(MxSemt01500206 .class, xml, _classes)); + return ((MxSemt01500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500207.java index cf10ebba7..f09a6e729 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500207 parse(String xml) { - return ((MxSemt01500207) MxReadImpl.parse(MxSemt01500207 .class, xml, _classes)); + return ((MxSemt01500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500208.java index f1b1caacd..2fb7ca6ff 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01500208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01500208 parse(String xml) { - return ((MxSemt01500208) MxReadImpl.parse(MxSemt01500208 .class, xml, _classes)); + return ((MxSemt01500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01500208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600101.java index 2242055f3..ab389ded8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600101 parse(String xml) { - return ((MxSemt01600101) MxReadImpl.parse(MxSemt01600101 .class, xml, _classes)); + return ((MxSemt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600102.java index 22a430619..6333e8896 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600102 parse(String xml) { - return ((MxSemt01600102) MxReadImpl.parse(MxSemt01600102 .class, xml, _classes)); + return ((MxSemt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600103.java index b6611ccce..5e1b5768d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600103 parse(String xml) { - return ((MxSemt01600103) MxReadImpl.parse(MxSemt01600103 .class, xml, _classes)); + return ((MxSemt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600104.java index 616765a3c..c78e35a31 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600104 parse(String xml) { - return ((MxSemt01600104) MxReadImpl.parse(MxSemt01600104 .class, xml, _classes)); + return ((MxSemt01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600105.java index b2c36d12c..b7a538000 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600105 parse(String xml) { - return ((MxSemt01600105) MxReadImpl.parse(MxSemt01600105 .class, xml, _classes)); + return ((MxSemt01600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600106.java index 3dc154008..6e59bb486 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600106 parse(String xml) { - return ((MxSemt01600106) MxReadImpl.parse(MxSemt01600106 .class, xml, _classes)); + return ((MxSemt01600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600107.java index cde9e15a7..99eed54f6 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600107 parse(String xml) { - return ((MxSemt01600107) MxReadImpl.parse(MxSemt01600107 .class, xml, _classes)); + return ((MxSemt01600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600108.java index 133eb3457..8387f8652 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600108 parse(String xml) { - return ((MxSemt01600108) MxReadImpl.parse(MxSemt01600108 .class, xml, _classes)); + return ((MxSemt01600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600201.java index 89ba6d1d1..4783da04a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600201 parse(String xml) { - return ((MxSemt01600201) MxReadImpl.parse(MxSemt01600201 .class, xml, _classes)); + return ((MxSemt01600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600202.java index b8cf1a21c..a65136d09 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600202 parse(String xml) { - return ((MxSemt01600202) MxReadImpl.parse(MxSemt01600202 .class, xml, _classes)); + return ((MxSemt01600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600203.java index 000e5b00c..9270831a0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600203 parse(String xml) { - return ((MxSemt01600203) MxReadImpl.parse(MxSemt01600203 .class, xml, _classes)); + return ((MxSemt01600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600204.java index cda9e6bcf..cb3a6be52 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600204 parse(String xml) { - return ((MxSemt01600204) MxReadImpl.parse(MxSemt01600204 .class, xml, _classes)); + return ((MxSemt01600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600205.java index 4101ed8f5..576576587 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600205 parse(String xml) { - return ((MxSemt01600205) MxReadImpl.parse(MxSemt01600205 .class, xml, _classes)); + return ((MxSemt01600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600206.java index 6911b542f..95c503555 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600206 parse(String xml) { - return ((MxSemt01600206) MxReadImpl.parse(MxSemt01600206 .class, xml, _classes)); + return ((MxSemt01600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600207.java index 2147fbb90..253f48d0c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600207 parse(String xml) { - return ((MxSemt01600207) MxReadImpl.parse(MxSemt01600207 .class, xml, _classes)); + return ((MxSemt01600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600208.java index cbf197407..f8f917cc1 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01600208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01600208 parse(String xml) { - return ((MxSemt01600208) MxReadImpl.parse(MxSemt01600208 .class, xml, _classes)); + return ((MxSemt01600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01600208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700101.java index 9bb40fcfb..5e7f3fb35 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700101 parse(String xml) { - return ((MxSemt01700101) MxReadImpl.parse(MxSemt01700101 .class, xml, _classes)); + return ((MxSemt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700102.java index d85f8ce27..3ee8dc4d4 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700102 parse(String xml) { - return ((MxSemt01700102) MxReadImpl.parse(MxSemt01700102 .class, xml, _classes)); + return ((MxSemt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700103.java index 4b7ac1711..5f8413024 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700103 parse(String xml) { - return ((MxSemt01700103) MxReadImpl.parse(MxSemt01700103 .class, xml, _classes)); + return ((MxSemt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700104.java index c465b876b..fdd6fbae6 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700104 parse(String xml) { - return ((MxSemt01700104) MxReadImpl.parse(MxSemt01700104 .class, xml, _classes)); + return ((MxSemt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700105.java index a917502a9..5d61ebe89 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700105 parse(String xml) { - return ((MxSemt01700105) MxReadImpl.parse(MxSemt01700105 .class, xml, _classes)); + return ((MxSemt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700106.java index fc1825801..d4af2aac8 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700106 parse(String xml) { - return ((MxSemt01700106) MxReadImpl.parse(MxSemt01700106 .class, xml, _classes)); + return ((MxSemt01700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700107.java index 06cada13d..41b21ccd2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700107 parse(String xml) { - return ((MxSemt01700107) MxReadImpl.parse(MxSemt01700107 .class, xml, _classes)); + return ((MxSemt01700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700108.java index ee279f1a1..cfca4627f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700108 parse(String xml) { - return ((MxSemt01700108) MxReadImpl.parse(MxSemt01700108 .class, xml, _classes)); + return ((MxSemt01700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700109.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700109.java index aaa053183..1c72a5140 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700109.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700109 parse(String xml) { - return ((MxSemt01700109) MxReadImpl.parse(MxSemt01700109 .class, xml, _classes)); + return ((MxSemt01700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700109 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700110.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700110.java index 492714c02..289224d13 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700110.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700110 parse(String xml) { - return ((MxSemt01700110) MxReadImpl.parse(MxSemt01700110 .class, xml, _classes)); + return ((MxSemt01700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700110 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700111.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700111.java index 8b06e7df6..d42d9c2ea 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700111.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700111 parse(String xml) { - return ((MxSemt01700111) MxReadImpl.parse(MxSemt01700111 .class, xml, _classes)); + return ((MxSemt01700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700111 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700201.java index ba86ef10f..b08795860 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700201 parse(String xml) { - return ((MxSemt01700201) MxReadImpl.parse(MxSemt01700201 .class, xml, _classes)); + return ((MxSemt01700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700202.java index 536de2f92..09af1b412 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700202 parse(String xml) { - return ((MxSemt01700202) MxReadImpl.parse(MxSemt01700202 .class, xml, _classes)); + return ((MxSemt01700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700203.java index 093780682..7efd7eba0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700203 parse(String xml) { - return ((MxSemt01700203) MxReadImpl.parse(MxSemt01700203 .class, xml, _classes)); + return ((MxSemt01700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700204.java index 71ed3842c..f168d85cc 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700204 parse(String xml) { - return ((MxSemt01700204) MxReadImpl.parse(MxSemt01700204 .class, xml, _classes)); + return ((MxSemt01700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700205.java index 3e73001be..d9e11bc75 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700205 parse(String xml) { - return ((MxSemt01700205) MxReadImpl.parse(MxSemt01700205 .class, xml, _classes)); + return ((MxSemt01700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700206.java index e90e0b65f..322cbc650 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700206 parse(String xml) { - return ((MxSemt01700206) MxReadImpl.parse(MxSemt01700206 .class, xml, _classes)); + return ((MxSemt01700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700207.java index 05874fc8d..686aecc01 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700207 parse(String xml) { - return ((MxSemt01700207) MxReadImpl.parse(MxSemt01700207 .class, xml, _classes)); + return ((MxSemt01700207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700208.java index 807a02534..43747b9a9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700208 parse(String xml) { - return ((MxSemt01700208) MxReadImpl.parse(MxSemt01700208 .class, xml, _classes)); + return ((MxSemt01700208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700209.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700209.java index d58a5c765..5ae4d9c80 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700209.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700209 parse(String xml) { - return ((MxSemt01700209) MxReadImpl.parse(MxSemt01700209 .class, xml, _classes)); + return ((MxSemt01700209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700209 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700210.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700210.java index 29d40b813..c07c6522b 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700210.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700210 parse(String xml) { - return ((MxSemt01700210) MxReadImpl.parse(MxSemt01700210 .class, xml, _classes)); + return ((MxSemt01700210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700210 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700211.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700211.java index 54d7cc9a4..4007a84b7 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700211.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01700211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01700211 parse(String xml) { - return ((MxSemt01700211) MxReadImpl.parse(MxSemt01700211 .class, xml, _classes)); + return ((MxSemt01700211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01700211 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01700211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01700211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800101.java index b025b9367..5c9df1b99 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800101 parse(String xml) { - return ((MxSemt01800101) MxReadImpl.parse(MxSemt01800101 .class, xml, _classes)); + return ((MxSemt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800102.java index 3b6dcf481..088860a44 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800102 parse(String xml) { - return ((MxSemt01800102) MxReadImpl.parse(MxSemt01800102 .class, xml, _classes)); + return ((MxSemt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800103.java index beb85b2f8..f57695911 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800103 parse(String xml) { - return ((MxSemt01800103) MxReadImpl.parse(MxSemt01800103 .class, xml, _classes)); + return ((MxSemt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800104.java index e5442003a..eeb6f5a82 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800104 parse(String xml) { - return ((MxSemt01800104) MxReadImpl.parse(MxSemt01800104 .class, xml, _classes)); + return ((MxSemt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800105.java index 2aa066557..9d69e9151 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800105 parse(String xml) { - return ((MxSemt01800105) MxReadImpl.parse(MxSemt01800105 .class, xml, _classes)); + return ((MxSemt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800106.java index 62591b687..8cf7b4dd2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800106 parse(String xml) { - return ((MxSemt01800106) MxReadImpl.parse(MxSemt01800106 .class, xml, _classes)); + return ((MxSemt01800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800107.java index c663a860b..7d7f107ff 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800107 parse(String xml) { - return ((MxSemt01800107) MxReadImpl.parse(MxSemt01800107 .class, xml, _classes)); + return ((MxSemt01800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800108.java index 528128a03..aa549062f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800108 parse(String xml) { - return ((MxSemt01800108) MxReadImpl.parse(MxSemt01800108 .class, xml, _classes)); + return ((MxSemt01800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800109.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800109.java index f123d50f6..c08277a53 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800109.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800109 parse(String xml) { - return ((MxSemt01800109) MxReadImpl.parse(MxSemt01800109 .class, xml, _classes)); + return ((MxSemt01800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800109 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800110.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800110.java index 170c88546..9faad1ea1 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800110.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800110 parse(String xml) { - return ((MxSemt01800110) MxReadImpl.parse(MxSemt01800110 .class, xml, _classes)); + return ((MxSemt01800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800110 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800111.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800111.java index 57d24d84a..dc6a4cd9e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800111.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800111 parse(String xml) { - return ((MxSemt01800111) MxReadImpl.parse(MxSemt01800111 .class, xml, _classes)); + return ((MxSemt01800111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800111 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800112.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800112.java index 9997e8dcd..29c92a39f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800112.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800112 parse(String xml) { - return ((MxSemt01800112) MxReadImpl.parse(MxSemt01800112 .class, xml, _classes)); + return ((MxSemt01800112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800112 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800201.java index 8c813988b..a7778a462 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800201 parse(String xml) { - return ((MxSemt01800201) MxReadImpl.parse(MxSemt01800201 .class, xml, _classes)); + return ((MxSemt01800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800202.java index 8e4228b80..e1ad649cf 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800202 parse(String xml) { - return ((MxSemt01800202) MxReadImpl.parse(MxSemt01800202 .class, xml, _classes)); + return ((MxSemt01800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800203.java index c853499f3..9a68c149d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800203 parse(String xml) { - return ((MxSemt01800203) MxReadImpl.parse(MxSemt01800203 .class, xml, _classes)); + return ((MxSemt01800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800204.java index 570c9e8a5..55bc4aef6 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800204 parse(String xml) { - return ((MxSemt01800204) MxReadImpl.parse(MxSemt01800204 .class, xml, _classes)); + return ((MxSemt01800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800205.java index fb4796131..e6cc324a5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800205 parse(String xml) { - return ((MxSemt01800205) MxReadImpl.parse(MxSemt01800205 .class, xml, _classes)); + return ((MxSemt01800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800206.java index 3765f43e9..866dd85e7 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800206 parse(String xml) { - return ((MxSemt01800206) MxReadImpl.parse(MxSemt01800206 .class, xml, _classes)); + return ((MxSemt01800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800207.java index 2ddc68b20..6d00fa379 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800207 parse(String xml) { - return ((MxSemt01800207) MxReadImpl.parse(MxSemt01800207 .class, xml, _classes)); + return ((MxSemt01800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800208.java index c77d7b669..40b3e67f9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800208 parse(String xml) { - return ((MxSemt01800208) MxReadImpl.parse(MxSemt01800208 .class, xml, _classes)); + return ((MxSemt01800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800209.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800209.java index 9794e20f8..3f4894fd3 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800209.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800209 parse(String xml) { - return ((MxSemt01800209) MxReadImpl.parse(MxSemt01800209 .class, xml, _classes)); + return ((MxSemt01800209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800209 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800210.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800210.java index a5a94f7c7..a956f1e28 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800210.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800210 parse(String xml) { - return ((MxSemt01800210) MxReadImpl.parse(MxSemt01800210 .class, xml, _classes)); + return ((MxSemt01800210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800210 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800211.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800211.java index 5b53aef97..af2e107ff 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800211.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800211 parse(String xml) { - return ((MxSemt01800211) MxReadImpl.parse(MxSemt01800211 .class, xml, _classes)); + return ((MxSemt01800211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800211 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800212.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800212.java index d6f8ed8d9..eb85ecb2d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800212.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01800212.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01800212 parse(String xml) { - return ((MxSemt01800212) MxReadImpl.parse(MxSemt01800212 .class, xml, _classes)); + return ((MxSemt01800212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01800212 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01800212) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01800212 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900101.java index f7ced5632..4db70ca41 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900101 parse(String xml) { - return ((MxSemt01900101) MxReadImpl.parse(MxSemt01900101 .class, xml, _classes)); + return ((MxSemt01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900102.java index 013dfba61..0961c4503 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900102 parse(String xml) { - return ((MxSemt01900102) MxReadImpl.parse(MxSemt01900102 .class, xml, _classes)); + return ((MxSemt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900103.java index dd7b53d66..a17a04e8a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900103 parse(String xml) { - return ((MxSemt01900103) MxReadImpl.parse(MxSemt01900103 .class, xml, _classes)); + return ((MxSemt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900104.java index e7eb88935..e352a983f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900104 parse(String xml) { - return ((MxSemt01900104) MxReadImpl.parse(MxSemt01900104 .class, xml, _classes)); + return ((MxSemt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900105.java index 105056c08..93dc3f7d2 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900105 parse(String xml) { - return ((MxSemt01900105) MxReadImpl.parse(MxSemt01900105 .class, xml, _classes)); + return ((MxSemt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900106.java index 5eca2bb9f..a2e0acb42 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900106 parse(String xml) { - return ((MxSemt01900106) MxReadImpl.parse(MxSemt01900106 .class, xml, _classes)); + return ((MxSemt01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900107.java index 1fe1046c5..ad692cd25 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900107 parse(String xml) { - return ((MxSemt01900107) MxReadImpl.parse(MxSemt01900107 .class, xml, _classes)); + return ((MxSemt01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900108.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900108.java index d9446351f..63de6bcfe 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900108.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900108 parse(String xml) { - return ((MxSemt01900108) MxReadImpl.parse(MxSemt01900108 .class, xml, _classes)); + return ((MxSemt01900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900108 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900109.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900109.java index 4059ab53e..7de3f15ed 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900109.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900109 parse(String xml) { - return ((MxSemt01900109) MxReadImpl.parse(MxSemt01900109 .class, xml, _classes)); + return ((MxSemt01900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900109 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900201.java index b54b954c3..c23ccc12f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900201 parse(String xml) { - return ((MxSemt01900201) MxReadImpl.parse(MxSemt01900201 .class, xml, _classes)); + return ((MxSemt01900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900202.java index 596424269..164e99256 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900202 parse(String xml) { - return ((MxSemt01900202) MxReadImpl.parse(MxSemt01900202 .class, xml, _classes)); + return ((MxSemt01900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900203.java index 2cca6f12c..6fe6b94ad 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900203 parse(String xml) { - return ((MxSemt01900203) MxReadImpl.parse(MxSemt01900203 .class, xml, _classes)); + return ((MxSemt01900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900204.java index d53d0bb6c..f41adc5c4 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900204 parse(String xml) { - return ((MxSemt01900204) MxReadImpl.parse(MxSemt01900204 .class, xml, _classes)); + return ((MxSemt01900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900205.java index c3f1589a9..4a1076d80 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900205 parse(String xml) { - return ((MxSemt01900205) MxReadImpl.parse(MxSemt01900205 .class, xml, _classes)); + return ((MxSemt01900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900206.java index a0557d6db..62db3857c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900206 parse(String xml) { - return ((MxSemt01900206) MxReadImpl.parse(MxSemt01900206 .class, xml, _classes)); + return ((MxSemt01900206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900207.java index c17d273a2..e2ccf5a3f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900207 parse(String xml) { - return ((MxSemt01900207) MxReadImpl.parse(MxSemt01900207 .class, xml, _classes)); + return ((MxSemt01900207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900208.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900208.java index 6438b2f73..d43a650b6 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900208.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900208 parse(String xml) { - return ((MxSemt01900208) MxReadImpl.parse(MxSemt01900208 .class, xml, _classes)); + return ((MxSemt01900208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900208 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900209.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900209.java index 777809b15..7499b50af 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900209.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt01900209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt01900209 parse(String xml) { - return ((MxSemt01900209) MxReadImpl.parse(MxSemt01900209 .class, xml, _classes)); + return ((MxSemt01900209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt01900209 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt01900209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt01900209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000101.java index 8c5d07d11..15a2017ef 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000101 parse(String xml) { - return ((MxSemt02000101) MxReadImpl.parse(MxSemt02000101 .class, xml, _classes)); + return ((MxSemt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000102.java index 519a1bbe8..2d9439616 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000102 parse(String xml) { - return ((MxSemt02000102) MxReadImpl.parse(MxSemt02000102 .class, xml, _classes)); + return ((MxSemt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000103.java index 0244cc398..507a55aab 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000103 parse(String xml) { - return ((MxSemt02000103) MxReadImpl.parse(MxSemt02000103 .class, xml, _classes)); + return ((MxSemt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000104.java index ce3bcfa26..2da2cf9f3 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000104 parse(String xml) { - return ((MxSemt02000104) MxReadImpl.parse(MxSemt02000104 .class, xml, _classes)); + return ((MxSemt02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000105.java index 101ff9789..8f62e3c9a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000105 parse(String xml) { - return ((MxSemt02000105) MxReadImpl.parse(MxSemt02000105 .class, xml, _classes)); + return ((MxSemt02000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000106.java index e22c2cbab..67b465cee 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000106 parse(String xml) { - return ((MxSemt02000106) MxReadImpl.parse(MxSemt02000106 .class, xml, _classes)); + return ((MxSemt02000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000201.java index 53cca0e67..bcc1ba4dc 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000201 parse(String xml) { - return ((MxSemt02000201) MxReadImpl.parse(MxSemt02000201 .class, xml, _classes)); + return ((MxSemt02000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000202.java index 0d72c7542..753b6f11a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000202 parse(String xml) { - return ((MxSemt02000202) MxReadImpl.parse(MxSemt02000202 .class, xml, _classes)); + return ((MxSemt02000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000203.java index f2bb9c409..72d0b7970 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000203 parse(String xml) { - return ((MxSemt02000203) MxReadImpl.parse(MxSemt02000203 .class, xml, _classes)); + return ((MxSemt02000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000204.java index b47dd4f46..3b4dca8a5 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000204 parse(String xml) { - return ((MxSemt02000204) MxReadImpl.parse(MxSemt02000204 .class, xml, _classes)); + return ((MxSemt02000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000205.java index b367a4984..4e369a354 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000205 parse(String xml) { - return ((MxSemt02000205) MxReadImpl.parse(MxSemt02000205 .class, xml, _classes)); + return ((MxSemt02000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000206.java index 243117d05..1c75e1224 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02000206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02000206 parse(String xml) { - return ((MxSemt02000206) MxReadImpl.parse(MxSemt02000206 .class, xml, _classes)); + return ((MxSemt02000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02000206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100101.java index efeba847b..280cfd504 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100101 parse(String xml) { - return ((MxSemt02100101) MxReadImpl.parse(MxSemt02100101 .class, xml, _classes)); + return ((MxSemt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100102.java index 97948cc90..061125810 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100102 parse(String xml) { - return ((MxSemt02100102) MxReadImpl.parse(MxSemt02100102 .class, xml, _classes)); + return ((MxSemt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100103.java index b682b414a..696a03192 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100103 parse(String xml) { - return ((MxSemt02100103) MxReadImpl.parse(MxSemt02100103 .class, xml, _classes)); + return ((MxSemt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100104.java index 46236cba3..4a8c805a0 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100104 parse(String xml) { - return ((MxSemt02100104) MxReadImpl.parse(MxSemt02100104 .class, xml, _classes)); + return ((MxSemt02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100105.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100105.java index 1307afef8..8ad299863 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100105.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100105 parse(String xml) { - return ((MxSemt02100105) MxReadImpl.parse(MxSemt02100105 .class, xml, _classes)); + return ((MxSemt02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100106.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100106.java index dfaca07ff..c4b760a22 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100106.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100106 parse(String xml) { - return ((MxSemt02100106) MxReadImpl.parse(MxSemt02100106 .class, xml, _classes)); + return ((MxSemt02100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100107.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100107.java index 8f4920ba4..0e66db659 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100107.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100107 parse(String xml) { - return ((MxSemt02100107) MxReadImpl.parse(MxSemt02100107 .class, xml, _classes)); + return ((MxSemt02100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100201.java index 67116096f..bd9a6061c 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100201 parse(String xml) { - return ((MxSemt02100201) MxReadImpl.parse(MxSemt02100201 .class, xml, _classes)); + return ((MxSemt02100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100202.java index 539dd1cba..006ec385e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100202 parse(String xml) { - return ((MxSemt02100202) MxReadImpl.parse(MxSemt02100202 .class, xml, _classes)); + return ((MxSemt02100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100203.java index 13eea5c58..958830994 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100203 parse(String xml) { - return ((MxSemt02100203) MxReadImpl.parse(MxSemt02100203 .class, xml, _classes)); + return ((MxSemt02100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100204.java index 106829528..a5d9ffc58 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100204 parse(String xml) { - return ((MxSemt02100204) MxReadImpl.parse(MxSemt02100204 .class, xml, _classes)); + return ((MxSemt02100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100205.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100205.java index af036b5fa..4e6f0a7a9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100205.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100205 parse(String xml) { - return ((MxSemt02100205) MxReadImpl.parse(MxSemt02100205 .class, xml, _classes)); + return ((MxSemt02100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100205 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100206.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100206.java index ec4a066c4..75b58e37d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100206.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100206 parse(String xml) { - return ((MxSemt02100206) MxReadImpl.parse(MxSemt02100206 .class, xml, _classes)); + return ((MxSemt02100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100206 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100207.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100207.java index ba0c513ab..fa41b1013 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100207.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02100207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02100207 parse(String xml) { - return ((MxSemt02100207) MxReadImpl.parse(MxSemt02100207 .class, xml, _classes)); + return ((MxSemt02100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02100207 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200101.java index 93f87a0d7..825587e9f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200101 parse(String xml) { - return ((MxSemt02200101) MxReadImpl.parse(MxSemt02200101 .class, xml, _classes)); + return ((MxSemt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200102.java index 9b3b38ca6..e1817cf6d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200102 parse(String xml) { - return ((MxSemt02200102) MxReadImpl.parse(MxSemt02200102 .class, xml, _classes)); + return ((MxSemt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200103.java index 7a040e365..11a94510a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200103 parse(String xml) { - return ((MxSemt02200103) MxReadImpl.parse(MxSemt02200103 .class, xml, _classes)); + return ((MxSemt02200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200104.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200104.java index 88b54d59d..1389af25e 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200104.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200104 parse(String xml) { - return ((MxSemt02200104) MxReadImpl.parse(MxSemt02200104 .class, xml, _classes)); + return ((MxSemt02200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200201.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200201.java index 0abe01893..614f20880 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200201.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200201 parse(String xml) { - return ((MxSemt02200201) MxReadImpl.parse(MxSemt02200201 .class, xml, _classes)); + return ((MxSemt02200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200202.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200202.java index eaf72c8d7..e29cf871f 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200202.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200202 parse(String xml) { - return ((MxSemt02200202) MxReadImpl.parse(MxSemt02200202 .class, xml, _classes)); + return ((MxSemt02200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200202 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200203.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200203.java index 8d106ba3e..972b9979d 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200203.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200203 parse(String xml) { - return ((MxSemt02200203) MxReadImpl.parse(MxSemt02200203 .class, xml, _classes)); + return ((MxSemt02200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200204.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200204.java index 45f3ac63d..a7d259abf 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200204.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02200204 parse(String xml) { - return ((MxSemt02200204) MxReadImpl.parse(MxSemt02200204 .class, xml, _classes)); + return ((MxSemt02200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02300101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02300101.java index 3fde32809..f8f65b360 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02300101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02300101 parse(String xml) { - return ((MxSemt02300101) MxReadImpl.parse(MxSemt02300101 .class, xml, _classes)); + return ((MxSemt02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02400101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02400101.java index dc24536bb..67a49f094 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02400101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt02400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt02400101 parse(String xml) { - return ((MxSemt02400101) MxReadImpl.parse(MxSemt02400101 .class, xml, _classes)); + return ((MxSemt02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt02400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100101.java index f14311558..75e9c35f9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt04100101 parse(String xml) { - return ((MxSemt04100101) MxReadImpl.parse(MxSemt04100101 .class, xml, _classes)); + return ((MxSemt04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt04100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100102.java index e2242746e..29aa8cac9 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt04100102 parse(String xml) { - return ((MxSemt04100102) MxReadImpl.parse(MxSemt04100102 .class, xml, _classes)); + return ((MxSemt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt04100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04200101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04200101.java index c4e180dc0..59d8ce011 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04200101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt04200101 parse(String xml) { - return ((MxSemt04200101) MxReadImpl.parse(MxSemt04200101 .class, xml, _classes)); + return ((MxSemt04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt04200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04400101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04400101.java index a536fb97f..3e8d3667a 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04400101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt04400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt04400101 parse(String xml) { - return ((MxSemt04400101) MxReadImpl.parse(MxSemt04400101 .class, xml, _classes)); + return ((MxSemt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt04400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800101.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800101.java index 414ea57e2..22959fbc4 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800101.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt99800101 parse(String xml) { - return ((MxSemt99800101) MxReadImpl.parse(MxSemt99800101 .class, xml, _classes)); + return ((MxSemt99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt99800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800102.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800102.java index 9b1461a7b..7b2f88c5b 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800102.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt99800102 parse(String xml) { - return ((MxSemt99800102) MxReadImpl.parse(MxSemt99800102 .class, xml, _classes)); + return ((MxSemt99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt99800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800103.java b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800103.java index 36a083252..0dbdab1cf 100644 --- a/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800103.java +++ b/model-semt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSemt99800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSemt99800103 parse(String xml) { - return ((MxSemt99800103) MxReadImpl.parse(MxSemt99800103 .class, xml, _classes)); + return ((MxSemt99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSemt99800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSemt99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSemt99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AlternateIdentification4.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AlternateIdentification4.java index 7e4d2538e..78991b4cd 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AlternateIdentification4.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AlternateIdentification4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AlternateIdentification4 { protected OtherIdentification4Choice 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 AlternateIdentification4 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 AlternateIdentification4 setIsseDt(XMLGregorianCalendar value) { @@ -150,7 +154,7 @@ public AlternateIdentification4 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 AlternateIdentification4 setXpryDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType28Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType28Code.java index 33468197a..596b7fca9 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType28Code.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventType28Code.java @@ -201,7 +201,7 @@ public enum CorporateActionEventType28Code { DECR, /** - * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity. Units may be broken up at the request of the security holder or based on market convention. + * Separation of components that comprise a security, for example, usually units comprised of warrants and bond or warrants and equity . Units may be broken up at the request of the security holder or based on market convention. * */ DETI, @@ -237,7 +237,7 @@ public enum CorporateActionEventType28Code { DTCH, /** - * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation". + * Exchange of holdings for other securities and/or cash. The exchange can be either mandatory or voluntary involving the exchange of outstanding securities for different securities and/or cash. For example "exchange offer", "capital reorganisation" or "funds separation" . * */ EXOF, @@ -327,7 +327,7 @@ public enum CorporateActionEventType28Code { OTHR, /** - * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example, pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. + * Occurs when securities with different characteristics, for example, shares with different entitlements to dividend or voting rights, become identical in all respects, for example , pari-passu or assimilation. May be scheduled in advance, for example, shares resulting from a bonus may become fungible after a pre-set period of time, or may result from outside events, for example, merger, reorganisation, issue of supplementary tranches. * */ PARI, @@ -483,7 +483,7 @@ public enum CorporateActionEventType28Code { WRTH, /** - * Funds related event in which the income (for example accumulation units) that accrues during an accounting period is retained within the fund instead of being paid away to investors. The retained income is nonetheless deemed to have been distributed to investors for tax purposes. + * Funds related event in which the income (for example accumulation units) that accrues during an accounting period is retained within the fund instead of being paid away to investors. The retained income is nonetheless deemed to have been distributed to investors for tax purposes. * */ ACCU, diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1Choice.java index c6101e3d3..daf2d1ae3 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1Choice.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DatePeriod1Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "DtMnth") @@ -41,7 +44,7 @@ public class DatePeriod1Choice { * * @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 DatePeriod1Choice setDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason11.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason11.java deleted file mode 100644 index 2d0ecc3a7..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason11.java +++ /dev/null @@ -1,97 +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; - - -/** - * Specifies the reason why the request or instruction was denied. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeniedReason11", propOrder = { - "cd", - "addtlRsnInf" -}) -public class DeniedReason11 { - - @XmlElement(name = "Cd", required = true) - protected DeniedReason16Choice cd; - @XmlElement(name = "AddtlRsnInf") - protected String addtlRsnInf; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link DeniedReason16Choice } - * - */ - public DeniedReason16Choice getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link DeniedReason16Choice } - * - */ - public DeniedReason11 setCd(DeniedReason16Choice value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the addtlRsnInf property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddtlRsnInf() { - return addtlRsnInf; - } - - /** - * Sets the value of the addtlRsnInf property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public DeniedReason11 setAddtlRsnInf(String value) { - this.addtlRsnInf = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason16Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason16Choice.java deleted file mode 100644 index eccec3d4b..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedReason16Choice.java +++ /dev/null @@ -1,99 +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 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; - - -/** - * Choice of format for the denied reason. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeniedReason16Choice", propOrder = { - "cd", - "prtry" -}) -public class DeniedReason16Choice { - - @XmlElement(name = "Cd") - @XmlSchemaType(name = "string") - protected DeniedReason4Code cd; - @XmlElement(name = "Prtry") - protected GenericIdentification30 prtry; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link DeniedReason4Code } - * - */ - public DeniedReason4Code getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link DeniedReason4Code } - * - */ - public DeniedReason16Choice setCd(DeniedReason4Code value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link GenericIdentification30 } - * - */ - public GenericIdentification30 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link GenericIdentification30 } - * - */ - public DeniedReason16Choice setPrtry(GenericIdentification30 value) { - this.prtry = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedStatus16Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedStatus16Choice.java deleted file mode 100644 index a425b1640..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeniedStatus16Choice.java +++ /dev/null @@ -1,115 +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; - - -/** - * Specifies whether the status is provided with a reason or not. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeniedStatus16Choice", propOrder = { - "noSpcfdRsn", - "rsn" -}) -public class DeniedStatus16Choice { - - @XmlElement(name = "NoSpcfdRsn") - @XmlSchemaType(name = "string") - protected NoReasonCode noSpcfdRsn; - @XmlElement(name = "Rsn") - protected List rsn; - - /** - * Gets the value of the noSpcfdRsn property. - * - * @return - * possible object is - * {@link NoReasonCode } - * - */ - public NoReasonCode getNoSpcfdRsn() { - return noSpcfdRsn; - } - - /** - * Sets the value of the noSpcfdRsn property. - * - * @param value - * allowed object is - * {@link NoReasonCode } - * - */ - public DeniedStatus16Choice setNoSpcfdRsn(NoReasonCode value) { - this.noSpcfdRsn = value; - return this; - } - - /** - * Gets the value of the rsn 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 set method for the rsn property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRsn().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DeniedReason11 } - * - * - */ - public List getRsn() { - if (rsn == null) { - rsn = new ArrayList(); - } - return this.rsn; - } - - @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); - } - - /** - * Adds a new item to the rsn list. - * @see #getRsn() - * - */ - public DeniedStatus16Choice addRsn(DeniedReason11 rsn) { - getRsn().add(rsn); - return this; - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency7Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency7Code.java deleted file mode 100644 index d836d03fa..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency7Code.java +++ /dev/null @@ -1,125 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EventFrequency7Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="EventFrequency7Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="YEAR"/>
- *     <enumeration value="ADHO"/>
- *     <enumeration value="MNTH"/>
- *     <enumeration value="DAIL"/>
- *     <enumeration value="INDA"/>
- *     <enumeration value="WEEK"/>
- *     <enumeration value="SEMI"/>
- *     <enumeration value="QUTR"/>
- *     <enumeration value="TOMN"/>
- *     <enumeration value="TOWK"/>
- *     <enumeration value="TWMN"/>
- *     <enumeration value="OVNG"/>
- *     <enumeration value="ONDE"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "EventFrequency7Code") -@XmlEnum -public enum EventFrequency7Code { - - - /** - * Event takes place every year or once a year. - * - */ - YEAR, - - /** - * Event takes place as necessary. - * - */ - ADHO, - - /** - * Event takes place every month or once a month. - * - */ - MNTH, - - /** - * Event takes place every day. - * - */ - DAIL, - - /** - * Event takes place several times a day. - * - */ - INDA, - - /** - * Event takes place once a week. - * - */ - WEEK, - - /** - * Event takes place every six months or two times a year. - * - */ - SEMI, - - /** - * Event takes place every three months or four times a year. - * - */ - QUTR, - - /** - * Event takes place every two months. - * - */ - TOMN, - - /** - * Event takes place every two weeks. - * - */ - TOWK, - - /** - * Event takes place two times a month. - * - */ - TWMN, - - /** - * Event takes place overnight. - * - */ - OVNG, - - /** - * Event takes place on demand. - * - */ - ONDE; - - public String value() { - return name(); - } - - public static EventFrequency7Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java deleted file mode 100644 index 42ab063b5..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java +++ /dev/null @@ -1,447 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for FailingReason3Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="FailingReason3Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AWMO"/>
- *     <enumeration value="BYIY"/>
- *     <enumeration value="CLAT"/>
- *     <enumeration value="ADEA"/>
- *     <enumeration value="CANR"/>
- *     <enumeration value="CAIS"/>
- *     <enumeration value="OBJT"/>
- *     <enumeration value="AWSH"/>
- *     <enumeration value="PHSE"/>
- *     <enumeration value="STCD"/>
- *     <enumeration value="DOCY"/>
- *     <enumeration value="MLAT"/>
- *     <enumeration value="DOCC"/>
- *     <enumeration value="BLOC"/>
- *     <enumeration value="CHAS"/>
- *     <enumeration value="NEWI"/>
- *     <enumeration value="CLAC"/>
- *     <enumeration value="MUNO"/>
- *     <enumeration value="GLOB"/>
- *     <enumeration value="PREA"/>
- *     <enumeration value="PART"/>
- *     <enumeration value="NOFX"/>
- *     <enumeration value="CMON"/>
- *     <enumeration value="YCOL"/>
- *     <enumeration value="COLL"/>
- *     <enumeration value="DEPO"/>
- *     <enumeration value="FLIM"/>
- *     <enumeration value="INCA"/>
- *     <enumeration value="LINK"/>
- *     <enumeration value="LACK"/>
- *     <enumeration value="LALO"/>
- *     <enumeration value="MONY"/>
- *     <enumeration value="NCON"/>
- *     <enumeration value="REFS"/>
- *     <enumeration value="SDUT"/>
- *     <enumeration value="BATC"/>
- *     <enumeration value="CYCL"/>
- *     <enumeration value="SBLO"/>
- *     <enumeration value="CPEC"/>
- *     <enumeration value="MINO"/>
- *     <enumeration value="IAAD"/>
- *     <enumeration value="OTHR"/>
- *     <enumeration value="PHCK"/>
- *     <enumeration value="BENO"/>
- *     <enumeration value="BOTH"/>
- *     <enumeration value="CLHT"/>
- *     <enumeration value="DENO"/>
- *     <enumeration value="DISA"/>
- *     <enumeration value="DKNY"/>
- *     <enumeration value="FROZ"/>
- *     <enumeration value="LAAW"/>
- *     <enumeration value="LATE"/>
- *     <enumeration value="LIQU"/>
- *     <enumeration value="PRCY"/>
- *     <enumeration value="REGT"/>
- *     <enumeration value="SETS"/>
- *     <enumeration value="CERT"/>
- *     <enumeration value="PRSY"/>
- *     <enumeration value="INBC"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "FailingReason3Code") -@XmlEnum -public enum FailingReason3Code { - - - /** - * Financial instruments are delivered, but still awaiting money from counterparty. - * - */ - AWMO, - - /** - * Buy-in procedure has started on the market (on your behalf if your instruction is a receipt, by the counterparty if your instruction is a delivery). - * - */ - BYIY, - - /** - * Counterparty's instruction was too late for settlement, that is the matching or settlement problems was solved too late. - * - */ - CLAT, - - /** - * Instruction was received after the account servicer's deadline. Processed on best effort basis. - * - */ - ADEA, - - /** - * Instruction was in suspense. Suspense period is finished so your cancellation or confirmation of instruction is required. - * - */ - CANR, - - /** - * Awaiting financial instruments from a corporate action or other procedure, for example, conversion, dematerialisation, exchange, registration, stamping, splitting. - * - */ - CAIS, - - /** - * Financial instruments are stolen, in dispute, under objection etc. - * - */ - OBJT, - - /** - * Financial instruments have not yet been received from the counterparty (if receive against payment trade), the money has been delivered. - * - */ - AWSH, - - /** - * Settlement is physical. Financial instruments are being delivered. - * - */ - PHSE, - - /** - * Discrepancy in the settlement confirmation. - * - */ - STCD, - - /** - * Awaiting documents or endorsements from you. - * - */ - DOCY, - - /** - * Covering money/financial instruments were received too late for completing settlement on a same day basis. - * - */ - MLAT, - - /** - * Awaiting documents or endorsements from counterparty. - * - */ - DOCC, - - /** - * Your account is blocked, no instruction can settle over the account. - * - */ - BLOC, - - /** - * A chaser/enquiry has been sent. - * - */ - CHAS, - - /** - * Financial instrument is a new issue and not yet available/tradable. - * - */ - NEWI, - - /** - * Insufficient deliverable financial instruments in counterparty's account or counterparty does not hold financial instruments. - * - */ - CLAC, - - /** - * Quantity instructed is not a multiple of an existing settlement quantity lot for the financial instrument. - * - */ - MUNO, - - /** - * Settlement cannot be executed; financial instruments are in global form. - * - */ - GLOB, - - /** - * Your instruction is a preadvice, that is, for matching only. - * - */ - PREA, - - /** - * Trade will settle in partials. - * - */ - PART, - - /** - * A foreign exchange instruction from you is missing. - * - */ - NOFX, - - /** - * Insufficient money in counterparty's account. - * - */ - CMON, - - /** - * Insufficient collateral in your account to execute the instruction. - * - */ - YCOL, - - /** - * Financial instruments are not deliverable as they are pledged as collateral. - * - */ - COLL, - - /** - * Deposit of shares for the issuing of depositary receipts has been refused. The allotment granted by the issuer is exceeded by your transaction. - * - */ - DEPO, - - /** - * Insufficient deliverable financial instruments in your account as maximum foreign limit has been reached. - * - */ - FLIM, - - /** - * Financial instruments require income adjustment, for example, dividend or interest. - * - */ - INCA, - - /** - * Your instruction is pending settlement because the instruction linked to it is pending. - * - */ - LINK, - - /** - * Insufficient financial instruments in your account. - * - */ - LACK, - - /** - * Financial instruments are out on loan. - * - */ - LALO, - - /** - * Insufficient money in your account. - * - */ - MONY, - - /** - * Confirmation of settlement has not yet been received. - * - */ - NCON, - - /** - * Delivery/receipt was refused because physical financial instruments are not in good order. - * - */ - REFS, - - /** - * Stamp duty information is missing. - * - */ - SDUT, - - /** - * Processing batch differs in the counterparty's instruction, for example, daytime/real-time versus overnight. - * - */ - BATC, - - /** - * Your instruction is confirmed in the local market or is ready for settlement, awaiting next settlement cycle. - * - */ - CYCL, - - /** - * Financial instruments are blocked due to a corporate action event, realignment, etc. - * - */ - SBLO, - - /** - * Counterparty is in receivership (form of bankruptcy where a court appointed person - the receiver - manages the affairs of the business). - * - */ - CPEC, - - /** - * Quantity instructed is lower than the minimum existing settlement quantity for the financial instrument. - * - */ - MINO, - - /** - * Pending reason being investigated. - * - */ - IAAD, - - /** - * Other. See Narrative. - * - */ - OTHR, - - /** - * Physical financial instruments have been received and are being checked for authenticity. - * - */ - PHCK, - - /** - * Disagreement in beneficial ownership. - * - */ - BENO, - - /** - * Counterparty's instruction and your instruction are on hold/frozen/ in a preadvice mode. - * - */ - BOTH, - - /** - * Instructed settlement date does not agree with the settlement date on the clearing house trade, that is, a specific type of trade in India. - * - */ - CLHT, - - /** - * Quantity instructed does not match the denomination available/deliverable. Physical securities need to be obtained in deliverable denominated quantities. - * - */ - DENO, - - /** - * Exceptional closing of all financial institutions due to natural disaster, for example, earthquake. - * - */ - DISA, - - /** - * Counterparty has returned or refuses the securities. - * - */ - DKNY, - - /** - * Financial instruments are blocked at the Central Security Depository (CSD) following a corporate event. - * - */ - FROZ, - - /** - * Awaiting settlement of a purchase to cover failing positions. - * - */ - LAAW, - - /** - * Instruction was received after market deadline. - * - */ - LATE, - - /** - * Central bank liquidity is insufficient. - * - */ - LIQU, - - /** - * Counterparty's instruction is a preadvice, that is, for matching only. - * - */ - PRCY, - - /** - * Certificates have been lodged with the registrar but rejected due to incomplete documentation or foreign ownership limitation reached. - * - */ - REGT, - - /** - * Settlement system/method has been modified at central securities depository to allow settlement. - * - */ - SETS, - - /** - * Certificate number error. - * - */ - CERT, - - /** - * Transaction was put on hold/frozen by the system. - * - */ - PRSY, - - /** - * Not all the instructions part of a pool have been received. - * - */ - INBC; - - public String value() { - return name(); - } - - public static FailingReason3Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7.java deleted file mode 100644 index bbeefb5f0..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7.java +++ /dev/null @@ -1,97 +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; - - -/** - * Specifies the reason why the instruction or request has a failing settlement status. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailingReason7", propOrder = { - "cd", - "addtlRsnInf" -}) -public class FailingReason7 { - - @XmlElement(name = "Cd", required = true) - protected FailingReason7Choice cd; - @XmlElement(name = "AddtlRsnInf") - protected String addtlRsnInf; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link FailingReason7Choice } - * - */ - public FailingReason7Choice getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link FailingReason7Choice } - * - */ - public FailingReason7 setCd(FailingReason7Choice value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the addtlRsnInf property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddtlRsnInf() { - return addtlRsnInf; - } - - /** - * Sets the value of the addtlRsnInf property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public FailingReason7 setAddtlRsnInf(String value) { - this.addtlRsnInf = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7Choice.java deleted file mode 100644 index 8a9cb32ce..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason7Choice.java +++ /dev/null @@ -1,99 +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 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; - - -/** - * Choice of format for the failing reason. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailingReason7Choice", propOrder = { - "cd", - "prtry" -}) -public class FailingReason7Choice { - - @XmlElement(name = "Cd") - @XmlSchemaType(name = "string") - protected FailingReason3Code cd; - @XmlElement(name = "Prtry") - protected GenericIdentification30 prtry; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link FailingReason3Code } - * - */ - public FailingReason3Code getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link FailingReason3Code } - * - */ - public FailingReason7Choice setCd(FailingReason3Code value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link GenericIdentification30 } - * - */ - public GenericIdentification30 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link GenericIdentification30 } - * - */ - public FailingReason7Choice setPrtry(GenericIdentification30 value) { - this.prtry = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingStatus9Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingStatus9Choice.java deleted file mode 100644 index 983ab2594..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingStatus9Choice.java +++ /dev/null @@ -1,115 +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; - - -/** - * Choice of failing status. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailingStatus9Choice", propOrder = { - "noSpcfdRsn", - "rsn" -}) -public class FailingStatus9Choice { - - @XmlElement(name = "NoSpcfdRsn") - @XmlSchemaType(name = "string") - protected NoReasonCode noSpcfdRsn; - @XmlElement(name = "Rsn") - protected List rsn; - - /** - * Gets the value of the noSpcfdRsn property. - * - * @return - * possible object is - * {@link NoReasonCode } - * - */ - public NoReasonCode getNoSpcfdRsn() { - return noSpcfdRsn; - } - - /** - * Sets the value of the noSpcfdRsn property. - * - * @param value - * allowed object is - * {@link NoReasonCode } - * - */ - public FailingStatus9Choice setNoSpcfdRsn(NoReasonCode value) { - this.noSpcfdRsn = value; - return this; - } - - /** - * Gets the value of the rsn 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 set method for the rsn property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRsn().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FailingReason7 } - * - * - */ - public List getRsn() { - if (rsn == null) { - rsn = new ArrayList(); - } - return this.rsn; - } - - @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); - } - - /** - * Adds a new item to the rsn list. - * @see #getRsn() - * - */ - public FailingStatus9Choice addRsn(FailingReason7 rsn) { - getRsn().add(rsn); - return this; - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAggregateBalance1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAggregateBalance1.java index d5dd63525..4eb1f2594 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAggregateBalance1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAggregateBalance1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrumentAggregateBalance1 { - @XmlElement(name = "ItmDt", required = true) + @XmlElement(name = "ItmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar itmDt; @XmlElement(name = "Hldgs", required = true) @@ -42,7 +45,7 @@ public class FinancialInstrumentAggregateBalance1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getItmDt() { @@ -54,7 +57,7 @@ public XMLGregorianCalendar getItmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAggregateBalance1 setItmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes13.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes13.java index 1c74af073..da058ee4b 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes13.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes13.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; @@ -93,31 +95,40 @@ public class FinancialInstrumentAttributes13 { 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") @@ -468,7 +479,7 @@ public FinancialInstrumentAttributes13 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -480,7 +491,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setCpnDt(XMLGregorianCalendar value) { @@ -493,7 +504,7 @@ public FinancialInstrumentAttributes13 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -505,7 +516,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setXpryDt(XMLGregorianCalendar value) { @@ -518,7 +529,7 @@ public FinancialInstrumentAttributes13 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -530,7 +541,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -543,7 +554,7 @@ public FinancialInstrumentAttributes13 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -555,7 +566,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setMtrtyDt(XMLGregorianCalendar value) { @@ -568,7 +579,7 @@ public FinancialInstrumentAttributes13 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -580,7 +591,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setIsseDt(XMLGregorianCalendar value) { @@ -593,7 +604,7 @@ public FinancialInstrumentAttributes13 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -605,7 +616,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setNxtCllblDt(XMLGregorianCalendar value) { @@ -618,7 +629,7 @@ public FinancialInstrumentAttributes13 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -630,7 +641,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setPutblDt(XMLGregorianCalendar value) { @@ -643,7 +654,7 @@ public FinancialInstrumentAttributes13 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -655,7 +666,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setDtdDt(XMLGregorianCalendar value) { @@ -668,7 +679,7 @@ public FinancialInstrumentAttributes13 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -680,7 +691,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes13 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes21.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes21.java index c499fbbc4..b3bd09650 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes21.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes21.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; @@ -93,31 +95,40 @@ public class FinancialInstrumentAttributes21 { 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") @@ -468,7 +479,7 @@ public FinancialInstrumentAttributes21 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -480,7 +491,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setCpnDt(XMLGregorianCalendar value) { @@ -493,7 +504,7 @@ public FinancialInstrumentAttributes21 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -505,7 +516,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setXpryDt(XMLGregorianCalendar value) { @@ -518,7 +529,7 @@ public FinancialInstrumentAttributes21 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -530,7 +541,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -543,7 +554,7 @@ public FinancialInstrumentAttributes21 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -555,7 +566,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setMtrtyDt(XMLGregorianCalendar value) { @@ -568,7 +579,7 @@ public FinancialInstrumentAttributes21 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -580,7 +591,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setIsseDt(XMLGregorianCalendar value) { @@ -593,7 +604,7 @@ public FinancialInstrumentAttributes21 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -605,7 +616,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setNxtCllblDt(XMLGregorianCalendar value) { @@ -618,7 +629,7 @@ public FinancialInstrumentAttributes21 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -630,7 +641,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setPutblDt(XMLGregorianCalendar value) { @@ -643,7 +654,7 @@ public FinancialInstrumentAttributes21 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -655,7 +666,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setDtdDt(XMLGregorianCalendar value) { @@ -668,7 +679,7 @@ public FinancialInstrumentAttributes21 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -680,7 +691,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes21 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes26.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes26.java index 4813d9fe0..18853b8f4 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes26.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes26.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; @@ -93,31 +95,40 @@ public class FinancialInstrumentAttributes26 { 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") @@ -468,7 +479,7 @@ public FinancialInstrumentAttributes26 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -480,7 +491,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setCpnDt(XMLGregorianCalendar value) { @@ -493,7 +504,7 @@ public FinancialInstrumentAttributes26 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -505,7 +516,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setXpryDt(XMLGregorianCalendar value) { @@ -518,7 +529,7 @@ public FinancialInstrumentAttributes26 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -530,7 +541,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -543,7 +554,7 @@ public FinancialInstrumentAttributes26 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -555,7 +566,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setMtrtyDt(XMLGregorianCalendar value) { @@ -568,7 +579,7 @@ public FinancialInstrumentAttributes26 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -580,7 +591,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setIsseDt(XMLGregorianCalendar value) { @@ -593,7 +604,7 @@ public FinancialInstrumentAttributes26 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -605,7 +616,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setNxtCllblDt(XMLGregorianCalendar value) { @@ -618,7 +629,7 @@ public FinancialInstrumentAttributes26 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -630,7 +641,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setPutblDt(XMLGregorianCalendar value) { @@ -643,7 +654,7 @@ public FinancialInstrumentAttributes26 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -655,7 +666,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setDtdDt(XMLGregorianCalendar value) { @@ -668,7 +679,7 @@ public FinancialInstrumentAttributes26 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -680,7 +691,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes26 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes27.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes27.java index 9d48a45ab..295e9a2e5 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes27.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes27.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; @@ -93,31 +95,40 @@ public class FinancialInstrumentAttributes27 { 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") @@ -468,7 +479,7 @@ public FinancialInstrumentAttributes27 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -480,7 +491,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setCpnDt(XMLGregorianCalendar value) { @@ -493,7 +504,7 @@ public FinancialInstrumentAttributes27 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -505,7 +516,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setXpryDt(XMLGregorianCalendar value) { @@ -518,7 +529,7 @@ public FinancialInstrumentAttributes27 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -530,7 +541,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -543,7 +554,7 @@ public FinancialInstrumentAttributes27 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -555,7 +566,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setMtrtyDt(XMLGregorianCalendar value) { @@ -568,7 +579,7 @@ public FinancialInstrumentAttributes27 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -580,7 +591,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setIsseDt(XMLGregorianCalendar value) { @@ -593,7 +604,7 @@ public FinancialInstrumentAttributes27 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -605,7 +616,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setNxtCllblDt(XMLGregorianCalendar value) { @@ -618,7 +629,7 @@ public FinancialInstrumentAttributes27 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -630,7 +641,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setPutblDt(XMLGregorianCalendar value) { @@ -643,7 +654,7 @@ public FinancialInstrumentAttributes27 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -655,7 +666,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setDtdDt(XMLGregorianCalendar value) { @@ -668,7 +679,7 @@ public FinancialInstrumentAttributes27 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -680,7 +691,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes27 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes30.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes30.java index be6d70b23..445b9e02f 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes30.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes30.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 FinancialInstrumentAttributes30 { 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 FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setCpnDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setXpryDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setMtrtyDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setIsseDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setNxtCllblDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setPutblDt(XMLGregorianCalendar value) { @@ -640,7 +651,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setDtdDt(XMLGregorianCalendar value) { @@ -665,7 +676,7 @@ public FinancialInstrumentAttributes30 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 FinancialInstrumentAttributes30 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes36.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes36.java index 5d0360385..af5efe702 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes36.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes36.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes36 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes36 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes36 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes36 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes36 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes36 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes36 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes36 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes36 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes36 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes36 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes4.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes4.java index c4ae29582..db874183b 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes4.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes4.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; @@ -93,31 +95,40 @@ public class FinancialInstrumentAttributes4 { 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") @@ -468,7 +479,7 @@ public FinancialInstrumentAttributes4 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -480,7 +491,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setCpnDt(XMLGregorianCalendar value) { @@ -493,7 +504,7 @@ public FinancialInstrumentAttributes4 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -505,7 +516,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setXpryDt(XMLGregorianCalendar value) { @@ -518,7 +529,7 @@ public FinancialInstrumentAttributes4 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -530,7 +541,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -543,7 +554,7 @@ public FinancialInstrumentAttributes4 setFltgRateFxgDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -555,7 +566,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setMtrtyDt(XMLGregorianCalendar value) { @@ -568,7 +579,7 @@ public FinancialInstrumentAttributes4 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -580,7 +591,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setIsseDt(XMLGregorianCalendar value) { @@ -593,7 +604,7 @@ public FinancialInstrumentAttributes4 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -605,7 +616,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setNxtCllblDt(XMLGregorianCalendar value) { @@ -618,7 +629,7 @@ public FinancialInstrumentAttributes4 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -630,7 +641,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setPutblDt(XMLGregorianCalendar value) { @@ -643,7 +654,7 @@ public FinancialInstrumentAttributes4 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -655,7 +666,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setDtdDt(XMLGregorianCalendar value) { @@ -668,7 +679,7 @@ public FinancialInstrumentAttributes4 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -680,7 +691,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes4 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes42.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes42.java index b8a93a48d..878131d11 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes42.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes42.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes42 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes42 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes42 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes42 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes42 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes42 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes42 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes42 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes42 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes42 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes42 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes63.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes63.java index c3d401db7..896fae471 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes63.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes63.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes63 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes63 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes63 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes63 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes63 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes63 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes63 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes63 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes63 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes63 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes63 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes75.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes75.java index 9d29eba07..ab1e3939e 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes75.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes75.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes75 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes75 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes75 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes75 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes75 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes75 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes75 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes75 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes75 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes75 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes75 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes92.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes92.java index c9df8ee66..6dd43e7d6 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes92.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes92.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes92 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes92 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes92 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes92 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes92 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes92 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes92 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes92 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes92 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes92 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes92 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes95.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes95.java index 2a4430f99..3070ba2ae 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes95.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes95.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; @@ -88,31 +90,40 @@ public class FinancialInstrumentAttributes95 { 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") @@ -415,7 +426,7 @@ public FinancialInstrumentAttributes95 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -427,7 +438,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setCpnDt(XMLGregorianCalendar value) { @@ -440,7 +451,7 @@ public FinancialInstrumentAttributes95 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -452,7 +463,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setXpryDt(XMLGregorianCalendar value) { @@ -465,7 +476,7 @@ public FinancialInstrumentAttributes95 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -477,7 +488,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes95 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -502,7 +513,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setMtrtyDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes95 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -527,7 +538,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setIsseDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes95 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -552,7 +563,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setNxtCllblDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes95 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -577,7 +588,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setPutblDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes95 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -602,7 +613,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setDtdDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes95 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -627,7 +638,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes95 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms1.java index d78880b15..b90ebe527 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms1.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 ForeignExchangeTerms1 { 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 ForeignExchangeTerms1 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 ForeignExchangeTerms1 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms14.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms14.java index e922bf7cf..27e491583 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms14.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms14.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 ForeignExchangeTerms14 { 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 ForeignExchangeTerms14 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 ForeignExchangeTerms14 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms16.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms16.java index d7e64f1af..56f48fd83 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms16.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms16.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 ForeignExchangeTerms16 { 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 ForeignExchangeTerms16 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 ForeignExchangeTerms16 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms2.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms2.java index 17187a1ad..5ec1dc6b3 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms2.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms2.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 ForeignExchangeTerms2 { 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 ForeignExchangeTerms2 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 ForeignExchangeTerms2 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms22.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms22.java index fd1ffa043..520c1e5bd 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms22.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms22.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 ForeignExchangeTerms22 { 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 ForeignExchangeTerms22 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 ForeignExchangeTerms22 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms3.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms3.java index b3e16dc0c..818e447d7 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms3.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms3.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 ForeignExchangeTerms3 { 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 ForeignExchangeTerms3 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 ForeignExchangeTerms3 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms31.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms31.java index 50eaf9989..05db0c541 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms31.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms31.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 ForeignExchangeTerms31 { 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 ForeignExchangeTerms31 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 ForeignExchangeTerms31 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms34.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms34.java index af489279b..942c440b8 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms34.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms34.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 ForeignExchangeTerms34 { 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 ForeignExchangeTerms34 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 ForeignExchangeTerms34 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms35.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms35.java index 5d87eb852..703718fad 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms35.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms35.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 ForeignExchangeTerms35 { 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 ForeignExchangeTerms35 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 ForeignExchangeTerms35 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency22Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency22Choice.java deleted file mode 100644 index 7739739c3..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency22Choice.java +++ /dev/null @@ -1,99 +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 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; - - -/** - * Choice of format for a frequency, for example, the frequency of delivery of a statement. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Frequency22Choice", propOrder = { - "cd", - "prtry" -}) -public class Frequency22Choice { - - @XmlElement(name = "Cd") - @XmlSchemaType(name = "string") - protected EventFrequency7Code cd; - @XmlElement(name = "Prtry") - protected GenericIdentification30 prtry; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link EventFrequency7Code } - * - */ - public EventFrequency7Code getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link EventFrequency7Code } - * - */ - public Frequency22Choice setCd(EventFrequency7Code value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link GenericIdentification30 } - * - */ - public GenericIdentification30 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link GenericIdentification30 } - * - */ - public Frequency22Choice setPrtry(GenericIdentification30 value) { - this.prtry = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails39.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails39.java index cffea5f0c..e60b64c7e 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails39.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails39.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionDetails39 { protected GenericIdentification37 lotNb; @XmlElement(name = "SttlmDt", required = true) protected DateAndDateTimeChoice sttlmDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "BalFr") @@ -236,7 +239,7 @@ public IntraPositionDetails39 setSttlmDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionDetails39 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails42.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails42.java index b797f6195..7b202fb6e 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails42.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails42.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionDetails42 { protected GenericIdentification39 lotNb; @XmlElement(name = "SttlmDt", required = true) protected DateAndDateTimeChoice sttlmDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "BalFr") @@ -236,7 +239,7 @@ public IntraPositionDetails42 setSttlmDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionDetails42 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails49.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails49.java index ffeddb59f..d250ea2e5 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails49.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails49.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionDetails49 { protected GenericIdentification37 lotNb; @XmlElement(name = "SttlmDt", required = true) protected DateAndDateTime2Choice sttlmDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "BalFr") @@ -236,7 +239,7 @@ public IntraPositionDetails49 setSttlmDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionDetails49 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails50.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails50.java index b622967cd..52d2089f7 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails50.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionDetails50.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionDetails50 { protected GenericIdentification39 lotNb; @XmlElement(name = "SttlmDt", required = true) protected DateAndDateTime2Choice sttlmDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "BalFr") @@ -236,7 +239,7 @@ public IntraPositionDetails50 setSttlmDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -248,7 +251,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionDetails50 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails13.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails13.java index b3f15a2e9..f81f2aff7 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails13.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails13.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails13 { protected DateAndDateTimeChoice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTimeChoice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails13 setAvlblDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails13 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails14.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails14.java index 3ad934a90..f751145c7 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails14.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails14.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails14 { protected DateAndDateTimeChoice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTimeChoice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails14 setAvlblDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails14 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails15.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails15.java index cddff0200..7d22ccbc6 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails15.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails15 { protected DateAndDateTime2Choice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTime2Choice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails15 setAvlblDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails15 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails16.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails16.java index 6afef0c73..b6267127f 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails16.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails16.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails16 { protected DateAndDateTime2Choice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTime2Choice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails16 setAvlblDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails16 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails17.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails17.java index d6de77604..8d96e79b1 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails17.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails17.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails17 { protected DateAndDateTime2Choice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTime2Choice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails17 setAvlblDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails17 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails18.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails18.java index 82f2a9dc0..68a33f2f5 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails18.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraPositionMovementDetails18.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntraPositionMovementDetails18 { protected DateAndDateTime2Choice sttlmDt; @XmlElement(name = "AvlblDt") protected DateAndDateTime2Choice avlblDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; @XmlElement(name = "CorpActnEvtTp") @@ -272,7 +275,7 @@ public IntraPositionMovementDetails18 setAvlblDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -284,7 +287,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntraPositionMovementDetails18 setAckdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction2.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction2.java index eab5c37d0..0da973f88 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction2.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction2.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; @@ -61,7 +64,8 @@ public class InvestmentFundTransaction2 { protected String legId; @XmlElement(name = "LegExctnId") protected String legExctnId; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "SttldTxInd") @@ -78,7 +82,8 @@ public class InvestmentFundTransaction2 { protected ReversalCode rvsl; @XmlElement(name = "GrssSttlmAmt") protected ActiveCurrencyAndAmount grssSttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "TradDtTm", required = true) @@ -295,7 +300,7 @@ public InvestmentFundTransaction2 setLegExctnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -307,7 +312,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -454,7 +459,7 @@ public InvestmentFundTransaction2 setGrssSttlmAmt(ActiveCurrencyAndAmount value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -466,7 +471,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction2 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction3.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction3.java index 1b1a714f9..23799d802 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction3.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction3.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; @@ -72,7 +75,8 @@ public class InvestmentFundTransaction3 { protected String legId; @XmlElement(name = "LegExctnId") protected String legExctnId; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "SttldTxInd") @@ -89,7 +93,8 @@ public class InvestmentFundTransaction3 { protected ReversalCode rvsl; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "TradDtTm", required = true) @@ -381,7 +386,7 @@ public InvestmentFundTransaction3 setLegExctnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -393,7 +398,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -540,7 +545,7 @@ public InvestmentFundTransaction3 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -552,7 +557,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction3 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction4.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction4.java index b248d1168..cd2f1f644 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction4.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransaction4.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; @@ -61,7 +64,8 @@ public class InvestmentFundTransaction4 { protected String legId; @XmlElement(name = "LegExctnId") protected String legExctnId; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "SttldTxInd") @@ -78,7 +82,8 @@ public class InvestmentFundTransaction4 { protected ReversalCode rvsl; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "TradDtTm", required = true) @@ -295,7 +300,7 @@ public InvestmentFundTransaction4 setLegExctnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -307,7 +312,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -454,7 +459,7 @@ public InvestmentFundTransaction4 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -466,7 +471,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvestmentFundTransaction4 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyCalculationRecord1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyCalculationRecord1.java index 7b35b8e71..cc57cd496 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyCalculationRecord1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyCalculationRecord1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PenaltyCalculationRecord1 { - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "MssngRefData") @@ -48,7 +51,7 @@ public class PenaltyCalculationRecord1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -60,7 +63,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PenaltyCalculationRecord1 setDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyTransactionRecord1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyTransactionRecord1.java index 6352514b9..beb31d3c6 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyTransactionRecord1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PenaltyTransactionRecord1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -63,10 +65,12 @@ public class PenaltyTransactionRecord1 { protected PartyIdentification135 cshAcctOwnr; @XmlElement(name = "PstngAmt") protected AmountAndDirection5 pstngAmt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SttlmStsFlng") @@ -354,7 +358,7 @@ public PenaltyTransactionRecord1 setPstngAmt(AmountAndDirection5 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -366,7 +370,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PenaltyTransactionRecord1 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -379,7 +383,7 @@ public PenaltyTransactionRecord1 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -391,7 +395,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PenaltyTransactionRecord1 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java deleted file mode 100644 index 1e9d198a3..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java +++ /dev/null @@ -1,433 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PendingReason10Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="PendingReason10Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="AWMO"/>
- *     <enumeration value="ADEA"/>
- *     <enumeration value="CAIS"/>
- *     <enumeration value="REFU"/>
- *     <enumeration value="AWSH"/>
- *     <enumeration value="PHSE"/>
- *     <enumeration value="TAMM"/>
- *     <enumeration value="DOCY"/>
- *     <enumeration value="DOCC"/>
- *     <enumeration value="BLOC"/>
- *     <enumeration value="CHAS"/>
- *     <enumeration value="NEWI"/>
- *     <enumeration value="CLAC"/>
- *     <enumeration value="MUNO"/>
- *     <enumeration value="GLOB"/>
- *     <enumeration value="PREA"/>
- *     <enumeration value="PART"/>
- *     <enumeration value="NMAS"/>
- *     <enumeration value="NOFX"/>
- *     <enumeration value="CMON"/>
- *     <enumeration value="YCOL"/>
- *     <enumeration value="COLL"/>
- *     <enumeration value="DEPO"/>
- *     <enumeration value="FLIM"/>
- *     <enumeration value="INCA"/>
- *     <enumeration value="LINK"/>
- *     <enumeration value="FUTU"/>
- *     <enumeration value="LACK"/>
- *     <enumeration value="LALO"/>
- *     <enumeration value="MONY"/>
- *     <enumeration value="NCON"/>
- *     <enumeration value="REFS"/>
- *     <enumeration value="SDUT"/>
- *     <enumeration value="BATC"/>
- *     <enumeration value="CYCL"/>
- *     <enumeration value="SBLO"/>
- *     <enumeration value="CPEC"/>
- *     <enumeration value="MINO"/>
- *     <enumeration value="IAAD"/>
- *     <enumeration value="OTHR"/>
- *     <enumeration value="PHCK"/>
- *     <enumeration value="BENO"/>
- *     <enumeration value="BOTH"/>
- *     <enumeration value="CLHT"/>
- *     <enumeration value="DENO"/>
- *     <enumeration value="DISA"/>
- *     <enumeration value="DKNY"/>
- *     <enumeration value="FROZ"/>
- *     <enumeration value="LAAW"/>
- *     <enumeration value="LATE"/>
- *     <enumeration value="LIQU"/>
- *     <enumeration value="PRCY"/>
- *     <enumeration value="REGT"/>
- *     <enumeration value="SETS"/>
- *     <enumeration value="CERT"/>
- *     <enumeration value="PRSY"/>
- *     <enumeration value="INBC"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PendingReason10Code") -@XmlEnum -public enum PendingReason10Code { - - - /** - * Financial instruments are delivered, but still awaiting money from counterparty. - * - */ - AWMO, - - /** - * Instruction was received after the account servicer's deadline. Processed on best effort basis. - * - */ - ADEA, - - /** - * Awaiting financial instruments from a corporate action or other procedure, for example, conversion, dematerialisation, exchange, registration, stamping, splitting. - * - */ - CAIS, - - /** - * Instruction has been refused or not recognised and is represented automatically. - * - */ - REFU, - - /** - * Financial instruments have not yet been received from the counterparty (if receive against payment trade), the money has been delivered. - * - */ - AWSH, - - /** - * Settlement is physical. Financial instruments are being delivered. - * - */ - PHSE, - - /** - * Trade is being amended in the market. - * - */ - TAMM, - - /** - * Awaiting documents or endorsements from you. - * - */ - DOCY, - - /** - * Awaiting documents or endorsements from counterparty. - * - */ - DOCC, - - /** - * Your account is blocked, no instruction can settle over the account. - * - */ - BLOC, - - /** - * A chaser/enquiry has been sent. - * - */ - CHAS, - - /** - * Financial instrument is a new issue and not yet available/tradable. - * - */ - NEWI, - - /** - * Insufficient deliverable financial instruments in counterparty's account or counterparty does not hold financial instruments. - * - */ - CLAC, - - /** - * Quantity instructed is not a multiple of an existing settlement quantity lot for the financial instrument. - * - */ - MUNO, - - /** - * Settlement cannot be executed; financial instruments are in global form. - * - */ - GLOB, - - /** - * Your instruction is a preadvice, that is, for matching only. - * - */ - PREA, - - /** - * Trade will settle in partials. - * - */ - PART, - - /** - * Instruction has not been matched; matching process is not required. - * - */ - NMAS, - - /** - * A foreign exchange instruction from you is missing. - * - */ - NOFX, - - /** - * Insufficient money in counterparty's account. - * - */ - CMON, - - /** - * Insufficient collateral in your account to execute the instruction. - * - */ - YCOL, - - /** - * Financial instruments are not deliverable as they are pledged as collateral. - * - */ - COLL, - - /** - * Deposit of shares for the issuing of depositary receipts has been refused. The allotment granted by the issuer is exceeded by your transaction. - * - */ - DEPO, - - /** - * Insufficient deliverable financial instruments in your account as maximum foreign limit has been reached. - * - */ - FLIM, - - /** - * Financial instruments require income adjustment, for example, dividend or interest. - * - */ - INCA, - - /** - * Your instruction is pending settlement because the instruction linked to it is pending. - * - */ - LINK, - - /** - * Awaiting settlement date. No settlement problems to be reported. - * - */ - FUTU, - - /** - * Insufficient financial instruments in your account. - * - */ - LACK, - - /** - * Financial instruments are out on loan. - * - */ - LALO, - - /** - * Insufficient money in your account. - * - */ - MONY, - - /** - * Confirmation of settlement has not yet been received. - * - */ - NCON, - - /** - * Delivery/receipt was refused because physical financial instruments are not in good order. - * - */ - REFS, - - /** - * Stamp duty information is missing. - * - */ - SDUT, - - /** - * Processing batch differs in the counterparty's instruction, for example, daytime/real-time versus overnight. - * - */ - BATC, - - /** - * Your instruction is confirmed in the local market or is ready for settlement, awaiting next settlement cycle. - * - */ - CYCL, - - /** - * Financial instruments are blocked due to a corporate action event, realignment, etc. - * - */ - SBLO, - - /** - * Counterparty is in receivership (form of bankruptcy where a court appointed person - the receiver - manages the affairs of the business). - * - */ - CPEC, - - /** - * Quantity instructed is lower than the minimum existing settlement quantity for the financial instrument. - * - */ - MINO, - - /** - * Pending reason being investigated. - * - */ - IAAD, - - /** - * Other. See Narrative. - * - */ - OTHR, - - /** - * Physical financial instruments have been received and are being checked for authenticity. - * - */ - PHCK, - - /** - * Disagreement in beneficial ownership. - * - */ - BENO, - - /** - * Counterparty's instruction and your instruction are on hold/frozen/ in a preadvice mode. - * - */ - BOTH, - - /** - * Instructed settlement date does not agree with the settlement date on the clearing house trade, that is, a specific type of trade in India. - * - */ - CLHT, - - /** - * Quantity instructed does not match the denomination available/deliverable. Physical securities need to be obtained in deliverable denominated quantities. - * - */ - DENO, - - /** - * Exceptional closing of all financial institutions due to natural disaster, for example, earthquake. - * - */ - DISA, - - /** - * Counterparty has returned or refuses the securities. - * - */ - DKNY, - - /** - * Financial instruments are blocked at the Central Security Depository (CSD) following a corporate event. - * - */ - FROZ, - - /** - * Awaiting settlement of a purchase to cover failing positions. - * - */ - LAAW, - - /** - * Instruction was received after market deadline. - * - */ - LATE, - - /** - * Central bank liquidity is insufficient. - * - */ - LIQU, - - /** - * Counterparty's instruction is a preadvice, that is, for matching only. - * - */ - PRCY, - - /** - * Certificates have been lodged with the registrar but rejected due to incomplete documentation or foreign ownership limitation reached. - * - */ - REGT, - - /** - * Settlement system/method has been modified at central securities depository to allow settlement. - * - */ - SETS, - - /** - * Certificate number error. - * - */ - CERT, - - /** - * Transaction was put on hold/frozen by the system. - * - */ - PRSY, - - /** - * Not all the instructions part of a pool have been received. - * - */ - INBC; - - public String value() { - return name(); - } - - public static PendingReason10Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason14.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason14.java deleted file mode 100644 index eef5569d5..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason14.java +++ /dev/null @@ -1,97 +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; - - -/** - * Specifies the reason why the instruction or request has a pending status. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PendingReason14", propOrder = { - "cd", - "addtlRsnInf" -}) -public class PendingReason14 { - - @XmlElement(name = "Cd", required = true) - protected PendingReason26Choice cd; - @XmlElement(name = "AddtlRsnInf") - protected String addtlRsnInf; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link PendingReason26Choice } - * - */ - public PendingReason26Choice getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link PendingReason26Choice } - * - */ - public PendingReason14 setCd(PendingReason26Choice value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the addtlRsnInf property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddtlRsnInf() { - return addtlRsnInf; - } - - /** - * Sets the value of the addtlRsnInf property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public PendingReason14 setAddtlRsnInf(String value) { - this.addtlRsnInf = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason26Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason26Choice.java deleted file mode 100644 index e7b6d499f..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason26Choice.java +++ /dev/null @@ -1,99 +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 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; - - -/** - * Choice of format for the pending reason. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PendingReason26Choice", propOrder = { - "cd", - "prtry" -}) -public class PendingReason26Choice { - - @XmlElement(name = "Cd") - @XmlSchemaType(name = "string") - protected PendingReason10Code cd; - @XmlElement(name = "Prtry") - protected GenericIdentification30 prtry; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link PendingReason10Code } - * - */ - public PendingReason10Code getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link PendingReason10Code } - * - */ - public PendingReason26Choice setCd(PendingReason10Code value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link GenericIdentification30 } - * - */ - public GenericIdentification30 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link GenericIdentification30 } - * - */ - public PendingReason26Choice setPrtry(GenericIdentification30 value) { - this.prtry = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason8Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason8Code.java index 7fec4f601..2c4c0c0ca 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason8Code.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason8Code.java @@ -307,7 +307,7 @@ public enum PendingReason8Code { 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingStatus36Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingStatus36Choice.java deleted file mode 100644 index 5fd07d67d..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingStatus36Choice.java +++ /dev/null @@ -1,115 +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; - - -/** - * Specifies whether the status is provided with a reason or not. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PendingStatus36Choice", propOrder = { - "noSpcfdRsn", - "rsn" -}) -public class PendingStatus36Choice { - - @XmlElement(name = "NoSpcfdRsn") - @XmlSchemaType(name = "string") - protected NoReasonCode noSpcfdRsn; - @XmlElement(name = "Rsn") - protected List rsn; - - /** - * Gets the value of the noSpcfdRsn property. - * - * @return - * possible object is - * {@link NoReasonCode } - * - */ - public NoReasonCode getNoSpcfdRsn() { - return noSpcfdRsn; - } - - /** - * Sets the value of the noSpcfdRsn property. - * - * @param value - * allowed object is - * {@link NoReasonCode } - * - */ - public PendingStatus36Choice setNoSpcfdRsn(NoReasonCode value) { - this.noSpcfdRsn = value; - return this; - } - - /** - * Gets the value of the rsn 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 set method for the rsn property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRsn().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PendingReason14 } - * - * - */ - public List getRsn() { - if (rsn == null) { - rsn = new ArrayList(); - } - return this.rsn; - } - - @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); - } - - /** - * Adds a new item to the rsn list. - * @see #getRsn() - * - */ - public PendingStatus36Choice addRsn(PendingReason14 rsn) { - getRsn().add(rsn); - return this; - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2Choice.java index 461635d51..8f4ab44f4 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2Choice.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2Choice.java @@ -12,7 +12,7 @@ /** - * Choice between date and date-time for the specification of a period. + * Choice between date and datetime for the specification of a period. * * * diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period7Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period7Choice.java deleted file mode 100644 index 61d2ecdb9..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period7Choice.java +++ /dev/null @@ -1,97 +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; - - -/** - * Choice between date and date-time for the specification of a period. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Period7Choice", propOrder = { - "frDtTmToDtTm", - "frDtToDt" -}) -public class Period7Choice { - - @XmlElement(name = "FrDtTmToDtTm") - protected DateTimePeriod1 frDtTmToDtTm; - @XmlElement(name = "FrDtToDt") - protected Period2 frDtToDt; - - /** - * Gets the value of the frDtTmToDtTm property. - * - * @return - * possible object is - * {@link DateTimePeriod1 } - * - */ - public DateTimePeriod1 getFrDtTmToDtTm() { - return frDtTmToDtTm; - } - - /** - * Sets the value of the frDtTmToDtTm property. - * - * @param value - * allowed object is - * {@link DateTimePeriod1 } - * - */ - public Period7Choice setFrDtTmToDtTm(DateTimePeriod1 value) { - this.frDtTmToDtTm = value; - return this; - } - - /** - * Gets the value of the frDtToDt property. - * - * @return - * possible object is - * {@link Period2 } - * - */ - public Period2 getFrDtToDt() { - return frDtToDt; - } - - /** - * Sets the value of the frDtToDt property. - * - * @param value - * allowed object is - * {@link Period2 } - * - */ - public Period7Choice setFrDtToDt(Period2 value) { - this.frDtToDt = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegistrationProcessingStatus3Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegistrationProcessingStatus3Choice.java index 935e8de28..6d3ca4a81 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegistrationProcessingStatus3Choice.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegistrationProcessingStatus3Choice.java @@ -13,7 +13,7 @@ /** - * Choice of format for the registration processing status + * Choice of format for the registration processing status. * * * diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportItem1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportItem1.java index 11afc2f99..ed1a62f62 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportItem1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportItem1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReportItem1 { protected HoldingAccountLevel1Code acctLvl; @XmlElement(name = "FinInstrmId") protected SecurityIdentification19 finInstrmId; - @XmlElement(name = "ItmDt") + @XmlElement(name = "ItmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar itmDt; @@ -119,7 +122,7 @@ public ReportItem1 setFinInstrmId(SecurityIdentification19 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getItmDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getItmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReportItem1 setItmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesBalanceType7Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesBalanceType7Code.java index d78ef9b29..056b41266 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesBalanceType7Code.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesBalanceType7Code.java @@ -81,7 +81,7 @@ public enum SecuritiesBalanceType7Code { ISSU, /** - * In Issuer Agent / Depository communication, balance of issued financial instruments for which legal documentation has not yet been received. + * In issuer agent / depository communication, balance of issued financial instruments for which legal documentation has not yet been received. * */ QUAS; diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlementStatus1Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlementStatus1Code.java deleted file mode 100644 index 83cdecee1..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlementStatus1Code.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 SecuritiesSettlementStatus1Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="SecuritiesSettlementStatus1Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="PEND"/>
- *     <enumeration value="PENF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "SecuritiesSettlementStatus1Code") -@XmlEnum -public enum SecuritiesSettlementStatus1Code { - - - /** - * Instruction is pending. Settlement at the instructed settlement date is still possible. - * - */ - PEND, - - /** - * Instruction is failing. Settlement at the instructed settlement date is no longer possible. - * - */ - PENF; - - public String value() { - return name(); - } - - public static SecuritiesSettlementStatus1Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription1.java index 0e27091cc..ffe0b14d1 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription1.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 SecurityInstrumentDescription1 { protected String 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 SecurityInstrumentDescription1 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 SecurityInstrumentDescription1 setExrcDt(XMLGregorianCalendar value) { @@ -158,7 +162,7 @@ public SecurityInstrumentDescription1 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 SecurityInstrumentDescription1 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementStatus16Choice.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementStatus16Choice.java deleted file mode 100644 index 06a916d1d..000000000 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementStatus16Choice.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; - - -/** - * Choice of format for the settlement status. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SettlementStatus16Choice", propOrder = { - "pdg", - "flng", - "prtry" -}) -public class SettlementStatus16Choice { - - @XmlElement(name = "Pdg") - protected PendingStatus36Choice pdg; - @XmlElement(name = "Flng") - protected FailingStatus9Choice flng; - @XmlElement(name = "Prtry") - protected ProprietaryStatusAndReason6 prtry; - - /** - * Gets the value of the pdg property. - * - * @return - * possible object is - * {@link PendingStatus36Choice } - * - */ - public PendingStatus36Choice getPdg() { - return pdg; - } - - /** - * Sets the value of the pdg property. - * - * @param value - * allowed object is - * {@link PendingStatus36Choice } - * - */ - public SettlementStatus16Choice setPdg(PendingStatus36Choice value) { - this.pdg = value; - return this; - } - - /** - * Gets the value of the flng property. - * - * @return - * possible object is - * {@link FailingStatus9Choice } - * - */ - public FailingStatus9Choice getFlng() { - return flng; - } - - /** - * Sets the value of the flng property. - * - * @param value - * allowed object is - * {@link FailingStatus9Choice } - * - */ - public SettlementStatus16Choice setFlng(FailingStatus9Choice value) { - this.flng = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link ProprietaryStatusAndReason6 } - * - */ - public ProprietaryStatusAndReason6 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link ProprietaryStatusAndReason6 } - * - */ - public SettlementStatus16Choice setPrtry(ProprietaryStatusAndReason6 value) { - this.prtry = 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-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail2.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail2.java index a7b6820a2..c3b23b90b 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail2.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail2 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail2 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail3.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail3.java index ccee21259..8bf5b7845 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail3.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail3 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail3 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail4.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail4.java index 250ff7f3f..f87256543 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail4.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail4 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail4 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail4 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail5.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail5.java index a38f9bdd5..299bd3be5 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail5.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail5 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail5 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail5 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail6.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail6.java index bb91ce0d1..8d5bf3ca2 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail6.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail6 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail6 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail6 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail7.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail7.java index ad84b1c8b..9a4c8e9db 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail7.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail7 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail7 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail7 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail8.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail8.java index 1b388f3fe..8142085e8 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail8.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail8 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail8 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail8 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail9.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail9.java index bdd433612..52df4a1c7 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail9.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusTrail9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 StatusTrail9 { - @XmlElement(name = "StsDt", required = true) + @XmlElement(name = "StsDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar stsDt; @XmlElement(name = "SndgOrgId") @@ -66,7 +69,7 @@ public class StatusTrail9 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStsDt() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getStsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public StatusTrail9 setStsDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails1.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails1.java index bd066d89e..9edd5fa90 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails1.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransactionDetails1 { 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 TransactionDetails1 { 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 TransactionDetails1 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 TransactionDetails1 setTradDtTm(XMLGregorianCalendar value) { @@ -417,7 +421,7 @@ public TransactionDetails1 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 TransactionDetails1 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails103.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails103.java index fdf9c5258..af7b3f7c4 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails103.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails103.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; @@ -81,10 +83,12 @@ public class TransactionDetails103 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails103 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails103 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails103 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails103 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails104.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails104.java index 756dfe2a7..197ab5985 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails104.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails104.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails104 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails104 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails104 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails104 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails104 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails111.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails111.java index 103562ded..c2c21dfec 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails111.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails111.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails111 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails111 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails111 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails111 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails111 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails112.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails112.java index 8419f9b6b..250d0dc00 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails112.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails112.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; @@ -81,10 +83,12 @@ public class TransactionDetails112 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails112 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails112 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails112 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails112 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails114.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails114.java index 04547c4fc..b6f600b49 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails114.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails114.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; @@ -81,10 +83,12 @@ public class TransactionDetails114 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails114 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails114 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails114 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails114 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails115.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails115.java index 04f052cd5..08e93d8b9 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails115.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails115.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails115 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails115 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails115 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails115 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails115 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails123.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails123.java index 0e24450d1..a43912f23 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails123.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails123.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails123 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails123 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails123 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails123 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails123 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails124.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails124.java index f15e0ef2b..3a82bc2be 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails124.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails124.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; @@ -81,10 +83,12 @@ public class TransactionDetails124 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails124 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails124 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails124 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails124 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails128.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails128.java index 3480b9ffb..76020169b 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails128.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails128.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails128 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails128 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails128 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails128 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails128 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails129.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails129.java index 84f51329e..8d616f352 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails129.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails129.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; @@ -81,10 +83,12 @@ public class TransactionDetails129 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails129 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails129 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails129 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails129 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails130.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails130.java index ced883273..5c37e645c 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails130.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails130.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails130 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails130 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails130 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails130 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails130 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails131.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails131.java index 9fa6ee3a4..688849499 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails131.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails131.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; @@ -81,10 +83,12 @@ public class TransactionDetails131 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails131 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails131 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails131 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails131 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails132.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails132.java index 60b7705e7..d902b5ab6 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails132.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails132.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; @@ -81,10 +83,12 @@ public class TransactionDetails132 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails132 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails132 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails132 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails132 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails133.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails133.java index b65cc510b..d0df9f987 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails133.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails133.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails133 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails133 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails133 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails133 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails133 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails144.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails144.java index 324eae5a3..b299772ef 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails144.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails144.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails144 { protected DateAndDateTime2Choice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTime2Choice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails144 setXpctdValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails144 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails144 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails144 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails145.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails145.java index 8e6d53340..0593574d3 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails145.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails145.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; @@ -81,10 +83,12 @@ public class TransactionDetails145 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTime2Choice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails145 setValDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails145 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails145 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails145 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails95.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails95.java index 8594b6fa3..ba0e7d7d6 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails95.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails95.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; @@ -81,10 +83,12 @@ public class TransactionDetails95 { protected SettlementDate9Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTimeChoice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails95 setValDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails95 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails95 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails95 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails96.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails96.java index 88e81ecd6..96dd31666 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails96.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails96.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails96 { protected DateAndDateTimeChoice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTimeChoice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails96 setXpctdValDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails96 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails96 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails96 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails98.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails98.java index 1f4f619d5..16b7733fa 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails98.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails98.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; @@ -81,10 +83,12 @@ public class TransactionDetails98 { protected SettlementDate12Choice sttlmDt; @XmlElement(name = "ValDt") protected DateAndDateTimeChoice valDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -501,7 +505,7 @@ public TransactionDetails98 setValDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -513,7 +517,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails98 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -526,7 +530,7 @@ public TransactionDetails98 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -538,7 +542,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails98 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails99.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails99.java index d82b7080a..881fe7d08 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails99.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails99.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,10 +84,12 @@ public class TransactionDetails99 { protected DateAndDateTimeChoice lateDlvryDt; @XmlElement(name = "XpctdValDt") protected DateAndDateTimeChoice xpctdValDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DlvrgSttlmPties") @@ -502,7 +506,7 @@ public TransactionDetails99 setXpctdValDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -514,7 +518,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails99 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -527,7 +531,7 @@ public TransactionDetails99 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -539,7 +543,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails99 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnmatchedReason14Code.java b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnmatchedReason14Code.java index 0accf3508..0aabd8137 100644 --- a/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnmatchedReason14Code.java +++ b/model-semt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnmatchedReason14Code.java @@ -113,7 +113,7 @@ public enum UnmatchedReason14Code { CPCA, /** - * Counterparty's instruction was too late for matching. + * Counterparty's instruction was too late for matching * */ CLAT, @@ -137,7 +137,7 @@ public enum UnmatchedReason14Code { EXEC, /** - * Financial instrument identification does not match, for example, ISIN, financial instrument attributes differs. + * Financial instrument identification does not match, for example, ISIN, financial instrument attributes differs... * */ DSEC, @@ -221,7 +221,7 @@ public enum UnmatchedReason14Code { PHYS, /** - * Place of listing does not match. + * Place of listing does not match * */ PLIS, @@ -323,7 +323,7 @@ public enum UnmatchedReason14Code { SAFE, /** - * Settlement amount does not match. + * Settlement amount does not match * */ DMON, @@ -341,7 +341,7 @@ public enum UnmatchedReason14Code { SETS, /** - * Settlement transaction type does not match (relates to the settlement transaction type codes available for field: 22F:: SETR.). + * Settlement transaction type does not match (relates to the settlement transaction type codes available for field :22F::SETR.) * */ SETR, diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100101.java index d403d3bcf..da4bb7e8a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100101 parse(String xml) { - return ((MxSese00100101) MxReadImpl.parse(MxSese00100101 .class, xml, _classes)); + return ((MxSese00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100102.java index 1429bf32e..2d3b4c8dc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100102 parse(String xml) { - return ((MxSese00100102) MxReadImpl.parse(MxSese00100102 .class, xml, _classes)); + return ((MxSese00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100103.java index 0b310da9b..e2294502e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100103 parse(String xml) { - return ((MxSese00100103) MxReadImpl.parse(MxSese00100103 .class, xml, _classes)); + return ((MxSese00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100104.java index 06a06a17d..bcd3b4610 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100104 parse(String xml) { - return ((MxSese00100104) MxReadImpl.parse(MxSese00100104 .class, xml, _classes)); + return ((MxSese00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100105.java index 94c26b00c..3e57116fe 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100105 parse(String xml) { - return ((MxSese00100105) MxReadImpl.parse(MxSese00100105 .class, xml, _classes)); + return ((MxSese00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100106.java index 554bbebad..f0246d204 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100106 parse(String xml) { - return ((MxSese00100106) MxReadImpl.parse(MxSese00100106 .class, xml, _classes)); + return ((MxSese00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100107.java index 93d896936..e52559153 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100107 parse(String xml) { - return ((MxSese00100107) MxReadImpl.parse(MxSese00100107 .class, xml, _classes)); + return ((MxSese00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100108.java index 4eaadc270..156719c29 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100108 parse(String xml) { - return ((MxSese00100108) MxReadImpl.parse(MxSese00100108 .class, xml, _classes)); + return ((MxSese00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100109.java index e6610347d..85aa792c5 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00100109 parse(String xml) { - return ((MxSese00100109) MxReadImpl.parse(MxSese00100109 .class, xml, _classes)); + return ((MxSese00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00100109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200101.java index d7c938d82..f67382d4b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200101 parse(String xml) { - return ((MxSese00200101) MxReadImpl.parse(MxSese00200101 .class, xml, _classes)); + return ((MxSese00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200102.java index 530539d16..dfa4a4d14 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200102 parse(String xml) { - return ((MxSese00200102) MxReadImpl.parse(MxSese00200102 .class, xml, _classes)); + return ((MxSese00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200103.java index 569b20cf8..2081949df 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200103 parse(String xml) { - return ((MxSese00200103) MxReadImpl.parse(MxSese00200103 .class, xml, _classes)); + return ((MxSese00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200104.java index 1ceb880c3..181cc938b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200104 parse(String xml) { - return ((MxSese00200104) MxReadImpl.parse(MxSese00200104 .class, xml, _classes)); + return ((MxSese00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200105.java index 02d4dea8a..21d7552eb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200105 parse(String xml) { - return ((MxSese00200105) MxReadImpl.parse(MxSese00200105 .class, xml, _classes)); + return ((MxSese00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200106.java index cd483eebd..1a2d7326c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200106 parse(String xml) { - return ((MxSese00200106) MxReadImpl.parse(MxSese00200106 .class, xml, _classes)); + return ((MxSese00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200107.java index fd2471992..f5bf4250a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200107 parse(String xml) { - return ((MxSese00200107) MxReadImpl.parse(MxSese00200107 .class, xml, _classes)); + return ((MxSese00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200108.java index bf2bc2b61..2c0df3e11 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200108 parse(String xml) { - return ((MxSese00200108) MxReadImpl.parse(MxSese00200108 .class, xml, _classes)); + return ((MxSese00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200109.java index 8a1293d84..7894c9fe1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00200109 parse(String xml) { - return ((MxSese00200109) MxReadImpl.parse(MxSese00200109 .class, xml, _classes)); + return ((MxSese00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00200109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300101.java index 583848367..52c0d39cf 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300101 parse(String xml) { - return ((MxSese00300101) MxReadImpl.parse(MxSese00300101 .class, xml, _classes)); + return ((MxSese00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300102.java index c1eea9552..4dbd60091 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300102 parse(String xml) { - return ((MxSese00300102) MxReadImpl.parse(MxSese00300102 .class, xml, _classes)); + return ((MxSese00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300103.java index aa38fb15a..523726743 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300103 parse(String xml) { - return ((MxSese00300103) MxReadImpl.parse(MxSese00300103 .class, xml, _classes)); + return ((MxSese00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300104.java index ddc1a4f17..0d1b5d0eb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300104 parse(String xml) { - return ((MxSese00300104) MxReadImpl.parse(MxSese00300104 .class, xml, _classes)); + return ((MxSese00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300105.java index 64b7f1e9a..501008546 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300105 parse(String xml) { - return ((MxSese00300105) MxReadImpl.parse(MxSese00300105 .class, xml, _classes)); + return ((MxSese00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300106.java index 00403fc53..304f1cb1c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300106 parse(String xml) { - return ((MxSese00300106) MxReadImpl.parse(MxSese00300106 .class, xml, _classes)); + return ((MxSese00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300107.java index 8e1de6698..f33b8a435 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300107 parse(String xml) { - return ((MxSese00300107) MxReadImpl.parse(MxSese00300107 .class, xml, _classes)); + return ((MxSese00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300108.java index 309a5fb81..8e84e5f11 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300108 parse(String xml) { - return ((MxSese00300108) MxReadImpl.parse(MxSese00300108 .class, xml, _classes)); + return ((MxSese00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300109.java index 162fcb0e7..f2a15b0ea 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00300109 parse(String xml) { - return ((MxSese00300109) MxReadImpl.parse(MxSese00300109 .class, xml, _classes)); + return ((MxSese00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400101.java index dc4b91764..13bf5a025 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400101 parse(String xml) { - return ((MxSese00400101) MxReadImpl.parse(MxSese00400101 .class, xml, _classes)); + return ((MxSese00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400102.java index 6667da195..80c2b63ed 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400102 parse(String xml) { - return ((MxSese00400102) MxReadImpl.parse(MxSese00400102 .class, xml, _classes)); + return ((MxSese00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400103.java index d9571d0b4..e2827ee58 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400103 parse(String xml) { - return ((MxSese00400103) MxReadImpl.parse(MxSese00400103 .class, xml, _classes)); + return ((MxSese00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400104.java index 3800deda3..88ddb8b89 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400104 parse(String xml) { - return ((MxSese00400104) MxReadImpl.parse(MxSese00400104 .class, xml, _classes)); + return ((MxSese00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400105.java index 840ed2764..edfb617b3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400105 parse(String xml) { - return ((MxSese00400105) MxReadImpl.parse(MxSese00400105 .class, xml, _classes)); + return ((MxSese00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400106.java index 21fd1955e..82b6186fe 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400106 parse(String xml) { - return ((MxSese00400106) MxReadImpl.parse(MxSese00400106 .class, xml, _classes)); + return ((MxSese00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400107.java index 9711ebee1..477703c77 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400107 parse(String xml) { - return ((MxSese00400107) MxReadImpl.parse(MxSese00400107 .class, xml, _classes)); + return ((MxSese00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400108.java index eed198d29..83b2aa123 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400108 parse(String xml) { - return ((MxSese00400108) MxReadImpl.parse(MxSese00400108 .class, xml, _classes)); + return ((MxSese00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400109.java index 2e9af2a5d..1b29a8447 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00400109 parse(String xml) { - return ((MxSese00400109) MxReadImpl.parse(MxSese00400109 .class, xml, _classes)); + return ((MxSese00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00400109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500101.java index b37a037b6..0ba3a04da 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500101 parse(String xml) { - return ((MxSese00500101) MxReadImpl.parse(MxSese00500101 .class, xml, _classes)); + return ((MxSese00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500102.java index 4a5c50da1..4a131aa09 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500102 parse(String xml) { - return ((MxSese00500102) MxReadImpl.parse(MxSese00500102 .class, xml, _classes)); + return ((MxSese00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500103.java index 14634320c..40320f909 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500103 parse(String xml) { - return ((MxSese00500103) MxReadImpl.parse(MxSese00500103 .class, xml, _classes)); + return ((MxSese00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500104.java index a82ece4cd..d7409ba54 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500104 parse(String xml) { - return ((MxSese00500104) MxReadImpl.parse(MxSese00500104 .class, xml, _classes)); + return ((MxSese00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500105.java index 5784d2fc2..34b3c341d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500105 parse(String xml) { - return ((MxSese00500105) MxReadImpl.parse(MxSese00500105 .class, xml, _classes)); + return ((MxSese00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500106.java index 5b39c6678..9a0ac4bb3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500106 parse(String xml) { - return ((MxSese00500106) MxReadImpl.parse(MxSese00500106 .class, xml, _classes)); + return ((MxSese00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500107.java index 7e7389c69..5a37b3db4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500107 parse(String xml) { - return ((MxSese00500107) MxReadImpl.parse(MxSese00500107 .class, xml, _classes)); + return ((MxSese00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500108.java index b439f4d70..f885b135f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500108 parse(String xml) { - return ((MxSese00500108) MxReadImpl.parse(MxSese00500108 .class, xml, _classes)); + return ((MxSese00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500109.java index e05029f9a..26714681b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00500109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00500109 parse(String xml) { - return ((MxSese00500109) MxReadImpl.parse(MxSese00500109 .class, xml, _classes)); + return ((MxSese00500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00500109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600101.java index 5f07a6fc0..09bed7d7c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600101 parse(String xml) { - return ((MxSese00600101) MxReadImpl.parse(MxSese00600101 .class, xml, _classes)); + return ((MxSese00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600102.java index a366bf625..fccb90d95 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600102 parse(String xml) { - return ((MxSese00600102) MxReadImpl.parse(MxSese00600102 .class, xml, _classes)); + return ((MxSese00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600103.java index ded08b5dd..13ca2bdbe 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600103 parse(String xml) { - return ((MxSese00600103) MxReadImpl.parse(MxSese00600103 .class, xml, _classes)); + return ((MxSese00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600104.java index e7d7dd062..1fa3db965 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600104 parse(String xml) { - return ((MxSese00600104) MxReadImpl.parse(MxSese00600104 .class, xml, _classes)); + return ((MxSese00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600105.java index beb8bca31..92ad7def1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600105 parse(String xml) { - return ((MxSese00600105) MxReadImpl.parse(MxSese00600105 .class, xml, _classes)); + return ((MxSese00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600106.java index 5f860e995..1e189c24d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600106 parse(String xml) { - return ((MxSese00600106) MxReadImpl.parse(MxSese00600106 .class, xml, _classes)); + return ((MxSese00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600107.java index 7f60a6838..aac1a2458 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600107 parse(String xml) { - return ((MxSese00600107) MxReadImpl.parse(MxSese00600107 .class, xml, _classes)); + return ((MxSese00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600108.java index b7a9acb48..123acb140 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600108 parse(String xml) { - return ((MxSese00600108) MxReadImpl.parse(MxSese00600108 .class, xml, _classes)); + return ((MxSese00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600109.java index 78d43912e..6d0a8052a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00600109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00600109 parse(String xml) { - return ((MxSese00600109) MxReadImpl.parse(MxSese00600109 .class, xml, _classes)); + return ((MxSese00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00600109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700101.java index a7e1c806e..d69dda595 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700101 parse(String xml) { - return ((MxSese00700101) MxReadImpl.parse(MxSese00700101 .class, xml, _classes)); + return ((MxSese00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700102.java index 1ccbf4b77..45dd4046f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700102 parse(String xml) { - return ((MxSese00700102) MxReadImpl.parse(MxSese00700102 .class, xml, _classes)); + return ((MxSese00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700103.java index 76d601e2e..ecc5eb540 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700103 parse(String xml) { - return ((MxSese00700103) MxReadImpl.parse(MxSese00700103 .class, xml, _classes)); + return ((MxSese00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700104.java index 7574fcd94..209bc1f4b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700104 parse(String xml) { - return ((MxSese00700104) MxReadImpl.parse(MxSese00700104 .class, xml, _classes)); + return ((MxSese00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700105.java index f73bb801d..9d3be35c8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700105 parse(String xml) { - return ((MxSese00700105) MxReadImpl.parse(MxSese00700105 .class, xml, _classes)); + return ((MxSese00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700106.java index 9b99a218d..9edbb355c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700106 parse(String xml) { - return ((MxSese00700106) MxReadImpl.parse(MxSese00700106 .class, xml, _classes)); + return ((MxSese00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700107.java index 8f3257218..7990c836f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700107 parse(String xml) { - return ((MxSese00700107) MxReadImpl.parse(MxSese00700107 .class, xml, _classes)); + return ((MxSese00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700108.java index 467b143da..f45c111f1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700108 parse(String xml) { - return ((MxSese00700108) MxReadImpl.parse(MxSese00700108 .class, xml, _classes)); + return ((MxSese00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700109.java index a10398c8b..b4d006305 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00700109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00700109 parse(String xml) { - return ((MxSese00700109) MxReadImpl.parse(MxSese00700109 .class, xml, _classes)); + return ((MxSese00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00700109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800101.java index fdbcf5c5f..d3c30b962 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800101 parse(String xml) { - return ((MxSese00800101) MxReadImpl.parse(MxSese00800101 .class, xml, _classes)); + return ((MxSese00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800102.java index e348ce6c0..cd4604990 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800102 parse(String xml) { - return ((MxSese00800102) MxReadImpl.parse(MxSese00800102 .class, xml, _classes)); + return ((MxSese00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800103.java index acb9d7e50..7bfc9a837 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800103 parse(String xml) { - return ((MxSese00800103) MxReadImpl.parse(MxSese00800103 .class, xml, _classes)); + return ((MxSese00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800104.java index e18b2aa34..f77734161 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800104 parse(String xml) { - return ((MxSese00800104) MxReadImpl.parse(MxSese00800104 .class, xml, _classes)); + return ((MxSese00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800105.java index 5d36a8e66..37c212c65 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800105 parse(String xml) { - return ((MxSese00800105) MxReadImpl.parse(MxSese00800105 .class, xml, _classes)); + return ((MxSese00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800106.java index cc12845c8..770bff6c0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800106 parse(String xml) { - return ((MxSese00800106) MxReadImpl.parse(MxSese00800106 .class, xml, _classes)); + return ((MxSese00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800107.java index ca6ca7ff9..25a391432 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800107 parse(String xml) { - return ((MxSese00800107) MxReadImpl.parse(MxSese00800107 .class, xml, _classes)); + return ((MxSese00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800108.java index eaa6bed1c..12bb7f443 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800108 parse(String xml) { - return ((MxSese00800108) MxReadImpl.parse(MxSese00800108 .class, xml, _classes)); + return ((MxSese00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800109.java index 5b3812bc4..e7c2069ed 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00800109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00800109 parse(String xml) { - return ((MxSese00800109) MxReadImpl.parse(MxSese00800109 .class, xml, _classes)); + return ((MxSese00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00800109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900101.java index 3139930fb..0f8eb1459 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900101 parse(String xml) { - return ((MxSese00900101) MxReadImpl.parse(MxSese00900101 .class, xml, _classes)); + return ((MxSese00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900102.java index 6c9b34684..c7116d0f4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900102 parse(String xml) { - return ((MxSese00900102) MxReadImpl.parse(MxSese00900102 .class, xml, _classes)); + return ((MxSese00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900103.java index 8b60f67da..d4f592d2f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900103 parse(String xml) { - return ((MxSese00900103) MxReadImpl.parse(MxSese00900103 .class, xml, _classes)); + return ((MxSese00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900104.java index fd0e6b0f9..da539fcbf 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900104 parse(String xml) { - return ((MxSese00900104) MxReadImpl.parse(MxSese00900104 .class, xml, _classes)); + return ((MxSese00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900105.java index 4cbbdcfd8..e96d5494d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900105 parse(String xml) { - return ((MxSese00900105) MxReadImpl.parse(MxSese00900105 .class, xml, _classes)); + return ((MxSese00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900106.java index 40a8c7bd5..2f5242e44 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900106 parse(String xml) { - return ((MxSese00900106) MxReadImpl.parse(MxSese00900106 .class, xml, _classes)); + return ((MxSese00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900107.java index 6cdf35753..7d86a3ce6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese00900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese00900107 parse(String xml) { - return ((MxSese00900107) MxReadImpl.parse(MxSese00900107 .class, xml, _classes)); + return ((MxSese00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese00900107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000101.java index 874a3c0a9..3193b882b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000101 parse(String xml) { - return ((MxSese01000101) MxReadImpl.parse(MxSese01000101 .class, xml, _classes)); + return ((MxSese01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000102.java index 6b99f0268..ca06b9936 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000102 parse(String xml) { - return ((MxSese01000102) MxReadImpl.parse(MxSese01000102 .class, xml, _classes)); + return ((MxSese01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000103.java index ebd084253..531526a30 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000103 parse(String xml) { - return ((MxSese01000103) MxReadImpl.parse(MxSese01000103 .class, xml, _classes)); + return ((MxSese01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000104.java index 5deecdc28..3ee48a00d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000104 parse(String xml) { - return ((MxSese01000104) MxReadImpl.parse(MxSese01000104 .class, xml, _classes)); + return ((MxSese01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000105.java index 9c50e70fa..4e1335949 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000105 parse(String xml) { - return ((MxSese01000105) MxReadImpl.parse(MxSese01000105 .class, xml, _classes)); + return ((MxSese01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000106.java index d4d1706f7..a2ecc6e1d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000106 parse(String xml) { - return ((MxSese01000106) MxReadImpl.parse(MxSese01000106 .class, xml, _classes)); + return ((MxSese01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000107.java index 499f11f5c..8099649c0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01000107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01000107 parse(String xml) { - return ((MxSese01000107) MxReadImpl.parse(MxSese01000107 .class, xml, _classes)); + return ((MxSese01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01000107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100101.java index b437f9bc1..588f129fd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100101 parse(String xml) { - return ((MxSese01100101) MxReadImpl.parse(MxSese01100101 .class, xml, _classes)); + return ((MxSese01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100102.java index cae72c540..68a5d8652 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100102 parse(String xml) { - return ((MxSese01100102) MxReadImpl.parse(MxSese01100102 .class, xml, _classes)); + return ((MxSese01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100103.java index 909f535bb..51ff3f092 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100103 parse(String xml) { - return ((MxSese01100103) MxReadImpl.parse(MxSese01100103 .class, xml, _classes)); + return ((MxSese01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100104.java index 6589095e1..4b03b710c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100104 parse(String xml) { - return ((MxSese01100104) MxReadImpl.parse(MxSese01100104 .class, xml, _classes)); + return ((MxSese01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100105.java index f6c5a5e3e..e3909ac45 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100105 parse(String xml) { - return ((MxSese01100105) MxReadImpl.parse(MxSese01100105 .class, xml, _classes)); + return ((MxSese01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100106.java index 0e8fc731b..16b587196 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100106 parse(String xml) { - return ((MxSese01100106) MxReadImpl.parse(MxSese01100106 .class, xml, _classes)); + return ((MxSese01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100107.java index 2f8bfd14c..0a3323db1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100107 parse(String xml) { - return ((MxSese01100107) MxReadImpl.parse(MxSese01100107 .class, xml, _classes)); + return ((MxSese01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100108.java index f4f98648b..699662859 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01100108 parse(String xml) { - return ((MxSese01100108) MxReadImpl.parse(MxSese01100108 .class, xml, _classes)); + return ((MxSese01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200102.java index 9cc6b5848..b8dd40da2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200102 parse(String xml) { - return ((MxSese01200102) MxReadImpl.parse(MxSese01200102 .class, xml, _classes)); + return ((MxSese01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200103.java index d407fc4ca..da32ee3de 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200103 parse(String xml) { - return ((MxSese01200103) MxReadImpl.parse(MxSese01200103 .class, xml, _classes)); + return ((MxSese01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200104.java index 75d83478a..7508625d9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200104 parse(String xml) { - return ((MxSese01200104) MxReadImpl.parse(MxSese01200104 .class, xml, _classes)); + return ((MxSese01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200105.java index beb4084a0..7251fdb48 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200105 parse(String xml) { - return ((MxSese01200105) MxReadImpl.parse(MxSese01200105 .class, xml, _classes)); + return ((MxSese01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200106.java index 0c073923e..7d5dccc5a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200106 parse(String xml) { - return ((MxSese01200106) MxReadImpl.parse(MxSese01200106 .class, xml, _classes)); + return ((MxSese01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200107.java index 5adc73c4a..6d6659e23 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200107 parse(String xml) { - return ((MxSese01200107) MxReadImpl.parse(MxSese01200107 .class, xml, _classes)); + return ((MxSese01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200108.java index 6950b5238..03e52d765 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200108 parse(String xml) { - return ((MxSese01200108) MxReadImpl.parse(MxSese01200108 .class, xml, _classes)); + return ((MxSese01200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200109.java index c1d4321b8..edc8b61f7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200109 parse(String xml) { - return ((MxSese01200109) MxReadImpl.parse(MxSese01200109 .class, xml, _classes)); + return ((MxSese01200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200110.java index cce71136c..209eb50ed 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01200110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01200110 parse(String xml) { - return ((MxSese01200110) MxReadImpl.parse(MxSese01200110 .class, xml, _classes)); + return ((MxSese01200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01200110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300102.java index 42538596c..d2b29742d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300102 parse(String xml) { - return ((MxSese01300102) MxReadImpl.parse(MxSese01300102 .class, xml, _classes)); + return ((MxSese01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300103.java index a28def8cc..e662f1ae4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300103 parse(String xml) { - return ((MxSese01300103) MxReadImpl.parse(MxSese01300103 .class, xml, _classes)); + return ((MxSese01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300104.java index a56357198..389bc2b3a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300104 parse(String xml) { - return ((MxSese01300104) MxReadImpl.parse(MxSese01300104 .class, xml, _classes)); + return ((MxSese01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300105.java index 81903cb13..3b36de2bf 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300105 parse(String xml) { - return ((MxSese01300105) MxReadImpl.parse(MxSese01300105 .class, xml, _classes)); + return ((MxSese01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300106.java index 93db9b835..28b82ee92 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300106 parse(String xml) { - return ((MxSese01300106) MxReadImpl.parse(MxSese01300106 .class, xml, _classes)); + return ((MxSese01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300107.java index 89e643773..6eafe4054 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300107 parse(String xml) { - return ((MxSese01300107) MxReadImpl.parse(MxSese01300107 .class, xml, _classes)); + return ((MxSese01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300108.java index fafb7c47b..5751774a9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300108 parse(String xml) { - return ((MxSese01300108) MxReadImpl.parse(MxSese01300108 .class, xml, _classes)); + return ((MxSese01300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300109.java index 20de8263e..d7684dad5 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300109 parse(String xml) { - return ((MxSese01300109) MxReadImpl.parse(MxSese01300109 .class, xml, _classes)); + return ((MxSese01300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300110.java index 2f7644e1d..c9c53ccfd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01300110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01300110 parse(String xml) { - return ((MxSese01300110) MxReadImpl.parse(MxSese01300110 .class, xml, _classes)); + return ((MxSese01300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01300110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400102.java index 9c2e01cfd..80db880fa 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400102 parse(String xml) { - return ((MxSese01400102) MxReadImpl.parse(MxSese01400102 .class, xml, _classes)); + return ((MxSese01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400103.java index 27b5d6bf3..79c66e385 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400103 parse(String xml) { - return ((MxSese01400103) MxReadImpl.parse(MxSese01400103 .class, xml, _classes)); + return ((MxSese01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400104.java index 5e6a3bea5..9ad274056 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400104 parse(String xml) { - return ((MxSese01400104) MxReadImpl.parse(MxSese01400104 .class, xml, _classes)); + return ((MxSese01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400105.java index ddd42cb9a..2f407c1cd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400105 parse(String xml) { - return ((MxSese01400105) MxReadImpl.parse(MxSese01400105 .class, xml, _classes)); + return ((MxSese01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400106.java index 1de6a1808..485b919f3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400106 parse(String xml) { - return ((MxSese01400106) MxReadImpl.parse(MxSese01400106 .class, xml, _classes)); + return ((MxSese01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400107.java index cacf5a3bf..d97df527b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400107 parse(String xml) { - return ((MxSese01400107) MxReadImpl.parse(MxSese01400107 .class, xml, _classes)); + return ((MxSese01400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400108.java index e56d3870a..c210b4f1d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400108 parse(String xml) { - return ((MxSese01400108) MxReadImpl.parse(MxSese01400108 .class, xml, _classes)); + return ((MxSese01400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400109.java index 78fde341a..e7820daff 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01400109 parse(String xml) { - return ((MxSese01400109) MxReadImpl.parse(MxSese01400109 .class, xml, _classes)); + return ((MxSese01400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01400109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800101.java index 751fe9d7e..62640af04 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800101 parse(String xml) { - return ((MxSese01800101) MxReadImpl.parse(MxSese01800101 .class, xml, _classes)); + return ((MxSese01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800102.java index 158bf49df..28dceb393 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800102 parse(String xml) { - return ((MxSese01800102) MxReadImpl.parse(MxSese01800102 .class, xml, _classes)); + return ((MxSese01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800103.java index 8be47a942..96c3824d7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800103 parse(String xml) { - return ((MxSese01800103) MxReadImpl.parse(MxSese01800103 .class, xml, _classes)); + return ((MxSese01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800104.java index 70f6d05ab..0bbb08ff4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800104 parse(String xml) { - return ((MxSese01800104) MxReadImpl.parse(MxSese01800104 .class, xml, _classes)); + return ((MxSese01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800105.java index 7728e3423..e58d6ad89 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800105 parse(String xml) { - return ((MxSese01800105) MxReadImpl.parse(MxSese01800105 .class, xml, _classes)); + return ((MxSese01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800106.java index 94d94bdc4..1a0eb5d66 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800106 parse(String xml) { - return ((MxSese01800106) MxReadImpl.parse(MxSese01800106 .class, xml, _classes)); + return ((MxSese01800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800107.java index bbfb4f301..5222cd76e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800107 parse(String xml) { - return ((MxSese01800107) MxReadImpl.parse(MxSese01800107 .class, xml, _classes)); + return ((MxSese01800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800108.java index 756b591fc..279b67978 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01800108 parse(String xml) { - return ((MxSese01800108) MxReadImpl.parse(MxSese01800108 .class, xml, _classes)); + return ((MxSese01800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01800108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900101.java index 5f7467bb7..e05591392 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900101 parse(String xml) { - return ((MxSese01900101) MxReadImpl.parse(MxSese01900101 .class, xml, _classes)); + return ((MxSese01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900102.java index 8c60daf05..c6af678ff 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900102 parse(String xml) { - return ((MxSese01900102) MxReadImpl.parse(MxSese01900102 .class, xml, _classes)); + return ((MxSese01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900103.java index 135bc42c5..189a3a6cf 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900103 parse(String xml) { - return ((MxSese01900103) MxReadImpl.parse(MxSese01900103 .class, xml, _classes)); + return ((MxSese01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900104.java index e68f56b1e..b70909de7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900104 parse(String xml) { - return ((MxSese01900104) MxReadImpl.parse(MxSese01900104 .class, xml, _classes)); + return ((MxSese01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900105.java index 6c9f4cda7..3f23ae2f4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900105 parse(String xml) { - return ((MxSese01900105) MxReadImpl.parse(MxSese01900105 .class, xml, _classes)); + return ((MxSese01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900106.java index 393446e7a..ea5077ec3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900106 parse(String xml) { - return ((MxSese01900106) MxReadImpl.parse(MxSese01900106 .class, xml, _classes)); + return ((MxSese01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900107.java index 47f2eea21..1e25e7f77 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese01900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese01900107 parse(String xml) { - return ((MxSese01900107) MxReadImpl.parse(MxSese01900107 .class, xml, _classes)); + return ((MxSese01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese01900107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000101.java index 0b453a3c9..e43eb01f6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000101 parse(String xml) { - return ((MxSese02000101) MxReadImpl.parse(MxSese02000101 .class, xml, _classes)); + return ((MxSese02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000102.java index 75b0aa94f..ffab9e3e8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000102 parse(String xml) { - return ((MxSese02000102) MxReadImpl.parse(MxSese02000102 .class, xml, _classes)); + return ((MxSese02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000103.java index d32c47088..68336c4b9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000103 parse(String xml) { - return ((MxSese02000103) MxReadImpl.parse(MxSese02000103 .class, xml, _classes)); + return ((MxSese02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000104.java index 79741086f..7ed5c51d6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000104 parse(String xml) { - return ((MxSese02000104) MxReadImpl.parse(MxSese02000104 .class, xml, _classes)); + return ((MxSese02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000105.java index 270947d9c..d1bad8435 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000105 parse(String xml) { - return ((MxSese02000105) MxReadImpl.parse(MxSese02000105 .class, xml, _classes)); + return ((MxSese02000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000106.java index 6835dc2f7..bcccc9fe1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000106 parse(String xml) { - return ((MxSese02000106) MxReadImpl.parse(MxSese02000106 .class, xml, _classes)); + return ((MxSese02000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000201.java index 550e6b8c9..02bd5d5f0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000201 parse(String xml) { - return ((MxSese02000201) MxReadImpl.parse(MxSese02000201 .class, xml, _classes)); + return ((MxSese02000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000202.java index dc28e3fca..7cbbc4f61 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000202 parse(String xml) { - return ((MxSese02000202) MxReadImpl.parse(MxSese02000202 .class, xml, _classes)); + return ((MxSese02000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000203.java index c27398676..6422c1de3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000203 parse(String xml) { - return ((MxSese02000203) MxReadImpl.parse(MxSese02000203 .class, xml, _classes)); + return ((MxSese02000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000204.java index d6c9653be..a41c46fac 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000204 parse(String xml) { - return ((MxSese02000204) MxReadImpl.parse(MxSese02000204 .class, xml, _classes)); + return ((MxSese02000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000205.java index bc3592ad5..0d20ab83b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000205 parse(String xml) { - return ((MxSese02000205) MxReadImpl.parse(MxSese02000205 .class, xml, _classes)); + return ((MxSese02000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000206.java index 4d8fffeaa..29fda8822 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02000206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02000206 parse(String xml) { - return ((MxSese02000206) MxReadImpl.parse(MxSese02000206 .class, xml, _classes)); + return ((MxSese02000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02000206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100101.java index 698d38bfa..deef0bde2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100101 parse(String xml) { - return ((MxSese02100101) MxReadImpl.parse(MxSese02100101 .class, xml, _classes)); + return ((MxSese02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100102.java index fd1b84fe5..b3431ca4d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100102 parse(String xml) { - return ((MxSese02100102) MxReadImpl.parse(MxSese02100102 .class, xml, _classes)); + return ((MxSese02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100103.java index 991fc2c38..548e3d55b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100103 parse(String xml) { - return ((MxSese02100103) MxReadImpl.parse(MxSese02100103 .class, xml, _classes)); + return ((MxSese02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100104.java index 72600a46f..35d50911f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100104 parse(String xml) { - return ((MxSese02100104) MxReadImpl.parse(MxSese02100104 .class, xml, _classes)); + return ((MxSese02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100105.java index 64110292f..0ade035ee 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100105 parse(String xml) { - return ((MxSese02100105) MxReadImpl.parse(MxSese02100105 .class, xml, _classes)); + return ((MxSese02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100201.java index b7c06b621..65451771e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100201 parse(String xml) { - return ((MxSese02100201) MxReadImpl.parse(MxSese02100201 .class, xml, _classes)); + return ((MxSese02100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100202.java index 757b941f0..194878141 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100202 parse(String xml) { - return ((MxSese02100202) MxReadImpl.parse(MxSese02100202 .class, xml, _classes)); + return ((MxSese02100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100203.java index b3ccefb31..f754f7a38 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100203 parse(String xml) { - return ((MxSese02100203) MxReadImpl.parse(MxSese02100203 .class, xml, _classes)); + return ((MxSese02100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100204.java index 8c82659f7..a8f054c47 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100204 parse(String xml) { - return ((MxSese02100204) MxReadImpl.parse(MxSese02100204 .class, xml, _classes)); + return ((MxSese02100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100205.java index 4f0af3014..01b5ba9d0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02100205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02100205 parse(String xml) { - return ((MxSese02100205) MxReadImpl.parse(MxSese02100205 .class, xml, _classes)); + return ((MxSese02100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02100205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200101.java index 183394c46..2c0a90e7a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200101 parse(String xml) { - return ((MxSese02200101) MxReadImpl.parse(MxSese02200101 .class, xml, _classes)); + return ((MxSese02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200102.java index f62fefe0c..7d1051554 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200102 parse(String xml) { - return ((MxSese02200102) MxReadImpl.parse(MxSese02200102 .class, xml, _classes)); + return ((MxSese02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200103.java index d5e0a64ad..142ff7756 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200103 parse(String xml) { - return ((MxSese02200103) MxReadImpl.parse(MxSese02200103 .class, xml, _classes)); + return ((MxSese02200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200104.java index 961ed06d4..51d2394c8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200104 parse(String xml) { - return ((MxSese02200104) MxReadImpl.parse(MxSese02200104 .class, xml, _classes)); + return ((MxSese02200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200105.java index 4496e571c..a2d0ff942 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200105 parse(String xml) { - return ((MxSese02200105) MxReadImpl.parse(MxSese02200105 .class, xml, _classes)); + return ((MxSese02200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200201.java index 1e28eff50..d2c7324ea 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200201 parse(String xml) { - return ((MxSese02200201) MxReadImpl.parse(MxSese02200201 .class, xml, _classes)); + return ((MxSese02200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200202.java index d82070d4e..10b9ed4f4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200202 parse(String xml) { - return ((MxSese02200202) MxReadImpl.parse(MxSese02200202 .class, xml, _classes)); + return ((MxSese02200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200203.java index e0497e603..deca1a88e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200203 parse(String xml) { - return ((MxSese02200203) MxReadImpl.parse(MxSese02200203 .class, xml, _classes)); + return ((MxSese02200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200204.java index 1d94233b7..f1f70c970 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200204 parse(String xml) { - return ((MxSese02200204) MxReadImpl.parse(MxSese02200204 .class, xml, _classes)); + return ((MxSese02200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200205.java index 799200f59..42dcbb7f2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02200205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02200205 parse(String xml) { - return ((MxSese02200205) MxReadImpl.parse(MxSese02200205 .class, xml, _classes)); + return ((MxSese02200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02200205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300101.java index 51375cd4e..9ebe2ec83 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300101 parse(String xml) { - return ((MxSese02300101) MxReadImpl.parse(MxSese02300101 .class, xml, _classes)); + return ((MxSese02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300102.java index 9fe3e79e1..477fb6f68 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300102 parse(String xml) { - return ((MxSese02300102) MxReadImpl.parse(MxSese02300102 .class, xml, _classes)); + return ((MxSese02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300103.java index ffce6d725..c3d2ba360 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300103 parse(String xml) { - return ((MxSese02300103) MxReadImpl.parse(MxSese02300103 .class, xml, _classes)); + return ((MxSese02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300104.java index 916cb2b74..7ff6c5af8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300104 parse(String xml) { - return ((MxSese02300104) MxReadImpl.parse(MxSese02300104 .class, xml, _classes)); + return ((MxSese02300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300105.java index 7679798bb..a9e38f344 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300105 parse(String xml) { - return ((MxSese02300105) MxReadImpl.parse(MxSese02300105 .class, xml, _classes)); + return ((MxSese02300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300106.java index e0956388f..af9511389 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300106 parse(String xml) { - return ((MxSese02300106) MxReadImpl.parse(MxSese02300106 .class, xml, _classes)); + return ((MxSese02300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300107.java index 7102926f2..dff051d90 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300107 parse(String xml) { - return ((MxSese02300107) MxReadImpl.parse(MxSese02300107 .class, xml, _classes)); + return ((MxSese02300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300108.java index 8a08ab624..7352f0570 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300108 parse(String xml) { - return ((MxSese02300108) MxReadImpl.parse(MxSese02300108 .class, xml, _classes)); + return ((MxSese02300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300109.java index ea7f9e6bb..3177cd633 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300109 parse(String xml) { - return ((MxSese02300109) MxReadImpl.parse(MxSese02300109 .class, xml, _classes)); + return ((MxSese02300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300110.java index e4c9ddc9f..e170e3de5 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300110 parse(String xml) { - return ((MxSese02300110) MxReadImpl.parse(MxSese02300110 .class, xml, _classes)); + return ((MxSese02300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300201.java index a7d8c53f7..ba63fccc0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300201 parse(String xml) { - return ((MxSese02300201) MxReadImpl.parse(MxSese02300201 .class, xml, _classes)); + return ((MxSese02300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300202.java index 509b68902..2f1d97684 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300202 parse(String xml) { - return ((MxSese02300202) MxReadImpl.parse(MxSese02300202 .class, xml, _classes)); + return ((MxSese02300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300203.java index 59395c070..4cd2f290c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300203 parse(String xml) { - return ((MxSese02300203) MxReadImpl.parse(MxSese02300203 .class, xml, _classes)); + return ((MxSese02300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300204.java index f234ebe3e..a43f3c99f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300204 parse(String xml) { - return ((MxSese02300204) MxReadImpl.parse(MxSese02300204 .class, xml, _classes)); + return ((MxSese02300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300205.java index 90b470b98..e7069ec08 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300205 parse(String xml) { - return ((MxSese02300205) MxReadImpl.parse(MxSese02300205 .class, xml, _classes)); + return ((MxSese02300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300206.java index d28a0fb7b..c9a0efd17 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300206 parse(String xml) { - return ((MxSese02300206) MxReadImpl.parse(MxSese02300206 .class, xml, _classes)); + return ((MxSese02300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300207.java index cd6d4feb9..838767a44 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300207 parse(String xml) { - return ((MxSese02300207) MxReadImpl.parse(MxSese02300207 .class, xml, _classes)); + return ((MxSese02300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300208.java index 32dd10c33..9ff98f920 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300208 parse(String xml) { - return ((MxSese02300208) MxReadImpl.parse(MxSese02300208 .class, xml, _classes)); + return ((MxSese02300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300209.java index d709d5946..f3ae05cfd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300209 parse(String xml) { - return ((MxSese02300209) MxReadImpl.parse(MxSese02300209 .class, xml, _classes)); + return ((MxSese02300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300210.java index 718b24b3b..aa85e51a3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02300210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02300210 parse(String xml) { - return ((MxSese02300210) MxReadImpl.parse(MxSese02300210 .class, xml, _classes)); + return ((MxSese02300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02300210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400101.java index 13bdb4ac2..0132c32c7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400101 parse(String xml) { - return ((MxSese02400101) MxReadImpl.parse(MxSese02400101 .class, xml, _classes)); + return ((MxSese02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400102.java index 0f348d2bc..57efde7b7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400102 parse(String xml) { - return ((MxSese02400102) MxReadImpl.parse(MxSese02400102 .class, xml, _classes)); + return ((MxSese02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400103.java index 1248c042c..45bfca447 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400103 parse(String xml) { - return ((MxSese02400103) MxReadImpl.parse(MxSese02400103 .class, xml, _classes)); + return ((MxSese02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400104.java index 766abc017..ff1912fed 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400104 parse(String xml) { - return ((MxSese02400104) MxReadImpl.parse(MxSese02400104 .class, xml, _classes)); + return ((MxSese02400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400105.java index ac2c88747..418148447 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400105 parse(String xml) { - return ((MxSese02400105) MxReadImpl.parse(MxSese02400105 .class, xml, _classes)); + return ((MxSese02400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400106.java index d0baadc89..a6485fd7e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400106 parse(String xml) { - return ((MxSese02400106) MxReadImpl.parse(MxSese02400106 .class, xml, _classes)); + return ((MxSese02400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400107.java index d51a7dfd9..a015a0c18 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400107 parse(String xml) { - return ((MxSese02400107) MxReadImpl.parse(MxSese02400107 .class, xml, _classes)); + return ((MxSese02400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400108.java index 2831007a7..97ce70242 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400108 parse(String xml) { - return ((MxSese02400108) MxReadImpl.parse(MxSese02400108 .class, xml, _classes)); + return ((MxSese02400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400109.java index 761e46f1a..ec51b9a3b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400109 parse(String xml) { - return ((MxSese02400109) MxReadImpl.parse(MxSese02400109 .class, xml, _classes)); + return ((MxSese02400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400110.java index d34a6a490..9864a82c5 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400110 parse(String xml) { - return ((MxSese02400110) MxReadImpl.parse(MxSese02400110 .class, xml, _classes)); + return ((MxSese02400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400111.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400111.java index 2c43aadd3..e5955c4be 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400111.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400111 parse(String xml) { - return ((MxSese02400111) MxReadImpl.parse(MxSese02400111 .class, xml, _classes)); + return ((MxSese02400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400111 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400201.java index 41aab986b..e368503cd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400201 parse(String xml) { - return ((MxSese02400201) MxReadImpl.parse(MxSese02400201 .class, xml, _classes)); + return ((MxSese02400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400202.java index f16a008ea..efdb7384c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400202 parse(String xml) { - return ((MxSese02400202) MxReadImpl.parse(MxSese02400202 .class, xml, _classes)); + return ((MxSese02400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400203.java index 2eec0ba60..ff0a2034a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400203 parse(String xml) { - return ((MxSese02400203) MxReadImpl.parse(MxSese02400203 .class, xml, _classes)); + return ((MxSese02400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400204.java index 8df915438..27cb3248b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400204 parse(String xml) { - return ((MxSese02400204) MxReadImpl.parse(MxSese02400204 .class, xml, _classes)); + return ((MxSese02400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400205.java index 22329c05a..93724a590 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400205 parse(String xml) { - return ((MxSese02400205) MxReadImpl.parse(MxSese02400205 .class, xml, _classes)); + return ((MxSese02400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400206.java index f543e731b..e826c27ba 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400206 parse(String xml) { - return ((MxSese02400206) MxReadImpl.parse(MxSese02400206 .class, xml, _classes)); + return ((MxSese02400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400207.java index 3bd407b45..0723e9ca7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400207 parse(String xml) { - return ((MxSese02400207) MxReadImpl.parse(MxSese02400207 .class, xml, _classes)); + return ((MxSese02400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400208.java index 14be6a446..facebead7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400208 parse(String xml) { - return ((MxSese02400208) MxReadImpl.parse(MxSese02400208 .class, xml, _classes)); + return ((MxSese02400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400209.java index 3ddb3f41d..2db046d04 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400209 parse(String xml) { - return ((MxSese02400209) MxReadImpl.parse(MxSese02400209 .class, xml, _classes)); + return ((MxSese02400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400210.java index e7a426063..f4d1603f2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400210 parse(String xml) { - return ((MxSese02400210) MxReadImpl.parse(MxSese02400210 .class, xml, _classes)); + return ((MxSese02400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400211.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400211.java index c663fdd22..6ba4b9545 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400211.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02400211.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02400211 parse(String xml) { - return ((MxSese02400211) MxReadImpl.parse(MxSese02400211 .class, xml, _classes)); + return ((MxSese02400211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02400211 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02400211) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02400211 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500101.java index 5d3cba03e..eb20b2b28 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500101 parse(String xml) { - return ((MxSese02500101) MxReadImpl.parse(MxSese02500101 .class, xml, _classes)); + return ((MxSese02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500102.java index aef150aae..e6a90651a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500102 parse(String xml) { - return ((MxSese02500102) MxReadImpl.parse(MxSese02500102 .class, xml, _classes)); + return ((MxSese02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500103.java index d8f85176e..aeb3aeddb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500103 parse(String xml) { - return ((MxSese02500103) MxReadImpl.parse(MxSese02500103 .class, xml, _classes)); + return ((MxSese02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500104.java index bea9f84e0..0f451fa60 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500104 parse(String xml) { - return ((MxSese02500104) MxReadImpl.parse(MxSese02500104 .class, xml, _classes)); + return ((MxSese02500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500105.java index 555e4f8d4..fe1b5c382 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500105 parse(String xml) { - return ((MxSese02500105) MxReadImpl.parse(MxSese02500105 .class, xml, _classes)); + return ((MxSese02500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500106.java index f1f3550a5..6a253b417 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500106 parse(String xml) { - return ((MxSese02500106) MxReadImpl.parse(MxSese02500106 .class, xml, _classes)); + return ((MxSese02500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500107.java index d1e828d77..8e4623032 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500107 parse(String xml) { - return ((MxSese02500107) MxReadImpl.parse(MxSese02500107 .class, xml, _classes)); + return ((MxSese02500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500108.java index 258a81537..32c74cceb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500108 parse(String xml) { - return ((MxSese02500108) MxReadImpl.parse(MxSese02500108 .class, xml, _classes)); + return ((MxSese02500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500109.java index faa68c3a1..21290bd19 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500109 parse(String xml) { - return ((MxSese02500109) MxReadImpl.parse(MxSese02500109 .class, xml, _classes)); + return ((MxSese02500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500110.java index c64a32edb..08d131f2e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500110 parse(String xml) { - return ((MxSese02500110) MxReadImpl.parse(MxSese02500110 .class, xml, _classes)); + return ((MxSese02500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500201.java index 630c96888..7dd1ef177 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500201 parse(String xml) { - return ((MxSese02500201) MxReadImpl.parse(MxSese02500201 .class, xml, _classes)); + return ((MxSese02500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500202.java index bf4716aa1..1d4d9445f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500202 parse(String xml) { - return ((MxSese02500202) MxReadImpl.parse(MxSese02500202 .class, xml, _classes)); + return ((MxSese02500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500203.java index 1ef2c6fc5..69f6e8228 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500203 parse(String xml) { - return ((MxSese02500203) MxReadImpl.parse(MxSese02500203 .class, xml, _classes)); + return ((MxSese02500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500204.java index 9aa378592..9c6d96683 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500204 parse(String xml) { - return ((MxSese02500204) MxReadImpl.parse(MxSese02500204 .class, xml, _classes)); + return ((MxSese02500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500205.java index 3403c1da4..4e4a742c4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500205 parse(String xml) { - return ((MxSese02500205) MxReadImpl.parse(MxSese02500205 .class, xml, _classes)); + return ((MxSese02500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500206.java index 946281460..a1ed29cc1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500206 parse(String xml) { - return ((MxSese02500206) MxReadImpl.parse(MxSese02500206 .class, xml, _classes)); + return ((MxSese02500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500207.java index dc3b49bb7..36982348d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500207 parse(String xml) { - return ((MxSese02500207) MxReadImpl.parse(MxSese02500207 .class, xml, _classes)); + return ((MxSese02500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500208.java index 3599f9f52..417ba18fa 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500208 parse(String xml) { - return ((MxSese02500208) MxReadImpl.parse(MxSese02500208 .class, xml, _classes)); + return ((MxSese02500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500209.java index 92d984f31..727fc3f59 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500209 parse(String xml) { - return ((MxSese02500209) MxReadImpl.parse(MxSese02500209 .class, xml, _classes)); + return ((MxSese02500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500210.java index 58bc49c93..3927f72b9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02500210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02500210 parse(String xml) { - return ((MxSese02500210) MxReadImpl.parse(MxSese02500210 .class, xml, _classes)); + return ((MxSese02500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02500210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600101.java index 5277b6d32..d14f20de3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600101 parse(String xml) { - return ((MxSese02600101) MxReadImpl.parse(MxSese02600101 .class, xml, _classes)); + return ((MxSese02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600102.java index d6335405f..d71de9a12 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600102 parse(String xml) { - return ((MxSese02600102) MxReadImpl.parse(MxSese02600102 .class, xml, _classes)); + return ((MxSese02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600103.java index 051aa2477..57c3f8c93 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600103 parse(String xml) { - return ((MxSese02600103) MxReadImpl.parse(MxSese02600103 .class, xml, _classes)); + return ((MxSese02600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600104.java index 26c243969..dc1a4df51 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600104 parse(String xml) { - return ((MxSese02600104) MxReadImpl.parse(MxSese02600104 .class, xml, _classes)); + return ((MxSese02600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600105.java index 74bdb3eb9..014379b86 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600105 parse(String xml) { - return ((MxSese02600105) MxReadImpl.parse(MxSese02600105 .class, xml, _classes)); + return ((MxSese02600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600106.java index 2c0faf3e0..bf01a1f88 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600106 parse(String xml) { - return ((MxSese02600106) MxReadImpl.parse(MxSese02600106 .class, xml, _classes)); + return ((MxSese02600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600107.java index bb2102873..5a886aeca 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600107 parse(String xml) { - return ((MxSese02600107) MxReadImpl.parse(MxSese02600107 .class, xml, _classes)); + return ((MxSese02600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600108.java index 0cf0ccc49..065eb5831 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600108 parse(String xml) { - return ((MxSese02600108) MxReadImpl.parse(MxSese02600108 .class, xml, _classes)); + return ((MxSese02600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600109.java index 6535f9381..e2d8896ee 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600109 parse(String xml) { - return ((MxSese02600109) MxReadImpl.parse(MxSese02600109 .class, xml, _classes)); + return ((MxSese02600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600201.java index 1adb278d8..5b0e92ede 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600201 parse(String xml) { - return ((MxSese02600201) MxReadImpl.parse(MxSese02600201 .class, xml, _classes)); + return ((MxSese02600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600202.java index c92e83b2b..f3188e157 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600202 parse(String xml) { - return ((MxSese02600202) MxReadImpl.parse(MxSese02600202 .class, xml, _classes)); + return ((MxSese02600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600203.java index 2e7e49ced..acc94e695 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600203 parse(String xml) { - return ((MxSese02600203) MxReadImpl.parse(MxSese02600203 .class, xml, _classes)); + return ((MxSese02600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600204.java index ec2ef52bc..ec1ec07d0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600204 parse(String xml) { - return ((MxSese02600204) MxReadImpl.parse(MxSese02600204 .class, xml, _classes)); + return ((MxSese02600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600205.java index 94b17e609..ebda781a9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600205 parse(String xml) { - return ((MxSese02600205) MxReadImpl.parse(MxSese02600205 .class, xml, _classes)); + return ((MxSese02600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600206.java index 33c3f4bc8..d85643e6d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600206 parse(String xml) { - return ((MxSese02600206) MxReadImpl.parse(MxSese02600206 .class, xml, _classes)); + return ((MxSese02600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600207.java index 1c8f39d34..d325468e1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600207 parse(String xml) { - return ((MxSese02600207) MxReadImpl.parse(MxSese02600207 .class, xml, _classes)); + return ((MxSese02600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600208.java index 2eecd144d..da0287308 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600208 parse(String xml) { - return ((MxSese02600208) MxReadImpl.parse(MxSese02600208 .class, xml, _classes)); + return ((MxSese02600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600209.java index c579029c3..579c3c57a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02600209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02600209 parse(String xml) { - return ((MxSese02600209) MxReadImpl.parse(MxSese02600209 .class, xml, _classes)); + return ((MxSese02600209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02600209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02600209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02600209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700101.java index 2f01ee069..c15fa1c9d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700101 parse(String xml) { - return ((MxSese02700101) MxReadImpl.parse(MxSese02700101 .class, xml, _classes)); + return ((MxSese02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700102.java index 1493fe816..d311bf38f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700102 parse(String xml) { - return ((MxSese02700102) MxReadImpl.parse(MxSese02700102 .class, xml, _classes)); + return ((MxSese02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700103.java index 74358d249..a358dca0d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700103 parse(String xml) { - return ((MxSese02700103) MxReadImpl.parse(MxSese02700103 .class, xml, _classes)); + return ((MxSese02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700104.java index f38266f78..b56379053 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700104 parse(String xml) { - return ((MxSese02700104) MxReadImpl.parse(MxSese02700104 .class, xml, _classes)); + return ((MxSese02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700105.java index de7a4c39c..2bf595810 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700105 parse(String xml) { - return ((MxSese02700105) MxReadImpl.parse(MxSese02700105 .class, xml, _classes)); + return ((MxSese02700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700106.java index 4759324be..0991d85dc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700106 parse(String xml) { - return ((MxSese02700106) MxReadImpl.parse(MxSese02700106 .class, xml, _classes)); + return ((MxSese02700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700201.java index 58556c758..ab052bfe1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700201 parse(String xml) { - return ((MxSese02700201) MxReadImpl.parse(MxSese02700201 .class, xml, _classes)); + return ((MxSese02700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700202.java index c5c1cb116..f8ff40dcc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700202 parse(String xml) { - return ((MxSese02700202) MxReadImpl.parse(MxSese02700202 .class, xml, _classes)); + return ((MxSese02700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700203.java index cd72e343b..585838047 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700203 parse(String xml) { - return ((MxSese02700203) MxReadImpl.parse(MxSese02700203 .class, xml, _classes)); + return ((MxSese02700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700204.java index 7c0f18cb7..f093906a1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700204 parse(String xml) { - return ((MxSese02700204) MxReadImpl.parse(MxSese02700204 .class, xml, _classes)); + return ((MxSese02700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700205.java index ed4667e3c..b6ea1c724 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700205 parse(String xml) { - return ((MxSese02700205) MxReadImpl.parse(MxSese02700205 .class, xml, _classes)); + return ((MxSese02700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700206.java index d35a62aec..44e57badd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02700206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02700206 parse(String xml) { - return ((MxSese02700206) MxReadImpl.parse(MxSese02700206 .class, xml, _classes)); + return ((MxSese02700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02700206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800101.java index e8d836be6..fb3911162 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800101 parse(String xml) { - return ((MxSese02800101) MxReadImpl.parse(MxSese02800101 .class, xml, _classes)); + return ((MxSese02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800102.java index 179b7bc7d..453fe0c68 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800102 parse(String xml) { - return ((MxSese02800102) MxReadImpl.parse(MxSese02800102 .class, xml, _classes)); + return ((MxSese02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800103.java index 27e56f146..5e7e8239b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800103 parse(String xml) { - return ((MxSese02800103) MxReadImpl.parse(MxSese02800103 .class, xml, _classes)); + return ((MxSese02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800104.java index a89eb83ad..cb36001ba 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800104 parse(String xml) { - return ((MxSese02800104) MxReadImpl.parse(MxSese02800104 .class, xml, _classes)); + return ((MxSese02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800105.java index e25e2bbea..25f7cdc81 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800105 parse(String xml) { - return ((MxSese02800105) MxReadImpl.parse(MxSese02800105 .class, xml, _classes)); + return ((MxSese02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800106.java index a68ebc634..edfad1fb3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800106 parse(String xml) { - return ((MxSese02800106) MxReadImpl.parse(MxSese02800106 .class, xml, _classes)); + return ((MxSese02800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800107.java index bc2cbee6d..552d76a7a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800107 parse(String xml) { - return ((MxSese02800107) MxReadImpl.parse(MxSese02800107 .class, xml, _classes)); + return ((MxSese02800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800108.java index 72e39095f..18dcedee7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800108 parse(String xml) { - return ((MxSese02800108) MxReadImpl.parse(MxSese02800108 .class, xml, _classes)); + return ((MxSese02800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800109.java index f8667762e..c98147f91 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800109 parse(String xml) { - return ((MxSese02800109) MxReadImpl.parse(MxSese02800109 .class, xml, _classes)); + return ((MxSese02800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800201.java index 55ee3afa6..decc9e741 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800201 parse(String xml) { - return ((MxSese02800201) MxReadImpl.parse(MxSese02800201 .class, xml, _classes)); + return ((MxSese02800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800202.java index aee30f6ec..94ee287ee 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800202 parse(String xml) { - return ((MxSese02800202) MxReadImpl.parse(MxSese02800202 .class, xml, _classes)); + return ((MxSese02800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800203.java index d06e699b8..66d57abb1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800203 parse(String xml) { - return ((MxSese02800203) MxReadImpl.parse(MxSese02800203 .class, xml, _classes)); + return ((MxSese02800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800204.java index dddee81ae..a5a809fe0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800204 parse(String xml) { - return ((MxSese02800204) MxReadImpl.parse(MxSese02800204 .class, xml, _classes)); + return ((MxSese02800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800205.java index 54a54e249..a09dac9bb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800205 parse(String xml) { - return ((MxSese02800205) MxReadImpl.parse(MxSese02800205 .class, xml, _classes)); + return ((MxSese02800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800206.java index 3a8a1bf00..e6e614332 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800206 parse(String xml) { - return ((MxSese02800206) MxReadImpl.parse(MxSese02800206 .class, xml, _classes)); + return ((MxSese02800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800207.java index 41b54edfb..a990cd43e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800207 parse(String xml) { - return ((MxSese02800207) MxReadImpl.parse(MxSese02800207 .class, xml, _classes)); + return ((MxSese02800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800208.java index 01a8c319d..a77781391 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800208 parse(String xml) { - return ((MxSese02800208) MxReadImpl.parse(MxSese02800208 .class, xml, _classes)); + return ((MxSese02800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800209.java index 54683be80..4fb0009ac 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02800209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02800209 parse(String xml) { - return ((MxSese02800209) MxReadImpl.parse(MxSese02800209 .class, xml, _classes)); + return ((MxSese02800209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02800209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02800209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02800209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900101.java index b68b6333d..d4b211c94 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900101 parse(String xml) { - return ((MxSese02900101) MxReadImpl.parse(MxSese02900101 .class, xml, _classes)); + return ((MxSese02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900102.java index 9651c2460..f1b2fc2f9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900102 parse(String xml) { - return ((MxSese02900102) MxReadImpl.parse(MxSese02900102 .class, xml, _classes)); + return ((MxSese02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900103.java index 12bbc031c..334503b23 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900103 parse(String xml) { - return ((MxSese02900103) MxReadImpl.parse(MxSese02900103 .class, xml, _classes)); + return ((MxSese02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900104.java index 0381db9e3..8b3197cee 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900104 parse(String xml) { - return ((MxSese02900104) MxReadImpl.parse(MxSese02900104 .class, xml, _classes)); + return ((MxSese02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900105.java index 2cde7945f..f2179843f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900105 parse(String xml) { - return ((MxSese02900105) MxReadImpl.parse(MxSese02900105 .class, xml, _classes)); + return ((MxSese02900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900201.java index 41ee3c4b4..151707523 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900201 parse(String xml) { - return ((MxSese02900201) MxReadImpl.parse(MxSese02900201 .class, xml, _classes)); + return ((MxSese02900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900202.java index f6d494f35..5c2d8e320 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900202 parse(String xml) { - return ((MxSese02900202) MxReadImpl.parse(MxSese02900202 .class, xml, _classes)); + return ((MxSese02900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900203.java index 2a6db4a3e..31bfd9d3b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900203 parse(String xml) { - return ((MxSese02900203) MxReadImpl.parse(MxSese02900203 .class, xml, _classes)); + return ((MxSese02900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900204.java index 0d323abab..889daf928 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900204 parse(String xml) { - return ((MxSese02900204) MxReadImpl.parse(MxSese02900204 .class, xml, _classes)); + return ((MxSese02900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900205.java index 56b2949e0..439c94fe3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese02900205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese02900205 parse(String xml) { - return ((MxSese02900205) MxReadImpl.parse(MxSese02900205 .class, xml, _classes)); + return ((MxSese02900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese02900205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese02900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese02900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000101.java index 6c2aa3817..7934cf172 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000101 parse(String xml) { - return ((MxSese03000101) MxReadImpl.parse(MxSese03000101 .class, xml, _classes)); + return ((MxSese03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000102.java index 4c3658e19..9e1a4be59 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000102 parse(String xml) { - return ((MxSese03000102) MxReadImpl.parse(MxSese03000102 .class, xml, _classes)); + return ((MxSese03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000103.java index 05db17c63..9dbe64ce6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000103 parse(String xml) { - return ((MxSese03000103) MxReadImpl.parse(MxSese03000103 .class, xml, _classes)); + return ((MxSese03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000104.java index 6c21d2006..ade24fc59 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000104 parse(String xml) { - return ((MxSese03000104) MxReadImpl.parse(MxSese03000104 .class, xml, _classes)); + return ((MxSese03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000105.java index 6f5bc15d6..542152b75 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000105 parse(String xml) { - return ((MxSese03000105) MxReadImpl.parse(MxSese03000105 .class, xml, _classes)); + return ((MxSese03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000106.java index fb2172a74..d107c1c33 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000106 parse(String xml) { - return ((MxSese03000106) MxReadImpl.parse(MxSese03000106 .class, xml, _classes)); + return ((MxSese03000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000107.java index 496222b2d..81ab6ec0c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000107 parse(String xml) { - return ((MxSese03000107) MxReadImpl.parse(MxSese03000107 .class, xml, _classes)); + return ((MxSese03000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000108.java index 39da2a311..52f7d97db 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000108 parse(String xml) { - return ((MxSese03000108) MxReadImpl.parse(MxSese03000108 .class, xml, _classes)); + return ((MxSese03000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000201.java index 73aa5fa0d..eaf77a09f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000201 parse(String xml) { - return ((MxSese03000201) MxReadImpl.parse(MxSese03000201 .class, xml, _classes)); + return ((MxSese03000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000202.java index 1efc61526..4c3f68153 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000202 parse(String xml) { - return ((MxSese03000202) MxReadImpl.parse(MxSese03000202 .class, xml, _classes)); + return ((MxSese03000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000203.java index e721db248..222250e5e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000203 parse(String xml) { - return ((MxSese03000203) MxReadImpl.parse(MxSese03000203 .class, xml, _classes)); + return ((MxSese03000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000204.java index c8a680337..839a872ac 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000204 parse(String xml) { - return ((MxSese03000204) MxReadImpl.parse(MxSese03000204 .class, xml, _classes)); + return ((MxSese03000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000205.java index a30e9d408..ad5093ba7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000205 parse(String xml) { - return ((MxSese03000205) MxReadImpl.parse(MxSese03000205 .class, xml, _classes)); + return ((MxSese03000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000206.java index 357b8194b..9be2f27f7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000206 parse(String xml) { - return ((MxSese03000206) MxReadImpl.parse(MxSese03000206 .class, xml, _classes)); + return ((MxSese03000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000207.java index 7f1ffc37b..8198e978b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000207 parse(String xml) { - return ((MxSese03000207) MxReadImpl.parse(MxSese03000207 .class, xml, _classes)); + return ((MxSese03000207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000208.java index 231135fe8..be843c6b4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03000208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03000208 parse(String xml) { - return ((MxSese03000208) MxReadImpl.parse(MxSese03000208 .class, xml, _classes)); + return ((MxSese03000208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03000208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03000208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03000208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100101.java index d1cd33902..77b12545b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100101 parse(String xml) { - return ((MxSese03100101) MxReadImpl.parse(MxSese03100101 .class, xml, _classes)); + return ((MxSese03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100102.java index 9247d8117..85e12d788 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100102 parse(String xml) { - return ((MxSese03100102) MxReadImpl.parse(MxSese03100102 .class, xml, _classes)); + return ((MxSese03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100103.java index e8f497da4..33e6977eb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100103 parse(String xml) { - return ((MxSese03100103) MxReadImpl.parse(MxSese03100103 .class, xml, _classes)); + return ((MxSese03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100104.java index 9ae2ec997..ca621dc74 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100104 parse(String xml) { - return ((MxSese03100104) MxReadImpl.parse(MxSese03100104 .class, xml, _classes)); + return ((MxSese03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100105.java index 73b4361c3..0a44beedb 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100105 parse(String xml) { - return ((MxSese03100105) MxReadImpl.parse(MxSese03100105 .class, xml, _classes)); + return ((MxSese03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100106.java index ef2635f4c..25585fbfa 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100106 parse(String xml) { - return ((MxSese03100106) MxReadImpl.parse(MxSese03100106 .class, xml, _classes)); + return ((MxSese03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100107.java index 3ee1f7059..9a0152bdd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100107 parse(String xml) { - return ((MxSese03100107) MxReadImpl.parse(MxSese03100107 .class, xml, _classes)); + return ((MxSese03100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100108.java index 826cbe369..31af5a0b4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100108 parse(String xml) { - return ((MxSese03100108) MxReadImpl.parse(MxSese03100108 .class, xml, _classes)); + return ((MxSese03100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100201.java index b22da5f43..e91485c14 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100201 parse(String xml) { - return ((MxSese03100201) MxReadImpl.parse(MxSese03100201 .class, xml, _classes)); + return ((MxSese03100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100202.java index 2b015b907..35ef0ea97 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100202 parse(String xml) { - return ((MxSese03100202) MxReadImpl.parse(MxSese03100202 .class, xml, _classes)); + return ((MxSese03100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100203.java index da5ce5fbc..58fef8009 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100203 parse(String xml) { - return ((MxSese03100203) MxReadImpl.parse(MxSese03100203 .class, xml, _classes)); + return ((MxSese03100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100204.java index ea6382365..cb3e66264 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100204 parse(String xml) { - return ((MxSese03100204) MxReadImpl.parse(MxSese03100204 .class, xml, _classes)); + return ((MxSese03100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100205.java index f99355a69..84f675672 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100205 parse(String xml) { - return ((MxSese03100205) MxReadImpl.parse(MxSese03100205 .class, xml, _classes)); + return ((MxSese03100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100206.java index d7c9f5bd6..8b2287e5f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100206 parse(String xml) { - return ((MxSese03100206) MxReadImpl.parse(MxSese03100206 .class, xml, _classes)); + return ((MxSese03100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100207.java index 820dec146..df101574e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100207 parse(String xml) { - return ((MxSese03100207) MxReadImpl.parse(MxSese03100207 .class, xml, _classes)); + return ((MxSese03100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100208.java index 73fe20bfa..a1bb6d0d6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03100208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03100208 parse(String xml) { - return ((MxSese03100208) MxReadImpl.parse(MxSese03100208 .class, xml, _classes)); + return ((MxSese03100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03100208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03100208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03100208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200101.java index 7610cb4f1..8b353c113 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200101 parse(String xml) { - return ((MxSese03200101) MxReadImpl.parse(MxSese03200101 .class, xml, _classes)); + return ((MxSese03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200102.java index 87bbdb757..789a392b4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200102 parse(String xml) { - return ((MxSese03200102) MxReadImpl.parse(MxSese03200102 .class, xml, _classes)); + return ((MxSese03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200103.java index b4f925b18..919d8281c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200103 parse(String xml) { - return ((MxSese03200103) MxReadImpl.parse(MxSese03200103 .class, xml, _classes)); + return ((MxSese03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200104.java index 2cbb951e7..92c554164 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200104 parse(String xml) { - return ((MxSese03200104) MxReadImpl.parse(MxSese03200104 .class, xml, _classes)); + return ((MxSese03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200105.java index ce6eda772..b9dd7ec69 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200105 parse(String xml) { - return ((MxSese03200105) MxReadImpl.parse(MxSese03200105 .class, xml, _classes)); + return ((MxSese03200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200106.java index 10d0563d9..af5299248 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200106 parse(String xml) { - return ((MxSese03200106) MxReadImpl.parse(MxSese03200106 .class, xml, _classes)); + return ((MxSese03200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200107.java index ab297bc6b..17737c9fd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200107 parse(String xml) { - return ((MxSese03200107) MxReadImpl.parse(MxSese03200107 .class, xml, _classes)); + return ((MxSese03200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200108.java index 7a1b5053a..afeff008a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200108 parse(String xml) { - return ((MxSese03200108) MxReadImpl.parse(MxSese03200108 .class, xml, _classes)); + return ((MxSese03200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200109.java index 76f3b0a0e..64de4258f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200109 parse(String xml) { - return ((MxSese03200109) MxReadImpl.parse(MxSese03200109 .class, xml, _classes)); + return ((MxSese03200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200110.java index b2beb1813..d146137d2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200110 parse(String xml) { - return ((MxSese03200110) MxReadImpl.parse(MxSese03200110 .class, xml, _classes)); + return ((MxSese03200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200201.java index a815fe4ad..64d5d2025 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200201 parse(String xml) { - return ((MxSese03200201) MxReadImpl.parse(MxSese03200201 .class, xml, _classes)); + return ((MxSese03200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200202.java index e879bb5cc..670aec9e7 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200202 parse(String xml) { - return ((MxSese03200202) MxReadImpl.parse(MxSese03200202 .class, xml, _classes)); + return ((MxSese03200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200203.java index c32983608..7a49b39e2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200203 parse(String xml) { - return ((MxSese03200203) MxReadImpl.parse(MxSese03200203 .class, xml, _classes)); + return ((MxSese03200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200204.java index da54c59ce..44ecad5ef 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200204 parse(String xml) { - return ((MxSese03200204) MxReadImpl.parse(MxSese03200204 .class, xml, _classes)); + return ((MxSese03200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200205.java index 6f1d1161c..dc093b5df 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200205 parse(String xml) { - return ((MxSese03200205) MxReadImpl.parse(MxSese03200205 .class, xml, _classes)); + return ((MxSese03200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200206.java index c69a0d9ac..fe2dc4b93 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200206 parse(String xml) { - return ((MxSese03200206) MxReadImpl.parse(MxSese03200206 .class, xml, _classes)); + return ((MxSese03200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200207.java index a8ee6d84f..7a5d88df4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200207 parse(String xml) { - return ((MxSese03200207) MxReadImpl.parse(MxSese03200207 .class, xml, _classes)); + return ((MxSese03200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200208.java index f04fa1817..0c298a8c6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200208 parse(String xml) { - return ((MxSese03200208) MxReadImpl.parse(MxSese03200208 .class, xml, _classes)); + return ((MxSese03200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200209.java index 986b7601e..2c7cb189d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200209 parse(String xml) { - return ((MxSese03200209) MxReadImpl.parse(MxSese03200209 .class, xml, _classes)); + return ((MxSese03200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200210.java index aff6401cb..3c3ee7893 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03200210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03200210 parse(String xml) { - return ((MxSese03200210) MxReadImpl.parse(MxSese03200210 .class, xml, _classes)); + return ((MxSese03200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03200210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03200210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03200210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300101.java index abec250a5..de46c931a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300101 parse(String xml) { - return ((MxSese03300101) MxReadImpl.parse(MxSese03300101 .class, xml, _classes)); + return ((MxSese03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300102.java index fb7bdd839..cfe3f09ca 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300102 parse(String xml) { - return ((MxSese03300102) MxReadImpl.parse(MxSese03300102 .class, xml, _classes)); + return ((MxSese03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300103.java index f057b4e4d..a9f848aec 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300103 parse(String xml) { - return ((MxSese03300103) MxReadImpl.parse(MxSese03300103 .class, xml, _classes)); + return ((MxSese03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300104.java index ccddb338f..9f2d3cdc4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300104 parse(String xml) { - return ((MxSese03300104) MxReadImpl.parse(MxSese03300104 .class, xml, _classes)); + return ((MxSese03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300105.java index 0581842a3..c8ecdba97 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300105 parse(String xml) { - return ((MxSese03300105) MxReadImpl.parse(MxSese03300105 .class, xml, _classes)); + return ((MxSese03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300106.java index 614c46276..f3e114328 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300106 parse(String xml) { - return ((MxSese03300106) MxReadImpl.parse(MxSese03300106 .class, xml, _classes)); + return ((MxSese03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300107.java index fbabd9c93..739c8b142 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300107 parse(String xml) { - return ((MxSese03300107) MxReadImpl.parse(MxSese03300107 .class, xml, _classes)); + return ((MxSese03300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300108.java index 1d2d294a3..fe2371d8b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300108 parse(String xml) { - return ((MxSese03300108) MxReadImpl.parse(MxSese03300108 .class, xml, _classes)); + return ((MxSese03300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300109.java index 6cf241bd3..ff31dd14e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300109 parse(String xml) { - return ((MxSese03300109) MxReadImpl.parse(MxSese03300109 .class, xml, _classes)); + return ((MxSese03300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300110.java index bacb2c7d7..4f986a8a3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300110 parse(String xml) { - return ((MxSese03300110) MxReadImpl.parse(MxSese03300110 .class, xml, _classes)); + return ((MxSese03300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300201.java index 0e35f0847..49a27dbfe 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300201 parse(String xml) { - return ((MxSese03300201) MxReadImpl.parse(MxSese03300201 .class, xml, _classes)); + return ((MxSese03300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300202.java index 3d91ab7eb..82ee16604 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300202 parse(String xml) { - return ((MxSese03300202) MxReadImpl.parse(MxSese03300202 .class, xml, _classes)); + return ((MxSese03300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300203.java index 4fcd4c942..3757fc456 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300203 parse(String xml) { - return ((MxSese03300203) MxReadImpl.parse(MxSese03300203 .class, xml, _classes)); + return ((MxSese03300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300204.java index 4c578a400..837fad762 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300204 parse(String xml) { - return ((MxSese03300204) MxReadImpl.parse(MxSese03300204 .class, xml, _classes)); + return ((MxSese03300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300205.java index a97f6c0cc..e5b7ef35d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300205 parse(String xml) { - return ((MxSese03300205) MxReadImpl.parse(MxSese03300205 .class, xml, _classes)); + return ((MxSese03300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300206.java index 292f98826..af36aaea1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300206 parse(String xml) { - return ((MxSese03300206) MxReadImpl.parse(MxSese03300206 .class, xml, _classes)); + return ((MxSese03300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300207.java index d191675d1..b8c1af19c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300207 parse(String xml) { - return ((MxSese03300207) MxReadImpl.parse(MxSese03300207 .class, xml, _classes)); + return ((MxSese03300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300208.java index 6a6796272..e537966ac 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300208 parse(String xml) { - return ((MxSese03300208) MxReadImpl.parse(MxSese03300208 .class, xml, _classes)); + return ((MxSese03300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300209.java index 1c8376118..64a096a96 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300209 parse(String xml) { - return ((MxSese03300209) MxReadImpl.parse(MxSese03300209 .class, xml, _classes)); + return ((MxSese03300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300210.java index 36d475fcf..b961f806a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03300210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03300210 parse(String xml) { - return ((MxSese03300210) MxReadImpl.parse(MxSese03300210 .class, xml, _classes)); + return ((MxSese03300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03300210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03300210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03300210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400101.java index 90966a8c4..3bb532457 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400101 parse(String xml) { - return ((MxSese03400101) MxReadImpl.parse(MxSese03400101 .class, xml, _classes)); + return ((MxSese03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400102.java index 0a3b50794..af2a7922c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400102 parse(String xml) { - return ((MxSese03400102) MxReadImpl.parse(MxSese03400102 .class, xml, _classes)); + return ((MxSese03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400103.java index c151ab244..8b1da6185 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400103 parse(String xml) { - return ((MxSese03400103) MxReadImpl.parse(MxSese03400103 .class, xml, _classes)); + return ((MxSese03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400104.java index 0db73719c..7b189a844 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400104 parse(String xml) { - return ((MxSese03400104) MxReadImpl.parse(MxSese03400104 .class, xml, _classes)); + return ((MxSese03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400105.java index 15289faef..051b192fc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400105 parse(String xml) { - return ((MxSese03400105) MxReadImpl.parse(MxSese03400105 .class, xml, _classes)); + return ((MxSese03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400106.java index f13485234..57666ceca 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400106 parse(String xml) { - return ((MxSese03400106) MxReadImpl.parse(MxSese03400106 .class, xml, _classes)); + return ((MxSese03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400107.java index 7a4a9d12a..c150f6189 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400107 parse(String xml) { - return ((MxSese03400107) MxReadImpl.parse(MxSese03400107 .class, xml, _classes)); + return ((MxSese03400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400108.java index 64e6b1327..f2bd528a8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400108 parse(String xml) { - return ((MxSese03400108) MxReadImpl.parse(MxSese03400108 .class, xml, _classes)); + return ((MxSese03400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400201.java index 84c7a5023..6491b3562 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400201 parse(String xml) { - return ((MxSese03400201) MxReadImpl.parse(MxSese03400201 .class, xml, _classes)); + return ((MxSese03400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400202.java index 828c10917..6a92a8262 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400202 parse(String xml) { - return ((MxSese03400202) MxReadImpl.parse(MxSese03400202 .class, xml, _classes)); + return ((MxSese03400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400203.java index 9ca930a9c..e255808be 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400203 parse(String xml) { - return ((MxSese03400203) MxReadImpl.parse(MxSese03400203 .class, xml, _classes)); + return ((MxSese03400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400204.java index fdebe3bd4..fd93f5b13 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400204 parse(String xml) { - return ((MxSese03400204) MxReadImpl.parse(MxSese03400204 .class, xml, _classes)); + return ((MxSese03400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400205.java index 2238f82f0..720d453fa 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400205 parse(String xml) { - return ((MxSese03400205) MxReadImpl.parse(MxSese03400205 .class, xml, _classes)); + return ((MxSese03400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400206.java index d7c243939..491d77f23 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400206 parse(String xml) { - return ((MxSese03400206) MxReadImpl.parse(MxSese03400206 .class, xml, _classes)); + return ((MxSese03400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400207.java index a2962e5f4..2f41afd4d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400207 parse(String xml) { - return ((MxSese03400207) MxReadImpl.parse(MxSese03400207 .class, xml, _classes)); + return ((MxSese03400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400208.java index aee5a265c..b474474f1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03400208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03400208 parse(String xml) { - return ((MxSese03400208) MxReadImpl.parse(MxSese03400208 .class, xml, _classes)); + return ((MxSese03400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03400208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03400208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03400208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500101.java index 47db78ced..8ac1b4a18 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500101 parse(String xml) { - return ((MxSese03500101) MxReadImpl.parse(MxSese03500101 .class, xml, _classes)); + return ((MxSese03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500102.java index 5939f25cf..baa134e98 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500102 parse(String xml) { - return ((MxSese03500102) MxReadImpl.parse(MxSese03500102 .class, xml, _classes)); + return ((MxSese03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500103.java index 8b9143d67..ba9cb57e3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500103 parse(String xml) { - return ((MxSese03500103) MxReadImpl.parse(MxSese03500103 .class, xml, _classes)); + return ((MxSese03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500104.java index 71f106f23..52eb2e3f4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500104 parse(String xml) { - return ((MxSese03500104) MxReadImpl.parse(MxSese03500104 .class, xml, _classes)); + return ((MxSese03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500105.java index 79e4966df..5c42f3075 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500105 parse(String xml) { - return ((MxSese03500105) MxReadImpl.parse(MxSese03500105 .class, xml, _classes)); + return ((MxSese03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500106.java index a52e3fdb8..eefb01e59 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500106 parse(String xml) { - return ((MxSese03500106) MxReadImpl.parse(MxSese03500106 .class, xml, _classes)); + return ((MxSese03500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500107.java index af0e6c1b4..0da899679 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500107 parse(String xml) { - return ((MxSese03500107) MxReadImpl.parse(MxSese03500107 .class, xml, _classes)); + return ((MxSese03500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500108.java index e4879899e..98c9f7524 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500108 parse(String xml) { - return ((MxSese03500108) MxReadImpl.parse(MxSese03500108 .class, xml, _classes)); + return ((MxSese03500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500109.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500109.java index 75bb5ac5f..622c15f58 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500109.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500109 parse(String xml) { - return ((MxSese03500109) MxReadImpl.parse(MxSese03500109 .class, xml, _classes)); + return ((MxSese03500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500109 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500110.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500110.java index 92abdc873..9a2de259f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500110.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500110 parse(String xml) { - return ((MxSese03500110) MxReadImpl.parse(MxSese03500110 .class, xml, _classes)); + return ((MxSese03500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500110 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500201.java index a765484d8..ba29de936 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500201 parse(String xml) { - return ((MxSese03500201) MxReadImpl.parse(MxSese03500201 .class, xml, _classes)); + return ((MxSese03500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500202.java index 7eb36f7c2..9a835df33 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500202 parse(String xml) { - return ((MxSese03500202) MxReadImpl.parse(MxSese03500202 .class, xml, _classes)); + return ((MxSese03500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500203.java index f9a1d4f66..3ca4067c9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500203 parse(String xml) { - return ((MxSese03500203) MxReadImpl.parse(MxSese03500203 .class, xml, _classes)); + return ((MxSese03500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500204.java index 8d512045d..a404f75bc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500204 parse(String xml) { - return ((MxSese03500204) MxReadImpl.parse(MxSese03500204 .class, xml, _classes)); + return ((MxSese03500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500205.java index dfa19bc36..46875d506 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500205 parse(String xml) { - return ((MxSese03500205) MxReadImpl.parse(MxSese03500205 .class, xml, _classes)); + return ((MxSese03500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500206.java index a2e7ce08a..94bdff7f1 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500206 parse(String xml) { - return ((MxSese03500206) MxReadImpl.parse(MxSese03500206 .class, xml, _classes)); + return ((MxSese03500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500207.java index 6124190bd..778a7cfc2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500207 parse(String xml) { - return ((MxSese03500207) MxReadImpl.parse(MxSese03500207 .class, xml, _classes)); + return ((MxSese03500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500208.java index ec352142c..9ddc7b30c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500208 parse(String xml) { - return ((MxSese03500208) MxReadImpl.parse(MxSese03500208 .class, xml, _classes)); + return ((MxSese03500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500209.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500209.java index c0d10bb87..8cd86288a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500209.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500209.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500209 parse(String xml) { - return ((MxSese03500209) MxReadImpl.parse(MxSese03500209 .class, xml, _classes)); + return ((MxSese03500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500209 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500209) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500209 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500210.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500210.java index 37f72f6df..f8b4d9f63 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500210.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03500210.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03500210 parse(String xml) { - return ((MxSese03500210) MxReadImpl.parse(MxSese03500210 .class, xml, _classes)); + return ((MxSese03500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03500210 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03500210) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03500210 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600101.java index 071bfc97e..7f02ed814 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600101 parse(String xml) { - return ((MxSese03600101) MxReadImpl.parse(MxSese03600101 .class, xml, _classes)); + return ((MxSese03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600102.java index 8a1835941..1fba71f19 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600102 parse(String xml) { - return ((MxSese03600102) MxReadImpl.parse(MxSese03600102 .class, xml, _classes)); + return ((MxSese03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600103.java index 475c574ff..f7656904a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600103 parse(String xml) { - return ((MxSese03600103) MxReadImpl.parse(MxSese03600103 .class, xml, _classes)); + return ((MxSese03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600104.java index 86af6e73b..806ab3861 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600104 parse(String xml) { - return ((MxSese03600104) MxReadImpl.parse(MxSese03600104 .class, xml, _classes)); + return ((MxSese03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600105.java index 597626993..1b3d4e3e2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600105 parse(String xml) { - return ((MxSese03600105) MxReadImpl.parse(MxSese03600105 .class, xml, _classes)); + return ((MxSese03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600106.java index df47f0c7a..bee4cb117 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600106 parse(String xml) { - return ((MxSese03600106) MxReadImpl.parse(MxSese03600106 .class, xml, _classes)); + return ((MxSese03600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600107.java index be30d2c0a..871a6ae06 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600107 parse(String xml) { - return ((MxSese03600107) MxReadImpl.parse(MxSese03600107 .class, xml, _classes)); + return ((MxSese03600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600201.java index 5d5bbe03c..ba872d5f6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600201 parse(String xml) { - return ((MxSese03600201) MxReadImpl.parse(MxSese03600201 .class, xml, _classes)); + return ((MxSese03600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600202.java index 6506ac7c8..9fc05bc97 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600202 parse(String xml) { - return ((MxSese03600202) MxReadImpl.parse(MxSese03600202 .class, xml, _classes)); + return ((MxSese03600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600203.java index b65b53ca9..94947002a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600203 parse(String xml) { - return ((MxSese03600203) MxReadImpl.parse(MxSese03600203 .class, xml, _classes)); + return ((MxSese03600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600204.java index f1459bb85..c25aca1dc 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600204 parse(String xml) { - return ((MxSese03600204) MxReadImpl.parse(MxSese03600204 .class, xml, _classes)); + return ((MxSese03600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600205.java index d23e8baee..7fc4589ed 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600205 parse(String xml) { - return ((MxSese03600205) MxReadImpl.parse(MxSese03600205 .class, xml, _classes)); + return ((MxSese03600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600206.java index a561c6940..aef0c88d4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600206 parse(String xml) { - return ((MxSese03600206) MxReadImpl.parse(MxSese03600206 .class, xml, _classes)); + return ((MxSese03600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600207.java index 080802f54..1a301ec86 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03600207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03600207 parse(String xml) { - return ((MxSese03600207) MxReadImpl.parse(MxSese03600207 .class, xml, _classes)); + return ((MxSese03600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03600207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03600207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03600207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700101.java index a32592e32..7a1702fd8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700101 parse(String xml) { - return ((MxSese03700101) MxReadImpl.parse(MxSese03700101 .class, xml, _classes)); + return ((MxSese03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700102.java index ed7be93d2..cc6d6bfe9 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700102 parse(String xml) { - return ((MxSese03700102) MxReadImpl.parse(MxSese03700102 .class, xml, _classes)); + return ((MxSese03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700103.java index 9cc46af73..ff6caeb5a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700103 parse(String xml) { - return ((MxSese03700103) MxReadImpl.parse(MxSese03700103 .class, xml, _classes)); + return ((MxSese03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700104.java index cb7271dd1..50d98ab8f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700104 parse(String xml) { - return ((MxSese03700104) MxReadImpl.parse(MxSese03700104 .class, xml, _classes)); + return ((MxSese03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700105.java index 3aaa93ab6..599225da6 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700105 parse(String xml) { - return ((MxSese03700105) MxReadImpl.parse(MxSese03700105 .class, xml, _classes)); + return ((MxSese03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700106.java index 004d15622..b8fd3d809 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700106 parse(String xml) { - return ((MxSese03700106) MxReadImpl.parse(MxSese03700106 .class, xml, _classes)); + return ((MxSese03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700201.java index c4ad511b2..0d37b62bd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700201 parse(String xml) { - return ((MxSese03700201) MxReadImpl.parse(MxSese03700201 .class, xml, _classes)); + return ((MxSese03700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700202.java index 93937c951..07c25014c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700202 parse(String xml) { - return ((MxSese03700202) MxReadImpl.parse(MxSese03700202 .class, xml, _classes)); + return ((MxSese03700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700203.java index e89a5e802..c99cebdb5 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700203 parse(String xml) { - return ((MxSese03700203) MxReadImpl.parse(MxSese03700203 .class, xml, _classes)); + return ((MxSese03700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700204.java index f224be0f7..fc3a021b3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700204 parse(String xml) { - return ((MxSese03700204) MxReadImpl.parse(MxSese03700204 .class, xml, _classes)); + return ((MxSese03700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700205.java index c5334dc8e..2c90edfc2 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700205 parse(String xml) { - return ((MxSese03700205) MxReadImpl.parse(MxSese03700205 .class, xml, _classes)); + return ((MxSese03700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700206.java index 748335068..af5285b34 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03700206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03700206 parse(String xml) { - return ((MxSese03700206) MxReadImpl.parse(MxSese03700206 .class, xml, _classes)); + return ((MxSese03700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03700206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03700206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03700206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800101.java index e183ab8a6..f8e59850a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800101 parse(String xml) { - return ((MxSese03800101) MxReadImpl.parse(MxSese03800101 .class, xml, _classes)); + return ((MxSese03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800102.java index 8e6c76715..29309330a 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800102 parse(String xml) { - return ((MxSese03800102) MxReadImpl.parse(MxSese03800102 .class, xml, _classes)); + return ((MxSese03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800103.java index 004acfa62..29c4311f8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800103 parse(String xml) { - return ((MxSese03800103) MxReadImpl.parse(MxSese03800103 .class, xml, _classes)); + return ((MxSese03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800104.java index 2193ffe0d..a3e12cc26 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800104 parse(String xml) { - return ((MxSese03800104) MxReadImpl.parse(MxSese03800104 .class, xml, _classes)); + return ((MxSese03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800105.java index f2a56919a..ad08c79f3 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800105 parse(String xml) { - return ((MxSese03800105) MxReadImpl.parse(MxSese03800105 .class, xml, _classes)); + return ((MxSese03800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800106.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800106.java index 99a020e65..9b04fdf52 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800106.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800106 parse(String xml) { - return ((MxSese03800106) MxReadImpl.parse(MxSese03800106 .class, xml, _classes)); + return ((MxSese03800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800107.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800107.java index d09ee5bb4..851fc7f2e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800107.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800107 parse(String xml) { - return ((MxSese03800107) MxReadImpl.parse(MxSese03800107 .class, xml, _classes)); + return ((MxSese03800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800107 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800108.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800108.java index 0d3141a2b..db6e0f795 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800108.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800108 parse(String xml) { - return ((MxSese03800108) MxReadImpl.parse(MxSese03800108 .class, xml, _classes)); + return ((MxSese03800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800108 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800201.java index 4db3cb4f9..6a658b156 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800201 parse(String xml) { - return ((MxSese03800201) MxReadImpl.parse(MxSese03800201 .class, xml, _classes)); + return ((MxSese03800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800202.java index 592c14b9c..da13a4a52 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800202 parse(String xml) { - return ((MxSese03800202) MxReadImpl.parse(MxSese03800202 .class, xml, _classes)); + return ((MxSese03800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800203.java index 2cc238301..d5daeb469 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800203 parse(String xml) { - return ((MxSese03800203) MxReadImpl.parse(MxSese03800203 .class, xml, _classes)); + return ((MxSese03800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800204.java index 950cd006d..4343d79dd 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800204 parse(String xml) { - return ((MxSese03800204) MxReadImpl.parse(MxSese03800204 .class, xml, _classes)); + return ((MxSese03800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800205.java index a284998f0..3fe9e399f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800205 parse(String xml) { - return ((MxSese03800205) MxReadImpl.parse(MxSese03800205 .class, xml, _classes)); + return ((MxSese03800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800206.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800206.java index 3efd2c2d1..9d3e7575f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800206.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800206.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800206 parse(String xml) { - return ((MxSese03800206) MxReadImpl.parse(MxSese03800206 .class, xml, _classes)); + return ((MxSese03800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800206 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800206) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800206 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800207.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800207.java index efdee303f..b6130a159 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800207.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800207.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800207 parse(String xml) { - return ((MxSese03800207) MxReadImpl.parse(MxSese03800207 .class, xml, _classes)); + return ((MxSese03800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800207 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800207) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800207 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800208.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800208.java index c40e1cafa..6aeaa3aee 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800208.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03800208.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03800208 parse(String xml) { - return ((MxSese03800208) MxReadImpl.parse(MxSese03800208 .class, xml, _classes)); + return ((MxSese03800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03800208 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03800208) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03800208 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900101.java index 6f7ca22a9..59576e32e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900101 parse(String xml) { - return ((MxSese03900101) MxReadImpl.parse(MxSese03900101 .class, xml, _classes)); + return ((MxSese03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900102.java index 41da2667d..31eae2a5c 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900102 parse(String xml) { - return ((MxSese03900102) MxReadImpl.parse(MxSese03900102 .class, xml, _classes)); + return ((MxSese03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900103.java index d45e46fe5..0803ace2b 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900103 parse(String xml) { - return ((MxSese03900103) MxReadImpl.parse(MxSese03900103 .class, xml, _classes)); + return ((MxSese03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900104.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900104.java index 7af88fc5e..2f5aa4b94 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900104.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900104 parse(String xml) { - return ((MxSese03900104) MxReadImpl.parse(MxSese03900104 .class, xml, _classes)); + return ((MxSese03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900105.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900105.java index faf88ce8c..d73b4c9e0 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900105.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900105 parse(String xml) { - return ((MxSese03900105) MxReadImpl.parse(MxSese03900105 .class, xml, _classes)); + return ((MxSese03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900201.java index cf3c64862..07da329a8 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900201 parse(String xml) { - return ((MxSese03900201) MxReadImpl.parse(MxSese03900201 .class, xml, _classes)); + return ((MxSese03900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900202.java index b02999d25..c58fb5d4f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900202 parse(String xml) { - return ((MxSese03900202) MxReadImpl.parse(MxSese03900202 .class, xml, _classes)); + return ((MxSese03900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900203.java index eed4c7e44..9754d9858 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900203 parse(String xml) { - return ((MxSese03900203) MxReadImpl.parse(MxSese03900203 .class, xml, _classes)); + return ((MxSese03900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900204.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900204.java index 29ce866f0..ebb24aa66 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900204.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900204.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900204 parse(String xml) { - return ((MxSese03900204) MxReadImpl.parse(MxSese03900204 .class, xml, _classes)); + return ((MxSese03900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900204 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900204) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900204 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900205.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900205.java index 8123e4955..e4bc26df4 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900205.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese03900205.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese03900205 parse(String xml) { - return ((MxSese03900205) MxReadImpl.parse(MxSese03900205 .class, xml, _classes)); + return ((MxSese03900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese03900205 parse(String xml, MxReadConfiguration conf) { + return ((MxSese03900205) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese03900205 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000101.java index f98eafab4..428a11d41 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000101 parse(String xml) { - return ((MxSese04000101) MxReadImpl.parse(MxSese04000101 .class, xml, _classes)); + return ((MxSese04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000102.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000102.java index 75dcb05e4..eb661fdab 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000102.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000102 parse(String xml) { - return ((MxSese04000102) MxReadImpl.parse(MxSese04000102 .class, xml, _classes)); + return ((MxSese04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000103.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000103.java index 29f613c76..21184be8d 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000103.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000103 parse(String xml) { - return ((MxSese04000103) MxReadImpl.parse(MxSese04000103 .class, xml, _classes)); + return ((MxSese04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000201.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000201.java index a61243d3b..45634e112 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000201.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000201 parse(String xml) { - return ((MxSese04000201) MxReadImpl.parse(MxSese04000201 .class, xml, _classes)); + return ((MxSese04000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000202.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000202.java index b7bf650a9..5eaf12b5f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000202.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000202.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000202 parse(String xml) { - return ((MxSese04000202) MxReadImpl.parse(MxSese04000202 .class, xml, _classes)); + return ((MxSese04000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000202 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000203.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000203.java index 1f1820d53..9b17c1151 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000203.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04000203.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04000203 parse(String xml) { - return ((MxSese04000203) MxReadImpl.parse(MxSese04000203 .class, xml, _classes)); + return ((MxSese04000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04000203 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04000203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04000203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04100101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04100101.java index 8199ac165..f8936c88f 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04100101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04100101 parse(String xml) { - return ((MxSese04100101) MxReadImpl.parse(MxSese04100101 .class, xml, _classes)); + return ((MxSese04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04200101.java b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04200101.java index 0fd093884..5e69cd86e 100644 --- a/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04200101.java +++ b/model-sese-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSese04200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSese04200101 parse(String xml) { - return ((MxSese04200101) MxReadImpl.parse(MxSese04200101 .class, xml, _classes)); + return ((MxSese04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSese04200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSese04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSese04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent1.java index 6d8a13658..a41c97a04 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent1.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 BenefitCrystallisationEvent1 { protected DrawdownEventType1Choice evtTp; @XmlElement(name = "EvtNb") protected String evtNb; - @XmlElement(name = "EvtDt") + @XmlElement(name = "EvtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar evtDt; @XmlElement(name = "CrstllstnAmt") @@ -102,7 +105,7 @@ public BenefitCrystallisationEvent1 setEvtNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEvtDt() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getEvtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BenefitCrystallisationEvent1 setEvtDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent2.java index cd55ccbea..81e25cf3a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BenefitCrystallisationEvent2.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 BenefitCrystallisationEvent2 { protected String evtTpNb; @XmlElement(name = "EvtTpNm") protected String evtTpNm; - @XmlElement(name = "EvtDt") + @XmlElement(name = "EvtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar evtDt; @XmlElement(name = "CrstllstnAmt") @@ -105,7 +108,7 @@ public BenefitCrystallisationEvent2 setEvtTpNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEvtDt() { @@ -117,7 +120,7 @@ public XMLGregorianCalendar getEvtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BenefitCrystallisationEvent2 setEvtDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRejectedReason1Code.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRejectedReason1Code.java index c5699f8db..61878c25d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRejectedReason1Code.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRejectedReason1Code.java @@ -32,7 +32,7 @@ public enum CancellationRejectedReason1Code { CUTO, /** - * Order is already executed and confirmation has been sent. + * Order or transfer has already been executed and confirmation has been sent. * */ COSE; diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Capped1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Capped1.java index 13c5b3a7a..20f589ecd 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Capped1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Capped1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Capped1 { - @XmlElement(name = "StartDt") + @XmlElement(name = "StartDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar startDt; @XmlElement(name = "IncmLmtCurPrd") @@ -48,7 +51,7 @@ public class Capped1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStartDt() { @@ -60,7 +63,7 @@ public XMLGregorianCalendar getStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Capped1 setStartDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyResponseStatusReason1Code.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyResponseStatusReason1Code.java index 28d22e388..71087f06d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyResponseStatusReason1Code.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyResponseStatusReason1Code.java @@ -27,19 +27,19 @@ public enum CounterpartyResponseStatusReason1Code { /** - * Specifies that the response is related to an allegement from the counterparty. + * Specifies that the response is related to an allegement from the counterparty. * */ CPTR, /** - * Specifies that the response is related to the cancellation request of the counterparty. + * Specifies that the response is related to the cancellation request of the counterparty. * */ CPCX, /** - * Specifies that the response is related to the modification request of the counterparty. + * Specifies that the response is related to the modification request of the counterparty. * */ CPMD; diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount2.java index a027457a1..624eb5d22 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateAndAmount2 { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "Amt", required = true) @@ -37,7 +40,7 @@ public class DateAndAmount2 { * * @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 DateAndAmount2 setDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat1Choice.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat1Choice.java index f98097f04..45805f361 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat1Choice.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat1Choice.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; @@ -27,13 +30,15 @@ }) public class DateFormat1Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "Cd") @XmlSchemaType(name = "string") protected SettlementDate1Code cd; - @XmlElement(name = "DtTm") + @XmlElement(name = "DtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dtTm; @@ -42,7 +47,7 @@ public class DateFormat1Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -54,7 +59,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateFormat1Choice setDt(XMLGregorianCalendar value) { @@ -92,7 +97,7 @@ public DateFormat1Choice setCd(SettlementDate1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtTm() { @@ -104,7 +109,7 @@ public XMLGregorianCalendar getDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateFormat1Choice setDtTm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateQuarter1Choice.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateQuarter1Choice.java index 52d9f6190..7df068191 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateQuarter1Choice.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateQuarter1Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateQuarter1Choice { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "Prd") @@ -37,7 +40,7 @@ public class DateQuarter1Choice { * * @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 DateQuarter1Choice setDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation11.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation11.java index d110e1dd5..b0b5ca0cc 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation11.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation11 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -68,7 +71,7 @@ public class DeliverInformation11 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -80,7 +83,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation11 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation12.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation12.java index 5eada96c3..d03a6fa9d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation12.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation12.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation12 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -74,7 +77,7 @@ public class DeliverInformation12 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation12 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation13.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation13.java index 6e607900a..0d49524ad 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation13.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation13.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation13 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -71,7 +74,7 @@ public class DeliverInformation13 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation13 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation14.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation14.java index 05bfebd2b..ae8c723ed 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation14.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation14.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation14 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -74,7 +77,7 @@ public class DeliverInformation14 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation14 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation15.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation15.java index dd44fa495..40ec9f4b4 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation15.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation15 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -71,7 +74,7 @@ public class DeliverInformation15 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation15 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation16.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation16.java index 99a0338cc..a7c3e57ed 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation16.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation16.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation16 { protected Account19 trfrRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -159,7 +162,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -171,7 +174,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation16 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation17.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation17.java index d99259391..723d5a454 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation17.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation17.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation17 { protected Account19 trfrRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -162,7 +165,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -174,7 +177,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation17 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation18.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation18.java index 6cedf13b2..871424055 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation18.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation18.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation18 { protected Account24 trfrRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -159,7 +162,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -171,7 +174,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation18 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation19.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation19.java index 986943c56..c99ea40d4 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation19.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation19.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation19 { protected Account24 trfrRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -156,7 +159,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -168,7 +171,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation19 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation20.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation20.java index 4619ddb7b..eb2ea06ea 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation20.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation20.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +65,12 @@ public class DeliverInformation20 { @XmlElement(name = "BnfcryCertfctnCmpltn") @XmlSchemaType(name = "string") protected BeneficiaryCertificationCompletion1Code bnfcryCertfctnCmpltn; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -278,7 +282,7 @@ public DeliverInformation20 setBnfcryCertfctnCmpltn(BeneficiaryCertificationComp * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -290,7 +294,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation20 setReqdTradDt(XMLGregorianCalendar value) { @@ -303,7 +307,7 @@ public DeliverInformation20 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -315,7 +319,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation20 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation21.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation21.java index c90b56b16..e0a32b6f6 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation21.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation21.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation21 { @XmlElement(name = "BnfcryCertfctnCmpltn") @XmlSchemaType(name = "string") protected BeneficiaryCertificationCompletion1Code bnfcryCertfctnCmpltn; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -275,7 +279,7 @@ public DeliverInformation21 setBnfcryCertfctnCmpltn(BeneficiaryCertificationComp * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -287,7 +291,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation21 setReqdTradDt(XMLGregorianCalendar value) { @@ -300,7 +304,7 @@ public DeliverInformation21 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -312,7 +316,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation21 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation9.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation9.java index 68b3f5a7c..ff76b8cec 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation9.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeliverInformation9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeliverInformation9 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -65,7 +68,7 @@ public class DeliverInformation9 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeliverInformation9 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown1.java index 38dc85149..8dfca121e 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown1.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 Drawdown1 { protected DrawdownAllowanceCheck1 drwdwnAllwncChck; @XmlElement(name = "PnsnCmcmntLumpSumRmng") protected ActiveCurrencyAnd13DecimalAmount pnsnCmcmntLumpSumRmng; - @XmlElement(name = "PnsnCmcmntLumpSumDt") + @XmlElement(name = "PnsnCmcmntLumpSumDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pnsnCmcmntLumpSumDt; @XmlElement(name = "MltplPnsnCmcmntLumpSums") @@ -69,7 +72,8 @@ public class Drawdown1 { protected BeneficiaryDrawdown1 bnfcryDtls; @XmlElement(name = "CapdLmts") protected Capped1 capdLmts; - @XmlElement(name = "FlxblDrwdwnTrggrdDt") + @XmlElement(name = "FlxblDrwdwnTrggrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar flxblDrwdwnTrggrdDt; @XmlElement(name = "AddtlInf") @@ -255,7 +259,7 @@ public Drawdown1 setPnsnCmcmntLumpSumRmng(ActiveCurrencyAnd13DecimalAmount value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPnsnCmcmntLumpSumDt() { @@ -267,7 +271,7 @@ public XMLGregorianCalendar getPnsnCmcmntLumpSumDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Drawdown1 setPnsnCmcmntLumpSumDt(XMLGregorianCalendar value) { @@ -405,7 +409,7 @@ public Drawdown1 setCapdLmts(Capped1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFlxblDrwdwnTrggrdDt() { @@ -417,7 +421,7 @@ public XMLGregorianCalendar getFlxblDrwdwnTrggrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Drawdown1 setFlxblDrwdwnTrggrdDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown2.java index fa9d7bc17..a3462ba71 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Drawdown2.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 Drawdown2 { protected Boolean addtlFndsDsgntd; @XmlElement(name = "PnsnCmcmntLumpSumRmng") protected ActiveCurrencyAnd13DecimalAmount pnsnCmcmntLumpSumRmng; - @XmlElement(name = "PnsnCmcmntLumpSumDt") + @XmlElement(name = "PnsnCmcmntLumpSumDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pnsnCmcmntLumpSumDt; @XmlElement(name = "MltplPnsnCmcmntLumpSums") @@ -72,7 +75,8 @@ public class Drawdown2 { protected BeneficiaryDrawdown1 bnfcryDtls; @XmlElement(name = "CapdLmts") protected Capped1 capdLmts; - @XmlElement(name = "FlxblDrwdwnTrggrdDt") + @XmlElement(name = "FlxblDrwdwnTrggrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar flxblDrwdwnTrggrdDt; @XmlElement(name = "AddtlInf") @@ -283,7 +287,7 @@ public Drawdown2 setPnsnCmcmntLumpSumRmng(ActiveCurrencyAnd13DecimalAmount value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPnsnCmcmntLumpSumDt() { @@ -295,7 +299,7 @@ public XMLGregorianCalendar getPnsnCmcmntLumpSumDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Drawdown2 setPnsnCmcmntLumpSumDt(XMLGregorianCalendar value) { @@ -433,7 +437,7 @@ public Drawdown2 setCapdLmts(Capped1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFlxblDrwdwnTrggrdDt() { @@ -445,7 +449,7 @@ public XMLGregorianCalendar getFlxblDrwdwnTrggrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Drawdown2 setFlxblDrwdwnTrggrdDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument33.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument33.java index 6c0f66bba..80652fbf7 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument33.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument33.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrument33 { protected PartyIdentificationAndAccount93 rcvgAgtDtls; @XmlElement(name = "DlvrgAgtDtls") protected PartyIdentificationAndAccount93 dlvrgAgtDtls; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @@ -287,7 +290,7 @@ public FinancialInstrument33 setDlvrgAgtDtls(PartyIdentificationAndAccount93 val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -299,7 +302,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument33 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument35.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument35.java index e0ea7f3a2..44a07060e 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument35.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument35.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrument35 { protected PartyIdentificationAndAccount93 rcvgAgtDtls; @XmlElement(name = "DlvrgAgtDtls") protected PartyIdentificationAndAccount93 dlvrgAgtDtls; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @@ -315,7 +318,7 @@ public FinancialInstrument35 setDlvrgAgtDtls(PartyIdentificationAndAccount93 val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -327,7 +330,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument35 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument40.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument40.java index b152c3965..1b78e6f46 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument40.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument40.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrument40 { protected PartyIdentificationAndAccount93 rcvgAgtDtls; @XmlElement(name = "DlvrgAgtDtls") protected PartyIdentificationAndAccount93 dlvrgAgtDtls; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @@ -343,7 +346,7 @@ public FinancialInstrument40 setDlvrgAgtDtls(PartyIdentificationAndAccount93 val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -355,7 +358,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument40 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument48.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument48.java index 736fd6af4..67d9a2bb6 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument48.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument48.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrument48 { protected ReceivingPartiesAndAccount14 sttlmPtiesRcvgSdDtls; @XmlElement(name = "DlvrgAgtDtls") protected PartyIdentificationAndAccount125 dlvrgAgtDtls; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @@ -371,7 +374,7 @@ public FinancialInstrument48 setDlvrgAgtDtls(PartyIdentificationAndAccount125 va * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -383,7 +386,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument48 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument65.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument65.java index 3615d3e15..405a712b8 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument65.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument65.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialInstrument65 { protected ReceivingPartiesAndAccount18 sttlmPtiesRcvgSdDtls; @XmlElement(name = "DlvrgAgtDtls") protected PartyIdentificationAndAccount156 dlvrgAgtDtls; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @@ -371,7 +374,7 @@ public FinancialInstrument65 setDlvrgAgtDtls(PartyIdentificationAndAccount156 va * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -383,7 +386,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument65 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument69.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument69.java index ed9d9e07c..ceb405566 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument69.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument69.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -77,13 +79,16 @@ public class FinancialInstrument69 { protected Account28 trfeeAcct; @XmlElement(name = "Trfr") protected Account28 trfr; - @XmlElement(name = "ReqdTrfDt") + @XmlElement(name = "ReqdTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTrfDt; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "PmtDtls") @@ -456,7 +461,7 @@ public FinancialInstrument69 setTrfr(Account28 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTrfDt() { @@ -468,7 +473,7 @@ public XMLGregorianCalendar getReqdTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument69 setReqdTrfDt(XMLGregorianCalendar value) { @@ -481,7 +486,7 @@ public FinancialInstrument69 setReqdTrfDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -493,7 +498,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument69 setReqdTradDt(XMLGregorianCalendar value) { @@ -506,7 +511,7 @@ public FinancialInstrument69 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -518,7 +523,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument69 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument70.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument70.java index 0384d6ba7..29cbd52dc 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument70.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument70.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -84,10 +86,12 @@ public class FinancialInstrument70 { protected Account28 trfeeAcct; @XmlElement(name = "Trfr") protected Account28 trfr; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvTrfDt") @@ -514,7 +518,7 @@ public FinancialInstrument70 setTrfr(Account28 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -526,7 +530,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument70 setReqdTradDt(XMLGregorianCalendar value) { @@ -539,7 +543,7 @@ public FinancialInstrument70 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -551,7 +555,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument70 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument83.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument83.java index 57392be4e..9e028a440 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument83.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument83.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; @@ -100,10 +102,12 @@ public class FinancialInstrument83 { protected Account28 trfr; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvTrfDt") @@ -659,7 +663,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -671,7 +675,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument83 setReqdTradDt(XMLGregorianCalendar value) { @@ -684,7 +688,7 @@ public FinancialInstrument83 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -696,7 +700,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument83 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument86.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument86.java index cc90148e3..db1e59a0c 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument86.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument86.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -89,13 +91,16 @@ public class FinancialInstrument86 { protected Account28 trfr; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdTrfDt") + @XmlElement(name = "ReqdTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTrfDt; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "PmtDtls") @@ -572,7 +577,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTrfDt() { @@ -584,7 +589,7 @@ public XMLGregorianCalendar getReqdTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument86 setReqdTrfDt(XMLGregorianCalendar value) { @@ -597,7 +602,7 @@ public FinancialInstrument86 setReqdTrfDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -609,7 +614,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument86 setReqdTradDt(XMLGregorianCalendar value) { @@ -622,7 +627,7 @@ public FinancialInstrument86 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -634,7 +639,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrument86 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes28.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes28.java index 803a3328c..1c3ca082a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes28.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes28.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 FinancialInstrumentAttributes28 { 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 FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setCpnDt(XMLGregorianCalendar value) { @@ -490,7 +501,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setXpryDt(XMLGregorianCalendar value) { @@ -515,7 +526,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -540,7 +551,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setMtrtyDt(XMLGregorianCalendar value) { @@ -565,7 +576,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setIsseDt(XMLGregorianCalendar value) { @@ -590,7 +601,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setNxtCllblDt(XMLGregorianCalendar value) { @@ -615,7 +626,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setPutblDt(XMLGregorianCalendar value) { @@ -640,7 +651,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setDtdDt(XMLGregorianCalendar value) { @@ -665,7 +676,7 @@ public FinancialInstrumentAttributes28 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 FinancialInstrumentAttributes28 setFrstPmtDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms26.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms26.java index 8df4d1cdd..16211a2c4 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms26.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms26.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 ForeignExchangeTerms26 { 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 ForeignExchangeTerms26 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 ForeignExchangeTerms26 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms37.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms37.java index 812a19054..47926e55b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms37.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms37.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 ForeignExchangeTerms37 { 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 ForeignExchangeTerms37 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 ForeignExchangeTerms37 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer10.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer10.java index 6b6cafa3c..f375dd07a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer10.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer10.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer10 { protected String trfConfId; @XmlElement(name = "TrfInstrRef", required = true) protected String trfInstrRef; - @XmlElement(name = "ActlTrfDt", required = true) + @XmlElement(name = "ActlTrfDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -133,7 +136,7 @@ public ISATransfer10 setTrfInstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -145,7 +148,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer10 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer13.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer13.java index e3cf7d6cb..67447f62f 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer13.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer13.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer13 { protected String trfConfId; @XmlElement(name = "TrfInstrRef", required = true) protected String trfInstrRef; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -133,7 +136,7 @@ public ISATransfer13 setTrfInstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -145,7 +148,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer13 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer2.java index cc8ca4db8..96f513f52 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer2 { protected String trfConfId; @XmlElement(name = "TrfInstrRef", required = true) protected String trfInstrRef; - @XmlElement(name = "ActlTrfDt", required = true) + @XmlElement(name = "ActlTrfDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -133,7 +136,7 @@ public ISATransfer2 setTrfInstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -145,7 +148,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer2 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer21.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer21.java index 277843fa3..007d6197d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer21.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer21.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer21 { protected String trfConfId; @XmlElement(name = "TrfInstrRef", required = true) protected String trfInstrRef; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -133,7 +136,7 @@ public ISATransfer21 setTrfInstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -145,7 +148,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer21 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer26.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer26.java index 33a5cf184..19e840335 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer26.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer26.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer26 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -219,7 +222,7 @@ public ISATransfer26 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -231,7 +234,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer26 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer28.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer28.java index d881121e7..64bbd64aa 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer28.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ISATransfer28.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ISATransfer28 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCsh") @@ -219,7 +222,7 @@ public ISATransfer28 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -231,7 +234,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ISATransfer28 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson8.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson8.java index 9c0e03ed4..91e995594 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson8.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson8.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson8 { @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 = "SclSctyNb") @@ -182,7 +185,7 @@ public IndividualPerson8 setGndr(GenderCode value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -194,7 +197,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson8 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundFee2Code.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundFee2Code.java index add9be5a1..2458c7ecb 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundFee2Code.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundFee2Code.java @@ -55,7 +55,7 @@ public enum InvestmentFundFee2Code { POST, /** - * Fee charged by a regulatory authority, for example, securities and exchange fees. + * Fee charged by a regulatory authority, for example, securities and exchange fees. * */ REGF, diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType1Code.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType1Code.java deleted file mode 100644 index 89ea6a4f9..000000000 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType1Code.java +++ /dev/null @@ -1,55 +0,0 @@ - -package com.prowidesoftware.swift.model.mx.dic; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LinkageType1Code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="LinkageType1Code">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="LINK"/>
- *     <enumeration value="UNLK"/>
- *     <enumeration value="SOFT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "LinkageType1Code") -@XmlEnum -public enum LinkageType1Code { - - - /** - * Request is to link the referenced transactions. - * - */ - LINK, - - /** - * Request is to unlink the referenced transactions. - * - */ - UNLK, - - /** - * Request is to soft link the referenced transactions. - * - */ - SOFT; - - public String value() { - return name(); - } - - public static LinkageType1Code fromValue(String v) { - return valueOf(v); - } - -} diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType3Choice.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType3Choice.java deleted file mode 100644 index a009b1dbd..000000000 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LinkageType3Choice.java +++ /dev/null @@ -1,99 +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 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; - - -/** - * Choice of format for the linkage type. - * - * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LinkageType3Choice", propOrder = { - "cd", - "prtry" -}) -public class LinkageType3Choice { - - @XmlElement(name = "Cd") - @XmlSchemaType(name = "string") - protected LinkageType1Code cd; - @XmlElement(name = "Prtry") - protected GenericIdentification30 prtry; - - /** - * Gets the value of the cd property. - * - * @return - * possible object is - * {@link LinkageType1Code } - * - */ - public LinkageType1Code getCd() { - return cd; - } - - /** - * Sets the value of the cd property. - * - * @param value - * allowed object is - * {@link LinkageType1Code } - * - */ - public LinkageType3Choice setCd(LinkageType1Code value) { - this.cd = value; - return this; - } - - /** - * Gets the value of the prtry property. - * - * @return - * possible object is - * {@link GenericIdentification30 } - * - */ - public GenericIdentification30 getPrtry() { - return prtry; - } - - /** - * Sets the value of the prtry property. - * - * @param value - * allowed object is - * {@link GenericIdentification30 } - * - */ - public LinkageType3Choice setPrtry(GenericIdentification30 value) { - this.prtry = 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-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MoneyPurchaseAnnualAllowance1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MoneyPurchaseAnnualAllowance1.java index 0782575a0..6cb12ca4a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MoneyPurchaseAnnualAllowance1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MoneyPurchaseAnnualAllowance1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MoneyPurchaseAnnualAllowance1 { @XmlElement(name = "Trggrd") protected boolean trggrd; - @XmlElement(name = "TrggrdDt") + @XmlElement(name = "TrggrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trggrdDt; @@ -54,7 +57,7 @@ public MoneyPurchaseAnnualAllowance1 setTrggrd(boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrggrdDt() { @@ -66,7 +69,7 @@ public XMLGregorianCalendar getTrggrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public MoneyPurchaseAnnualAllowance1 setTrggrdDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation21.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation21.java index cf0546df4..c1664a2e7 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation21.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation21.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Organisation21 { 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") @@ -183,7 +186,7 @@ public Organisation21 setRegnCtry(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRegnDt() { @@ -195,7 +198,7 @@ public XMLGregorianCalendar getRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Organisation21 setRegnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation31.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation31.java index f9af4a235..b34a7354d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation31.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation31.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Organisation31 { 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") @@ -183,7 +186,7 @@ public Organisation31 setRegnCtry(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRegnDt() { @@ -195,7 +198,7 @@ public XMLGregorianCalendar getRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Organisation31 setRegnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation36.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation36.java index 8b2a14a3d..56c05af29 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation36.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation36.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Organisation36 { 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") @@ -183,7 +186,7 @@ public Organisation36 setRegnCtry(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRegnDt() { @@ -195,7 +198,7 @@ public XMLGregorianCalendar getRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Organisation36 setRegnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation4.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation4.java index 460bb255a..8a5724633 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation4.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Organisation4 { 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") @@ -183,7 +186,7 @@ public Organisation4 setRegnCtry(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRegnDt() { @@ -195,7 +198,7 @@ public XMLGregorianCalendar getRegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Organisation4 setRegnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PEPISATransfer4.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PEPISATransfer4.java index 13e2d8123..6e548d9cc 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PEPISATransfer4.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PEPISATransfer4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PEPISATransfer4 { protected String trfConfId; @XmlElement(name = "TrfInstrRef", required = true) protected String trfInstrRef; - @XmlElement(name = "ActlTrfDt", required = true) + @XmlElement(name = "ActlTrfDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "RsdlCshInd") @@ -135,7 +138,7 @@ public PEPISATransfer4 setTrfInstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -147,7 +150,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PEPISATransfer4 setActlTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument15.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument15.java index 3bff63a1f..0dbb29b57 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument15.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument15.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstrument15 { protected String ref; @XmlElement(name = "Amt", required = true) protected ActiveCurrencyAnd13DecimalAmount amt; - @XmlElement(name = "PmtDt") + @XmlElement(name = "PmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDt; @XmlElement(name = "CshSttlmDtls") @@ -93,7 +96,7 @@ public PaymentInstrument15 setAmt(ActiveCurrencyAnd13DecimalAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstrument15 setPmtDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument18.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument18.java index 0bcf9c29e..ae118ea60 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument18.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument18.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentInstrument18 { protected String ref; @XmlElement(name = "Amt", required = true) protected ActiveCurrencyAnd13DecimalAmount amt; - @XmlElement(name = "PmtDt") + @XmlElement(name = "PmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDt; @XmlElement(name = "CshSttlmDtls") @@ -93,7 +96,7 @@ public PaymentInstrument18 setAmt(ActiveCurrencyAnd13DecimalAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentInstrument18 setPmtDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer2.java index 50e81c6e5..589abbb81 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer2 { @XmlElement(name = "RsdlCsh") @XmlSchemaType(name = "string") protected ResidualCash1Code rsdlCsh; - @XmlElement(name = "TaxDt") + @XmlElement(name = "TaxDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar taxDt; @XmlElement(name = "FinInstrmAsstForTrf") @@ -241,7 +244,7 @@ public PortfolioTransfer2 setRsdlCsh(ResidualCash1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTaxDt() { @@ -253,7 +256,7 @@ public XMLGregorianCalendar getTaxDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer2 setTaxDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer3.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer3.java index 135bab73e..169b31e54 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer3.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer3 { protected String trfId; @XmlElement(name = "TrfConfId") protected String trfConfId; - @XmlElement(name = "ReqdTrfDt") + @XmlElement(name = "ReqdTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTrfDt; @XmlElement(name = "Prtfl") @@ -144,7 +147,7 @@ public PortfolioTransfer3 setTrfConfId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTrfDt() { @@ -156,7 +159,7 @@ public XMLGregorianCalendar getReqdTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer3 setReqdTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer4.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer4.java index 0a154e566..1f14a576f 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer4.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer4 { protected String trfInstrRef; @XmlElement(name = "TrfConfId", required = true) protected String trfConfId; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "Prtfl") @@ -58,7 +61,8 @@ public class PortfolioTransfer4 { @XmlElement(name = "RsdlCsh") @XmlSchemaType(name = "string") protected ResidualCash1Code rsdlCsh; - @XmlElement(name = "TaxDt") + @XmlElement(name = "TaxDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar taxDt; @XmlElement(name = "PmtDtls") @@ -148,7 +152,7 @@ public PortfolioTransfer4 setTrfConfId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer4 setActlTrfDt(XMLGregorianCalendar value) { @@ -273,7 +277,7 @@ public PortfolioTransfer4 setRsdlCsh(ResidualCash1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTaxDt() { @@ -285,7 +289,7 @@ public XMLGregorianCalendar getTaxDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer4 setTaxDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer5.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer5.java index e2b98ca1f..62c31f86a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer5.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer5 { protected String trfInstrRef; @XmlElement(name = "TrfConfId", required = true) protected String trfConfId; - @XmlElement(name = "ActlTrfDt") + @XmlElement(name = "ActlTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlTrfDt; @XmlElement(name = "Prtfl") @@ -55,7 +58,8 @@ public class PortfolioTransfer5 { protected List cshAll; @XmlElement(name = "RsdlCsh") protected List rsdlCsh; - @XmlElement(name = "TaxDt") + @XmlElement(name = "TaxDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar taxDt; @XmlElement(name = "PmtDtls") @@ -145,7 +149,7 @@ public PortfolioTransfer5 setTrfConfId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlTrfDt() { @@ -157,7 +161,7 @@ public XMLGregorianCalendar getActlTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer5 setActlTrfDt(XMLGregorianCalendar value) { @@ -282,7 +286,7 @@ public List getRsdlCsh() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTaxDt() { @@ -294,7 +298,7 @@ public XMLGregorianCalendar getTaxDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer5 setTaxDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer7.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer7.java index 704742a29..402aa8670 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer7.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer7 { protected Boolean prtlDscvry; @XmlElement(name = "RsdlCsh") protected List rsdlCsh; - @XmlElement(name = "TaxDt") + @XmlElement(name = "TaxDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar taxDt; @XmlElement(name = "FinInstrmAsstForTrf") @@ -214,7 +217,7 @@ public List getRsdlCsh() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTaxDt() { @@ -226,7 +229,7 @@ public XMLGregorianCalendar getTaxDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer7 setTaxDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer8.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer8.java index ae2af91b2..3ba616c3e 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer8.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PortfolioTransfer8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PortfolioTransfer8 { protected String trfId; @XmlElement(name = "TrfConfId") protected String trfConfId; - @XmlElement(name = "ReqdTrfDt") + @XmlElement(name = "ReqdTrfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTrfDt; @XmlElement(name = "Prtfl") @@ -141,7 +144,7 @@ public PortfolioTransfer8 setTrfConfId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTrfDt() { @@ -153,7 +156,7 @@ public XMLGregorianCalendar getReqdTrfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PortfolioTransfer8 setReqdTrfDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation11.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation11.java index 12a46e866..2cdce0c68 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation11.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation11 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -68,7 +71,7 @@ public class ReceiveInformation11 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -80,7 +83,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation11 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation12.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation12.java index f9345aba2..9cdbafa22 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation12.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation12.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation12 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -74,7 +77,7 @@ public class ReceiveInformation12 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation12 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation13.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation13.java index 903155ee6..1947b2dbc 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation13.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation13.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation13 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -71,7 +74,7 @@ public class ReceiveInformation13 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation13 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation14.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation14.java index 88089a9c4..85c1ed473 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation14.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation14.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation14 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -74,7 +77,7 @@ public class ReceiveInformation14 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation14 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation15.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation15.java index ab3936ee0..4e9b08ea4 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation15.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation15 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -71,7 +74,7 @@ public class ReceiveInformation15 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation15 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation16.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation16.java index 9d3be0897..e7f38df71 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation16.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation16.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation16 { protected Account19 trfeeRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -159,7 +162,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -171,7 +174,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation16 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation17.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation17.java index 9d3a86972..95df5c916 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation17.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation17.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation17 { protected Account19 trfeeRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -162,7 +165,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -174,7 +177,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation17 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation18.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation18.java index dc0dec21c..008bd3d8a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation18.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation18.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation18 { protected Account24 trfeeRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -159,7 +162,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -171,7 +174,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation18 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation19.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation19.java index 9b91dfb4e..27b029a39 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation19.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation19.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation19 { protected Account24 trfeeRegdAcct; @XmlElement(name = "IntrmyInf") protected List intrmyInf; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -156,7 +159,7 @@ public List getIntrmyInf() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -168,7 +171,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation19 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation20.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation20.java index 310fadcbe..9f30f2804 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation20.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation20.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +65,12 @@ public class ReceiveInformation20 { @XmlElement(name = "BnfcryCertfctnCmpltn") @XmlSchemaType(name = "string") protected BeneficiaryCertificationCompletion1Code bnfcryCertfctnCmpltn; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -278,7 +282,7 @@ public ReceiveInformation20 setBnfcryCertfctnCmpltn(BeneficiaryCertificationComp * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -290,7 +294,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation20 setReqdTradDt(XMLGregorianCalendar value) { @@ -303,7 +307,7 @@ public ReceiveInformation20 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -315,7 +319,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation20 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation21.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation21.java index 7e78d2753..897007fae 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation21.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation21.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation21 { @XmlElement(name = "BnfcryCertfctnCmpltn") @XmlSchemaType(name = "string") protected BeneficiaryCertificationCompletion1Code bnfcryCertfctnCmpltn; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -275,7 +279,7 @@ public ReceiveInformation21 setBnfcryCertfctnCmpltn(BeneficiaryCertificationComp * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -287,7 +291,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation21 setReqdTradDt(XMLGregorianCalendar value) { @@ -300,7 +304,7 @@ public ReceiveInformation21 setReqdTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -312,7 +316,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation21 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation9.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation9.java index df94dda0a..b49226f11 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation9.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReceiveInformation9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReceiveInformation9 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "SttlmAmt") @@ -65,7 +68,7 @@ public class ReceiveInformation9 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReceiveInformation9 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus20Choice.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus20Choice.java index 68168b3a4..8fa6d9cac 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus20Choice.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus20Choice.java @@ -13,7 +13,7 @@ /** - * Choice of rejection status. + * Choice of rejection status. * * * diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus27Choice.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus27Choice.java index f439191bb..09ba49bfe 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus27Choice.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionStatus27Choice.java @@ -13,7 +13,7 @@ /** - * Choice of rejection status. + * Choice of rejection status. * * * diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails107.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails107.java index e49f0e848..9364d8d24 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails107.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails107.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails107 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails107 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails107 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails107 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails107 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails117.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails117.java index 0ab361d59..99fb07f3b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails117.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails117.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails117 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails117 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails117 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails117 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails117 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails130.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails130.java index f53f301d0..f825c4be9 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails130.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails130.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails130 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails130 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails130 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails130 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails130 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails67.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails67.java index a685c5ea3..ed9c0b2e2 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails67.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails67.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails67 { protected SettlementDate9Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTimeChoice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails67 setLateDlvryDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails67 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails67 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails67 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails70.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails70.java index 9cdc8b92b..c029292b7 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails70.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails70.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails70 { protected SettlementDate12Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTimeChoice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails70 setLateDlvryDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails70 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails70 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails70 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails75.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails75.java index 732ea4a39..5100eba68 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails75.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails75.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails75 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails75 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails75 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails75 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails75 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails87.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails87.java index 8e7a0ca4b..f8921218f 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails87.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails87.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails87 { protected SettlementDate20Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails87 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails87 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails87 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails87 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails93.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails93.java index 782880410..0fcd8a4c6 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails93.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTradeDetails93.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; @@ -63,10 +65,12 @@ public class SecuritiesTradeDetails93 { protected SettlementDate17Choice sttlmDt; @XmlElement(name = "LateDlvryDt") protected DateAndDateTime2Choice lateDlvryDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "DealPric") @@ -284,7 +288,7 @@ public SecuritiesTradeDetails93 setLateDlvryDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -296,7 +300,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails93 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -309,7 +313,7 @@ public SecuritiesTradeDetails93 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -321,7 +325,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesTradeDetails93 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation1.java index adcdff645..2543742bb 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionInformation1 { - @XmlElement(name = "DtOfFrstSbcpt", required = true) + @XmlElement(name = "DtOfFrstSbcpt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfFrstSbcpt; @XmlElement(name = "EqtyCmpnt") @@ -43,7 +46,7 @@ public class SubscriptionInformation1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfFrstSbcpt() { @@ -55,7 +58,7 @@ public XMLGregorianCalendar getDtOfFrstSbcpt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionInformation1 setDtOfFrstSbcpt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation2.java index 31ed83d33..cd8c500ea 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionInformation2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionInformation2 { - @XmlElement(name = "DtOfFrstSbcpt", required = true) + @XmlElement(name = "DtOfFrstSbcpt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfFrstSbcpt; @XmlElement(name = "EqtyCmpnt") @@ -43,7 +46,7 @@ public class SubscriptionInformation2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfFrstSbcpt() { @@ -55,7 +58,7 @@ public XMLGregorianCalendar getDtOfFrstSbcpt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionInformation2 setDtOfFrstSbcpt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct2.java index ea34c2aaf..e661a6753 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TaxEfficientProduct2 { protected Boolean cshCmpntInd; @XmlElement(name = "PrvsYrs") protected PreviousYear4 prvsYrs; - @XmlElement(name = "DtOfFrstSbcpt") + @XmlElement(name = "DtOfFrstSbcpt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfFrstSbcpt; @XmlElement(name = "CurYrSbcptDtls") @@ -153,7 +156,7 @@ public TaxEfficientProduct2 setPrvsYrs(PreviousYear4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfFrstSbcpt() { @@ -165,7 +168,7 @@ public XMLGregorianCalendar getDtOfFrstSbcpt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TaxEfficientProduct2 setDtOfFrstSbcpt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct5.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct5.java index 649dfd711..0e2c6489f 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct5.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxEfficientProduct5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TaxEfficientProduct5 { protected ActiveCurrencyAnd13DecimalAmount prvsYrSbcptAmt; @XmlElement(name = "PrvsYrsSbcptAmt") protected ActiveCurrencyAnd13DecimalAmount prvsYrsSbcptAmt; - @XmlElement(name = "DtOfFrstSbcpt") + @XmlElement(name = "DtOfFrstSbcpt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfFrstSbcpt; @XmlElement(name = "CurYrSbcptDtls") @@ -73,7 +76,8 @@ public class TaxEfficientProduct5 { protected ActiveCurrencyAndAmount ttlSbcptAmt; @XmlElement(name = "OthrAmt") protected List othrAmt; - @XmlElement(name = "DtFrstQlfygAddtn") + @XmlElement(name = "DtFrstQlfygAddtn", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtFrstQlfygAddtn; @XmlElement(name = "InvstrTaxRef") @@ -250,7 +254,7 @@ public TaxEfficientProduct5 setPrvsYrsSbcptAmt(ActiveCurrencyAnd13DecimalAmount * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfFrstSbcpt() { @@ -262,7 +266,7 @@ public XMLGregorianCalendar getDtOfFrstSbcpt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TaxEfficientProduct5 setDtOfFrstSbcpt(XMLGregorianCalendar value) { @@ -408,7 +412,7 @@ public List getOthrAmt() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtFrstQlfygAddtn() { @@ -420,7 +424,7 @@ public XMLGregorianCalendar getDtFrstQlfygAddtn() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TaxEfficientProduct5 setDtFrstQlfygAddtn(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails100.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails100.java index 9540bca27..d78ae1243 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails100.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails100.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails100 { protected SettlementDate15Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate6Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails100 setTradDt(TradeDate6Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails100 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails100 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails100 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails105.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails105.java index 6e3f8e13f..1df381628 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails105.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails105.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails105 { protected SettlementDate19Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate8Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails105 setTradDt(TradeDate8Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails105 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails105 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails105 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails110.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails110.java index c24d81b3e..cc12ea57b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails110.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails110.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails110 { protected SettlementDate32Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate9Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails110 setTradDt(TradeDate9Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails110 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails110 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails110 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails113.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails113.java index 5511706f9..d6610240b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails113.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails113.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails113 { protected SettlementDate19Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate8Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails113 setTradDt(TradeDate8Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails113 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails113 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails113 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails121.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails121.java index 591196a60..cced8daf3 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails121.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails121.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails121 { protected SettlementDate32Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate9Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails121 setTradDt(TradeDate9Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails121 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails121 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails121 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails134.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails134.java index db68b6d7b..84d35c4c7 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails134.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails134.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails134 { protected SettlementDate19Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate8Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails134 setTradDt(TradeDate8Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails134 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails134 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails134 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails142.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails142.java index 97f0ab824..f21647ad5 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails142.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails142.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails142 { protected SettlementDate32Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate9Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails142 setTradDt(TradeDate9Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails142 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails142 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails142 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails97.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails97.java index 67b94122d..9421c243d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails97.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails97.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -96,10 +98,12 @@ public class TransactionDetails97 { protected SettlementDate10Choice sttlmDt; @XmlElement(name = "TradDt") protected TradeDate5Choice tradDt; - @XmlElement(name = "AckdStsTmStmp") + @XmlElement(name = "AckdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ackdStsTmStmp; - @XmlElement(name = "MtchdStsTmStmp") + @XmlElement(name = "MtchdStsTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar mtchdStsTmStmp; @XmlElement(name = "SctiesMvmntTp", required = true) @@ -630,7 +634,7 @@ public TransactionDetails97 setTradDt(TradeDate5Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAckdStsTmStmp() { @@ -642,7 +646,7 @@ public XMLGregorianCalendar getAckdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails97 setAckdStsTmStmp(XMLGregorianCalendar value) { @@ -655,7 +659,7 @@ public TransactionDetails97 setAckdStsTmStmp(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchdStsTmStmp() { @@ -667,7 +671,7 @@ public XMLGregorianCalendar getMtchdStsTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionDetails97 setMtchdStsTmStmp(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer11.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer11.java index bbe78054e..e8eca5521 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer11.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer11 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -181,7 +184,7 @@ public Transfer11 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -193,7 +196,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer11 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer13.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer13.java index b61ecb29a..002844255 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer13.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer13.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; @@ -57,7 +59,8 @@ public class Transfer13 { protected DateAndDateTimeChoice fctvTrfDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -240,7 +243,7 @@ public Transfer13 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -252,7 +255,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer13 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer18.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer18.java index e6dfbb0f9..8f15cebca 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer18.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer18.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer18 { protected DateAndDateTimeChoice fctvTrfDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -232,7 +235,7 @@ public Transfer18 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -244,7 +247,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer18 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer19.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer19.java index 8e2ec83f1..f654369b4 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer19.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer19.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer19 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -191,7 +195,7 @@ public Transfer19 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -203,7 +207,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer19 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -216,7 +220,7 @@ public Transfer19 setReqdSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -228,7 +232,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer19 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer2.java index c361d7b6a..6864f56d3 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer2.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; @@ -42,7 +44,8 @@ public class Transfer2 { protected String trfRef; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "TtlUnitsNb", required = true) @@ -136,7 +139,7 @@ public Transfer2 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -148,7 +151,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer20.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer20.java index 64b11d2d7..076746036 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer20.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer20.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer20 { - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "HldgsPlanTp") @@ -68,7 +71,7 @@ public class Transfer20 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -80,7 +83,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer20 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer21.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer21.java index 133182945..d2caffeda 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer21.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer21.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer21 { protected TransferReason1 trfRsn; @XmlElement(name = "TrfDt") protected DateFormat1Choice trfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "HldgsPlanTp") @@ -227,7 +230,7 @@ public Transfer21 setTrfDt(DateFormat1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -239,7 +242,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer21 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer22.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer22.java index e80431825..662515914 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer22.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer22.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer22 { @XmlElement(name = "TrfDt") protected DateFormat1Choice trfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "HldgsPlanTp") @@ -86,7 +89,7 @@ public Transfer22 setTrfDt(DateFormat1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -98,7 +101,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer22 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer23.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer23.java index d53209ebc..d28393ce1 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer23.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer23.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,14 +61,16 @@ public class Transfer23 { protected AdditionalReference2 ctrPtyRef; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -228,7 +232,7 @@ public Transfer23 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -240,7 +244,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer23 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -303,7 +307,7 @@ public Transfer23 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -315,7 +319,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer23 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer24.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer24.java index 98d8c6b64..f8cf0c1e8 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer24.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer24.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 Transfer24 { @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -106,7 +109,7 @@ public Transfer24 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer24 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer25.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer25.java index 5d4750117..5268bc78b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer25.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer25.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer25 { @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") @@ -98,7 +101,7 @@ public Transfer25 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -110,7 +113,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer25 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer26.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer26.java index 84f508342..e5a9bd694 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer26.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer26.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,14 +58,16 @@ public class Transfer26 { protected AdditionalReference2 ctrPtyRef; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -220,7 +224,7 @@ public Transfer26 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -232,7 +236,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer26 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -295,7 +299,7 @@ public Transfer26 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -307,7 +311,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer26 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer27.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer27.java index 69529db7d..cac657f3b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer27.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer27.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer27 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -194,7 +198,7 @@ public Transfer27 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -206,7 +210,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer27 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -219,7 +223,7 @@ public Transfer27 setReqdSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -231,7 +235,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer27 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer28.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer28.java index ab04e6f46..816f788d0 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer28.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer28.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,14 +67,16 @@ public class Transfer28 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -263,7 +267,7 @@ public Transfer28 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -275,7 +279,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer28 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -338,7 +342,7 @@ public Transfer28 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -350,7 +354,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer28 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer29.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer29.java index c1025da01..f601d9f14 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer29.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer29.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,14 +64,16 @@ public class Transfer29 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -255,7 +259,7 @@ public Transfer29 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -267,7 +271,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer29 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -330,7 +334,7 @@ public Transfer29 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -342,7 +346,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer29 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer30.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer30.java index 54682efac..2c65a1e70 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer30.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer30.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer30 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -194,7 +198,7 @@ public Transfer30 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -206,7 +210,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer30 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -219,7 +223,7 @@ public Transfer30 setReqdSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -231,7 +235,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer30 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer31.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer31.java index 1951eecb4..689886014 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer31.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer31.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,14 +69,16 @@ public class Transfer31 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -97,10 +101,12 @@ public class Transfer31 { protected ActiveOrHistoricCurrencyAnd13DecimalAmount avrgPric; @XmlElement(name = "NewAvrgPric") protected ActiveOrHistoricCurrencyAnd13DecimalAmount newAvrgPric; - @XmlElement(name = "AvrgDt") + @XmlElement(name = "AvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar avrgDt; - @XmlElement(name = "NewAvrgDt") + @XmlElement(name = "NewAvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newAvrgDt; @XmlElement(name = "TrfCcy") @@ -271,7 +277,7 @@ public Transfer31 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -283,7 +289,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer31 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -346,7 +352,7 @@ public Transfer31 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -358,7 +364,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer31 setTrfOrdrDtForm(XMLGregorianCalendar value) { @@ -604,7 +610,7 @@ public Transfer31 setNewAvrgPric(ActiveOrHistoricCurrencyAnd13DecimalAmount valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAvrgDt() { @@ -616,7 +622,7 @@ public XMLGregorianCalendar getAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer31 setAvrgDt(XMLGregorianCalendar value) { @@ -629,7 +635,7 @@ public Transfer31 setAvrgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewAvrgDt() { @@ -641,7 +647,7 @@ public XMLGregorianCalendar getNewAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer31 setNewAvrgDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer32.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer32.java index 78cdcddcc..40c8e345d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer32.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer32.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer32 { protected TransferReason1 trfRsn; @XmlElement(name = "TrfDt") protected DateFormat1Choice trfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "HldgsPlanTp") @@ -227,7 +230,7 @@ public Transfer32 setTrfDt(DateFormat1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -239,7 +242,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer32 setReqdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer33.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer33.java index 5a317408c..d8ea5cd2a 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer33.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer33.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,14 +66,16 @@ public class Transfer33 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "FctvTrfDt") protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvSttlmDt") protected DateAndDateTimeChoice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTimeChoice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -89,10 +93,12 @@ public class Transfer33 { protected ActiveOrHistoricCurrencyAnd13DecimalAmount avrgPric; @XmlElement(name = "NewAvrgPric") protected ActiveOrHistoricCurrencyAnd13DecimalAmount newAvrgPric; - @XmlElement(name = "AvrgDt") + @XmlElement(name = "AvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar avrgDt; - @XmlElement(name = "NewAvrgDt") + @XmlElement(name = "NewAvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newAvrgDt; @XmlElement(name = "TrfCcy") @@ -263,7 +269,7 @@ public Transfer33 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -275,7 +281,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer33 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -338,7 +344,7 @@ public Transfer33 setTradDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -350,7 +356,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer33 setTrfOrdrDtForm(XMLGregorianCalendar value) { @@ -546,7 +552,7 @@ public Transfer33 setNewAvrgPric(ActiveOrHistoricCurrencyAnd13DecimalAmount valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAvrgDt() { @@ -558,7 +564,7 @@ public XMLGregorianCalendar getAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer33 setAvrgDt(XMLGregorianCalendar value) { @@ -571,7 +577,7 @@ public Transfer33 setAvrgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewAvrgDt() { @@ -583,7 +589,7 @@ public XMLGregorianCalendar getNewAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer33 setNewAvrgDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer34.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer34.java index 7c27a9ac1..92aab7ca8 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer34.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer34.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +59,12 @@ public class Transfer34 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "ReqdTrfDt") protected DateFormat1Choice reqdTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -222,7 +226,7 @@ public Transfer34 setReqdTrfDt(DateFormat1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -234,7 +238,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer34 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -247,7 +251,7 @@ public Transfer34 setReqdSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -259,7 +263,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer34 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer35.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer35.java index 000c4ce1a..4f926f5d7 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer35.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer35.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 Transfer35 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvTrfDt", required = true) @@ -74,7 +77,8 @@ public class Transfer35 { protected DateAndDateTime2Choice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTime2Choice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -97,10 +101,12 @@ public class Transfer35 { protected ActiveOrHistoricCurrencyAnd13DecimalAmount avrgPric; @XmlElement(name = "NewAvrgPric") protected ActiveOrHistoricCurrencyAnd13DecimalAmount newAvrgPric; - @XmlElement(name = "AvrgDt") + @XmlElement(name = "AvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar avrgDt; - @XmlElement(name = "NewAvrgDt") + @XmlElement(name = "NewAvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newAvrgDt; @XmlElement(name = "TrfCcy") @@ -246,7 +252,7 @@ public Transfer35 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -258,7 +264,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer35 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -346,7 +352,7 @@ public Transfer35 setTradDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -358,7 +364,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer35 setTrfOrdrDtForm(XMLGregorianCalendar value) { @@ -604,7 +610,7 @@ public Transfer35 setNewAvrgPric(ActiveOrHistoricCurrencyAnd13DecimalAmount valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAvrgDt() { @@ -616,7 +622,7 @@ public XMLGregorianCalendar getAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer35 setAvrgDt(XMLGregorianCalendar value) { @@ -629,7 +635,7 @@ public Transfer35 setAvrgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewAvrgDt() { @@ -641,7 +647,7 @@ public XMLGregorianCalendar getNewAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer35 setNewAvrgDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer36.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer36.java index cca328256..5ab60007e 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer36.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer36.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +58,12 @@ public class Transfer36 { protected BusinessFlowType1Code bizFlowTp; @XmlElement(name = "ReqdTrfDt") protected DateFormat1Choice reqdTrfDt; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -219,7 +223,7 @@ public Transfer36 setReqdTrfDt(DateFormat1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -231,7 +235,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer36 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -244,7 +248,7 @@ public Transfer36 setReqdSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -256,7 +260,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer36 setTrfOrdrDtForm(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer37.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer37.java index e38e43c14..9673627c0 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer37.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer37.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 Transfer37 { @XmlElement(name = "BizFlowTp") @XmlSchemaType(name = "string") protected BusinessFlowType1Code bizFlowTp; - @XmlElement(name = "ReqdSttlmDt") + @XmlElement(name = "ReqdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdSttlmDt; @XmlElement(name = "FctvTrfDt", required = true) @@ -73,7 +76,8 @@ public class Transfer37 { protected DateAndDateTime2Choice fctvSttlmDt; @XmlElement(name = "TradDt") protected DateAndDateTime2Choice tradDt; - @XmlElement(name = "TrfOrdrDtForm") + @XmlElement(name = "TrfOrdrDtForm", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar trfOrdrDtForm; @XmlElement(name = "TrfRsn") @@ -98,10 +102,12 @@ public class Transfer37 { protected ActiveOrHistoricCurrencyAnd13DecimalAmount avrgPric; @XmlElement(name = "NewAvrgPric") protected ActiveOrHistoricCurrencyAnd13DecimalAmount newAvrgPric; - @XmlElement(name = "AvrgDt") + @XmlElement(name = "AvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar avrgDt; - @XmlElement(name = "NewAvrgDt") + @XmlElement(name = "NewAvrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newAvrgDt; @XmlElement(name = "TrfCcy") @@ -243,7 +249,7 @@ public Transfer37 setBizFlowTp(BusinessFlowType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdSttlmDt() { @@ -255,7 +261,7 @@ public XMLGregorianCalendar getReqdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer37 setReqdSttlmDt(XMLGregorianCalendar value) { @@ -343,7 +349,7 @@ public Transfer37 setTradDt(DateAndDateTime2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTrfOrdrDtForm() { @@ -355,7 +361,7 @@ public XMLGregorianCalendar getTrfOrdrDtForm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer37 setTrfOrdrDtForm(XMLGregorianCalendar value) { @@ -626,7 +632,7 @@ public Transfer37 setNewAvrgPric(ActiveOrHistoricCurrencyAnd13DecimalAmount valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAvrgDt() { @@ -638,7 +644,7 @@ public XMLGregorianCalendar getAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer37 setAvrgDt(XMLGregorianCalendar value) { @@ -651,7 +657,7 @@ public Transfer37 setAvrgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewAvrgDt() { @@ -663,7 +669,7 @@ public XMLGregorianCalendar getNewAvrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer37 setNewAvrgDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer4.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer4.java index d4e5dc20a..035741d38 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer4.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Transfer4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Transfer4 { protected String trfRef; @XmlElement(name = "FctvTrfDt", required = true) protected DateAndDateTimeChoice fctvTrfDt; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "TtlUnitsNb", required = true) @@ -132,7 +135,7 @@ public Transfer4 setFctvTrfDt(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -144,7 +147,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Transfer4 setTradDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferReason1Code.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferReason1Code.java index eef94f1f0..724c6ce76 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferReason1Code.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferReason1Code.java @@ -89,7 +89,7 @@ public enum TransferReason1Code { TRPE, /** - * Transfer is the result of a demerger or division. + * Transfer is the result of a demrger or division. * */ TRAF, diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason2.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason2.java index dd4e31f26..b8e40b1ef 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason2.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +68,12 @@ public class TransferStatusAndReason2 { protected ReversedStatus1 rvsd; @XmlElement(name = "CxlPdg") protected CancellationPendingStatus1 cxlPdg; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "StsInitr") @@ -405,7 +409,7 @@ public TransferStatusAndReason2 setCxlPdg(CancellationPendingStatus1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -417,7 +421,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason2 setTradDt(XMLGregorianCalendar value) { @@ -430,7 +434,7 @@ public TransferStatusAndReason2 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -442,7 +446,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason2 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason3.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason3.java index a5383bb4a..0e873e797 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason3.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransferStatusAndReason3 { protected String cxlRef; @XmlElement(name = "TrfSts", required = true) protected TransferStatus1Choice trfSts; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "StsInitr") @@ -181,7 +185,7 @@ public TransferStatusAndReason3 setTrfSts(TransferStatus1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -193,7 +197,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason3 setTradDt(XMLGregorianCalendar value) { @@ -206,7 +210,7 @@ public TransferStatusAndReason3 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -218,7 +222,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason3 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason4.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason4.java index ab382dceb..b44c871f6 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason4.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransferStatusAndReason4 { protected String cxlRef; @XmlElement(name = "TrfSts", required = true) protected TransferStatus2Choice trfSts; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "StsInitr") @@ -181,7 +185,7 @@ public TransferStatusAndReason4 setTrfSts(TransferStatus2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -193,7 +197,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason4 setTradDt(XMLGregorianCalendar value) { @@ -206,7 +210,7 @@ public TransferStatusAndReason4 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -218,7 +222,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason4 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason5.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason5.java index 53bddb19c..66b9a4d5b 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason5.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason5.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; @@ -48,10 +50,12 @@ public class TransferStatusAndReason5 { protected String cxlRef; @XmlElement(name = "TrfSts", required = true) protected TransferStatus2Choice trfSts; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "TtlUnitsNb") @@ -193,7 +197,7 @@ public TransferStatusAndReason5 setTrfSts(TransferStatus2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -205,7 +209,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason5 setTradDt(XMLGregorianCalendar value) { @@ -218,7 +222,7 @@ public TransferStatusAndReason5 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -230,7 +234,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason5 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason6.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason6.java index 01cd199df..75484f2ad 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason6.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason6.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,13 +60,16 @@ public class TransferStatusAndReason6 { protected List trfEvtTp; @XmlElement(name = "TrfSts", required = true) protected TransferStatus3Choice trfSts; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "TtlUnitsNb") @@ -247,7 +252,7 @@ public TransferStatusAndReason6 setTrfSts(TransferStatus3Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -259,7 +264,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason6 setTradDt(XMLGregorianCalendar value) { @@ -272,7 +277,7 @@ public TransferStatusAndReason6 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -284,7 +289,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason6 setSttlmDt(XMLGregorianCalendar value) { @@ -297,7 +302,7 @@ public TransferStatusAndReason6 setSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -309,7 +314,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason6 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason7.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason7.java index d021d892d..c205d339e 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason7.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferStatusAndReason7.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,13 +60,16 @@ public class TransferStatusAndReason7 { protected List trfEvtTp; @XmlElement(name = "TrfSts", required = true) protected TransferStatus4Choice trfSts; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; - @XmlElement(name = "SndOutDt") + @XmlElement(name = "SndOutDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sndOutDt; @XmlElement(name = "TtlUnitsNb") @@ -247,7 +252,7 @@ public TransferStatusAndReason7 setTrfSts(TransferStatus4Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -259,7 +264,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason7 setTradDt(XMLGregorianCalendar value) { @@ -272,7 +277,7 @@ public TransferStatusAndReason7 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -284,7 +289,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason7 setSttlmDt(XMLGregorianCalendar value) { @@ -297,7 +302,7 @@ public TransferStatusAndReason7 setSttlmDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSndOutDt() { @@ -309,7 +314,7 @@ public XMLGregorianCalendar getSndOutDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransferStatusAndReason7 setSndOutDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit1.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit1.java index 76a66ff6d..a652abf9d 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit1.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Unit1 { @XmlElement(name = "UnitsNb", required = true) protected FinancialInstrumentQuantity1 unitsNb; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -74,7 +77,7 @@ public Unit1 setUnitsNb(FinancialInstrumentQuantity1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit1 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit11.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit11.java index fc477241f..334baf927 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit11.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit11.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 Unit11 { @XmlElement(name = "UnitsNb", required = true) protected BigDecimal unitsNb; - @XmlElement(name = "OrdrDt") + @XmlElement(name = "OrdrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrDt; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -88,7 +92,7 @@ public Unit11 setUnitsNb(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDt() { @@ -100,7 +104,7 @@ public XMLGregorianCalendar getOrdrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit11 setOrdrDt(XMLGregorianCalendar value) { @@ -113,7 +117,7 @@ public Unit11 setOrdrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -125,7 +129,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit11 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit12.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit12.java index 61f307c83..78570a951 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit12.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit12.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 Unit12 { @XmlElement(name = "UnitsNb", required = true) protected BigDecimal unitsNb; - @XmlElement(name = "OrdrDt") + @XmlElement(name = "OrdrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrDt; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -88,7 +92,7 @@ public Unit12 setUnitsNb(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDt() { @@ -100,7 +104,7 @@ public XMLGregorianCalendar getOrdrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit12 setOrdrDt(XMLGregorianCalendar value) { @@ -113,7 +117,7 @@ public Unit12 setOrdrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -125,7 +129,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit12 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit3.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit3.java index c3aa716d7..0b054cd09 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit3.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Unit3 { @XmlElement(name = "UnitsNb", required = true) protected FinancialInstrumentQuantity1 unitsNb; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -74,7 +77,7 @@ public Unit3 setUnitsNb(FinancialInstrumentQuantity1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit3 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit6.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit6.java index 8b992375b..8ce7493ab 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit6.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Unit6 { @XmlElement(name = "UnitsNb", required = true) protected FinancialInstrumentQuantity1 unitsNb; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -74,7 +77,7 @@ public Unit6 setUnitsNb(FinancialInstrumentQuantity1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit6 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit8.java b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit8.java index 3e5062e8a..3a976aeab 100644 --- a/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit8.java +++ b/model-sese-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Unit8.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 Unit8 { @XmlElement(name = "UnitsNb", required = true) protected BigDecimal unitsNb; - @XmlElement(name = "OrdrDt") + @XmlElement(name = "OrdrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrDt; - @XmlElement(name = "AcqstnDt") + @XmlElement(name = "AcqstnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar acqstnDt; @XmlElement(name = "CertNb") @@ -88,7 +92,7 @@ public Unit8 setUnitsNb(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDt() { @@ -100,7 +104,7 @@ public XMLGregorianCalendar getOrdrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit8 setOrdrDt(XMLGregorianCalendar value) { @@ -113,7 +117,7 @@ public Unit8 setOrdrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAcqstnDt() { @@ -125,7 +129,7 @@ public XMLGregorianCalendar getAcqstnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Unit8 setAcqstnDt(XMLGregorianCalendar value) { diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00100101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00100101.java index 7bdb3e26c..3b47923f8 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00100101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00100101 parse(String xml) { - return ((MxSeti00100101) MxReadImpl.parse(MxSeti00100101 .class, xml, _classes)); + return ((MxSeti00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00200101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00200101.java index ad7f52e53..78908eded 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00200101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00200101 parse(String xml) { - return ((MxSeti00200101) MxReadImpl.parse(MxSeti00200101 .class, xml, _classes)); + return ((MxSeti00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00300101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00300101.java index adf87cb94..6aa0250e2 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00300101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00300101 parse(String xml) { - return ((MxSeti00300101) MxReadImpl.parse(MxSeti00300101 .class, xml, _classes)); + return ((MxSeti00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00400101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00400101.java index eeed72ba7..94e9dbf2e 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00400101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00400101 parse(String xml) { - return ((MxSeti00400101) MxReadImpl.parse(MxSeti00400101 .class, xml, _classes)); + return ((MxSeti00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00500101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00500101.java index dbf418bb1..7f1cd47d7 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00500101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00500101 parse(String xml) { - return ((MxSeti00500101) MxReadImpl.parse(MxSeti00500101 .class, xml, _classes)); + return ((MxSeti00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00600101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00600101.java index f15928b42..44601a16c 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00600101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00600101 parse(String xml) { - return ((MxSeti00600101) MxReadImpl.parse(MxSeti00600101 .class, xml, _classes)); + return ((MxSeti00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00700101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00700101.java index cfd9ea734..c561f55a1 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00700101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00700101 parse(String xml) { - return ((MxSeti00700101) MxReadImpl.parse(MxSeti00700101 .class, xml, _classes)); + return ((MxSeti00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00800101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00800101.java index 091cca0a7..bc6bf6b5c 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00800101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00800101 parse(String xml) { - return ((MxSeti00800101) MxReadImpl.parse(MxSeti00800101 .class, xml, _classes)); + return ((MxSeti00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00900101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00900101.java index 0704789d5..db6bebe10 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00900101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti00900101 parse(String xml) { - return ((MxSeti00900101) MxReadImpl.parse(MxSeti00900101 .class, xml, _classes)); + return ((MxSeti00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01200101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01200101.java index 8eae33462..5bac5f409 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01200101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti01200101 parse(String xml) { - return ((MxSeti01200101) MxReadImpl.parse(MxSeti01200101 .class, xml, _classes)); + return ((MxSeti01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01300101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01300101.java index 8703fcbee..e3a94cff6 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01300101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti01300101 parse(String xml) { - return ((MxSeti01300101) MxReadImpl.parse(MxSeti01300101 .class, xml, _classes)); + return ((MxSeti01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01400101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01400101.java index 0648a432a..1d44f6fa5 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01400101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti01400101 parse(String xml) { - return ((MxSeti01400101) MxReadImpl.parse(MxSeti01400101 .class, xml, _classes)); + return ((MxSeti01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01500101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01500101.java index d3ae6eec3..8c8960c4c 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01500101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti01500101 parse(String xml) { - return ((MxSeti01500101) MxReadImpl.parse(MxSeti01500101 .class, xml, _classes)); + return ((MxSeti01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01600101.java b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01600101.java index cbd47cdd2..c9aedf825 100644 --- a/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01600101.java +++ b/model-seti-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSeti01600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSeti01600101 parse(String xml) { - return ((MxSeti01600101) MxReadImpl.parse(MxSeti01600101 .class, xml, _classes)); + return ((MxSeti01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSeti01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSeti01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSeti01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Bid1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Bid1.java index 3b4f6600f..cbbb14849 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Bid1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Bid1.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.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; @@ -59,15 +62,18 @@ public class Bid1 { protected BigDecimal ttlNbTckts; @XmlElement(name = "PrgrsRptInd") protected Boolean prgrsRptInd; - @XmlElement(name = "PrgrsPrdIntrvl") + @XmlElement(name = "PrgrsPrdIntrvl", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar prgrsPrdIntrvl; @XmlElement(name = "TtlNbOfBddrs") protected BigDecimal ttlNbOfBddrs; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; - @XmlElement(name = "StrkTm") + @XmlElement(name = "StrkTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar strkTm; @XmlElement(name = "BsisPricTp", required = true) @@ -289,7 +295,7 @@ public Bid1 setPrgrsRptInd(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrgrsPrdIntrvl() { @@ -301,7 +307,7 @@ public XMLGregorianCalendar getPrgrsPrdIntrvl() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Bid1 setPrgrsPrdIntrvl(XMLGregorianCalendar value) { @@ -339,7 +345,7 @@ public Bid1 setTtlNbOfBddrs(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -351,7 +357,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Bid1 setTradDt(XMLGregorianCalendar value) { @@ -364,7 +370,7 @@ public Bid1 setTradDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStrkTm() { @@ -376,7 +382,7 @@ public XMLGregorianCalendar getStrkTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Bid1 setStrkTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndicationOfInterest1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndicationOfInterest1.java index fabf4ec9d..d9ffa5728 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndicationOfInterest1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndicationOfInterest1.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; @@ -59,7 +61,8 @@ public class IndicationOfInterest1 { protected Quantity1Choice ioiQty; @XmlElement(name = "Pric") protected Price1 pric; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "QltyIndctn") @@ -187,7 +190,7 @@ public IndicationOfInterest1 setPric(Price1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -199,7 +202,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndicationOfInterest1 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order1.java index 6a0d371dc..a0a0bbaec 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Order1 { protected Side1Code sd; @XmlElement(name = "PlcOfExctn") protected MarketIdentification1 plcOfExctn; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "QtyDtls") @@ -184,7 +187,7 @@ public Order1 setPlcOfExctn(MarketIdentification1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -196,7 +199,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order1 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order2.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order2.java index e1e53efcb..9a3b62910 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order2.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Order2 { @XmlElement(name = "TradgCpcty") @XmlSchemaType(name = "string") protected TradingCapacity3Code tradgCpcty; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "CstmrCpcty") @@ -102,7 +105,7 @@ public Order2 setTradgCpcty(TradingCapacity3Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -114,7 +117,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order2 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote1.java index 236328341..10adca4fa 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Quote1 { @XmlElement(name = "Qlfr") @XmlSchemaType(name = "string") protected List qlfr; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "QtOrgtr") @@ -145,7 +148,7 @@ public List getQlfr() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -157,7 +160,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Quote1 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote3.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote3.java index 84aa22c53..6b663f21f 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote3.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Quote3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Quote3 { @XmlElement(name = "Qlfr") @XmlSchemaType(name = "string") protected List qlfr; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "PrvsClsgPric") @@ -125,7 +128,7 @@ public List getQlfr() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -137,7 +140,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Quote3 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry1.java index e11ce6179..ec4e3ba8e 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 QuoteEntry1 { @XmlElement(name = "OrdrTp") @XmlSchemaType(name = "string") protected OrderType1Code ordrTp; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "Ccy") @@ -129,7 +132,7 @@ public QuoteEntry1 setOrdrTp(OrderType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -141,7 +144,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public QuoteEntry1 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry2.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry2.java index 61f3e50e1..b3c2e286d 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry2.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteEntry2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 QuoteEntry2 { @XmlElement(name = "OrdrTp") @XmlSchemaType(name = "string") protected OrderType1Code ordrTp; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "Ccy") @@ -127,7 +130,7 @@ public QuoteEntry2 setOrdrTp(OrderType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -139,7 +142,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public QuoteEntry2 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteRequest1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteRequest1.java index 21d0472f9..24eea05f7 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteRequest1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteRequest1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 QuoteRequest1 { @XmlElement(name = "QtReqTp") @XmlSchemaType(name = "string") protected QuoteRequestType1Code qtReqTp; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "PrvsClsgPric") @@ -123,7 +126,7 @@ public QuoteRequest1 setQtReqTp(QuoteRequestType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -135,7 +138,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public QuoteRequest1 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet1.java index efe251c03..c2e55a25d 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 QuoteSet1 { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "QtNtryDtls", required = true) @@ -79,7 +82,7 @@ public QuoteSet1 setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -91,7 +94,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public QuoteSet1 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet2.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet2.java index 5e8c8654d..5ef2cb99b 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet2.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QuoteSet2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 QuoteSet2 { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "QtNtryDtls") @@ -76,7 +79,7 @@ public QuoteSet2 setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -88,7 +91,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public QuoteSet2 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement2.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement2.java index bb34f3587..7426d94b2 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement2.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SecuritiesSettlement2 { - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElement(name = "DtCd") @@ -40,7 +43,7 @@ public class SecuritiesSettlement2 { * * @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 SecuritiesSettlement2 setDt(XMLGregorianCalendar value) { diff --git a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SingleQuote1.java b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SingleQuote1.java index caeff27b9..f534f0488 100644 --- a/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SingleQuote1.java +++ b/model-seti-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SingleQuote1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SingleQuote1 { protected List qlfr; @XmlElement(name = "Ccy") protected String ccy; - @XmlElement(name = "VldUntilDtTm") + @XmlElement(name = "VldUntilDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar vldUntilDtTm; @XmlElement(name = "BidSd") @@ -166,7 +169,7 @@ public SingleQuote1 setCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getVldUntilDtTm() { @@ -178,7 +181,7 @@ public XMLGregorianCalendar getVldUntilDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SingleQuote1 setVldUntilDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100102.java index c265c8a02..9493dc3ce 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00100102 parse(String xml) { - return ((MxSetr00100102) MxReadImpl.parse(MxSetr00100102 .class, xml, _classes)); + return ((MxSetr00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100103.java index 4daf4b60a..f164fad9c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00100103 parse(String xml) { - return ((MxSetr00100103) MxReadImpl.parse(MxSetr00100103 .class, xml, _classes)); + return ((MxSetr00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100104.java index 262f572a5..c2b7385b0 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00100104 parse(String xml) { - return ((MxSetr00100104) MxReadImpl.parse(MxSetr00100104 .class, xml, _classes)); + return ((MxSetr00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200102.java index 745c665e6..f4cf5e7fc 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00200102 parse(String xml) { - return ((MxSetr00200102) MxReadImpl.parse(MxSetr00200102 .class, xml, _classes)); + return ((MxSetr00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200103.java index 9076d632a..22fbe627c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00200103 parse(String xml) { - return ((MxSetr00200103) MxReadImpl.parse(MxSetr00200103 .class, xml, _classes)); + return ((MxSetr00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200104.java index d3faa25d0..081e6b2cd 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00200104 parse(String xml) { - return ((MxSetr00200104) MxReadImpl.parse(MxSetr00200104 .class, xml, _classes)); + return ((MxSetr00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300102.java index ee3786718..6eb46fdbc 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00300102 parse(String xml) { - return ((MxSetr00300102) MxReadImpl.parse(MxSetr00300102 .class, xml, _classes)); + return ((MxSetr00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300103.java index fffecaa6a..8b75e5c08 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00300103 parse(String xml) { - return ((MxSetr00300103) MxReadImpl.parse(MxSetr00300103 .class, xml, _classes)); + return ((MxSetr00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300104.java index 16894ab17..8599e1b97 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00300104 parse(String xml) { - return ((MxSetr00300104) MxReadImpl.parse(MxSetr00300104 .class, xml, _classes)); + return ((MxSetr00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400102.java index f06cfc657..0bc2d79db 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00400102 parse(String xml) { - return ((MxSetr00400102) MxReadImpl.parse(MxSetr00400102 .class, xml, _classes)); + return ((MxSetr00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400103.java index 5e76ae85f..b7906873d 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00400103 parse(String xml) { - return ((MxSetr00400103) MxReadImpl.parse(MxSetr00400103 .class, xml, _classes)); + return ((MxSetr00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400104.java index 2d96fd7ae..bb2aa1136 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00400104 parse(String xml) { - return ((MxSetr00400104) MxReadImpl.parse(MxSetr00400104 .class, xml, _classes)); + return ((MxSetr00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400201.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400201.java index 73d9781a3..6ab822224 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400201.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00400201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00400201 parse(String xml) { - return ((MxSetr00400201) MxReadImpl.parse(MxSetr00400201 .class, xml, _classes)); + return ((MxSetr00400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00400201 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00400201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00400201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500102.java index c71ac0077..4e08f9cbf 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00500102 parse(String xml) { - return ((MxSetr00500102) MxReadImpl.parse(MxSetr00500102 .class, xml, _classes)); + return ((MxSetr00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500103.java index e62c6ee35..d272d4648 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00500103 parse(String xml) { - return ((MxSetr00500103) MxReadImpl.parse(MxSetr00500103 .class, xml, _classes)); + return ((MxSetr00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500104.java index 07f04a288..5d1b8e29c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00500104 parse(String xml) { - return ((MxSetr00500104) MxReadImpl.parse(MxSetr00500104 .class, xml, _classes)); + return ((MxSetr00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600102.java index fdaf8eed0..58edf4bc8 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00600102 parse(String xml) { - return ((MxSetr00600102) MxReadImpl.parse(MxSetr00600102 .class, xml, _classes)); + return ((MxSetr00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600103.java index 7d94750d0..fc032112e 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00600103 parse(String xml) { - return ((MxSetr00600103) MxReadImpl.parse(MxSetr00600103 .class, xml, _classes)); + return ((MxSetr00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600104.java index 15047a686..a3f806def 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00600104 parse(String xml) { - return ((MxSetr00600104) MxReadImpl.parse(MxSetr00600104 .class, xml, _classes)); + return ((MxSetr00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600201.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600201.java index 403819316..b49a10a03 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600201.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00600201 parse(String xml) { - return ((MxSetr00600201) MxReadImpl.parse(MxSetr00600201 .class, xml, _classes)); + return ((MxSetr00600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700102.java index ca2389907..66b7375ce 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00700102 parse(String xml) { - return ((MxSetr00700102) MxReadImpl.parse(MxSetr00700102 .class, xml, _classes)); + return ((MxSetr00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700103.java index 7f8d10e7b..55b2fac82 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00700103 parse(String xml) { - return ((MxSetr00700103) MxReadImpl.parse(MxSetr00700103 .class, xml, _classes)); + return ((MxSetr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700104.java index 4d10e9b24..3ae48963c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00700104 parse(String xml) { - return ((MxSetr00700104) MxReadImpl.parse(MxSetr00700104 .class, xml, _classes)); + return ((MxSetr00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800102.java index f36d966cc..cb7971fe3 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00800102 parse(String xml) { - return ((MxSetr00800102) MxReadImpl.parse(MxSetr00800102 .class, xml, _classes)); + return ((MxSetr00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800103.java index c015472e3..30ee7d342 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00800103 parse(String xml) { - return ((MxSetr00800103) MxReadImpl.parse(MxSetr00800103 .class, xml, _classes)); + return ((MxSetr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800104.java index aa10b3009..7d136c52e 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00800104 parse(String xml) { - return ((MxSetr00800104) MxReadImpl.parse(MxSetr00800104 .class, xml, _classes)); + return ((MxSetr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900102.java index 11964153c..d08cc4bb4 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00900102 parse(String xml) { - return ((MxSetr00900102) MxReadImpl.parse(MxSetr00900102 .class, xml, _classes)); + return ((MxSetr00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900103.java index d2dae7be1..1a959e60c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00900103 parse(String xml) { - return ((MxSetr00900103) MxReadImpl.parse(MxSetr00900103 .class, xml, _classes)); + return ((MxSetr00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900104.java index f07d8780a..cef64b4e7 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr00900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr00900104 parse(String xml) { - return ((MxSetr00900104) MxReadImpl.parse(MxSetr00900104 .class, xml, _classes)); + return ((MxSetr00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr00900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000102.java index af44dbc87..75701c9de 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01000102 parse(String xml) { - return ((MxSetr01000102) MxReadImpl.parse(MxSetr01000102 .class, xml, _classes)); + return ((MxSetr01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000103.java index a667d7939..624f11681 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01000103 parse(String xml) { - return ((MxSetr01000103) MxReadImpl.parse(MxSetr01000103 .class, xml, _classes)); + return ((MxSetr01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000104.java index 8128b66b8..031d91d4d 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01000104 parse(String xml) { - return ((MxSetr01000104) MxReadImpl.parse(MxSetr01000104 .class, xml, _classes)); + return ((MxSetr01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000201.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000201.java index 0bbb5de42..809b31dbc 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000201.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01000201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01000201 parse(String xml) { - return ((MxSetr01000201) MxReadImpl.parse(MxSetr01000201 .class, xml, _classes)); + return ((MxSetr01000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01000201 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01000201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01000201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100102.java index c478e04c5..03e5500a3 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01100102 parse(String xml) { - return ((MxSetr01100102) MxReadImpl.parse(MxSetr01100102 .class, xml, _classes)); + return ((MxSetr01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100103.java index 4c118fc04..cc57913da 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01100103 parse(String xml) { - return ((MxSetr01100103) MxReadImpl.parse(MxSetr01100103 .class, xml, _classes)); + return ((MxSetr01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100104.java index 0949cd1fb..3728dafcb 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01100104 parse(String xml) { - return ((MxSetr01100104) MxReadImpl.parse(MxSetr01100104 .class, xml, _classes)); + return ((MxSetr01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200102.java index 270b83fc7..a24bf30e0 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01200102 parse(String xml) { - return ((MxSetr01200102) MxReadImpl.parse(MxSetr01200102 .class, xml, _classes)); + return ((MxSetr01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200103.java index c6d50adda..869ead1eb 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01200103 parse(String xml) { - return ((MxSetr01200103) MxReadImpl.parse(MxSetr01200103 .class, xml, _classes)); + return ((MxSetr01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200104.java index 7ba34e45a..ca7314cab 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01200104 parse(String xml) { - return ((MxSetr01200104) MxReadImpl.parse(MxSetr01200104 .class, xml, _classes)); + return ((MxSetr01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200201.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200201.java index cde22b99d..3cb2f2dfa 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200201.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01200201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01200201 parse(String xml) { - return ((MxSetr01200201) MxReadImpl.parse(MxSetr01200201 .class, xml, _classes)); + return ((MxSetr01200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01200201 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01200201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01200201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300102.java index 9953dff48..059ac7b3f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01300102 parse(String xml) { - return ((MxSetr01300102) MxReadImpl.parse(MxSetr01300102 .class, xml, _classes)); + return ((MxSetr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300103.java index 659385c93..3089a0154 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01300103 parse(String xml) { - return ((MxSetr01300103) MxReadImpl.parse(MxSetr01300103 .class, xml, _classes)); + return ((MxSetr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300104.java index 620b5bd89..d388ea21e 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01300104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01300104 parse(String xml) { - return ((MxSetr01300104) MxReadImpl.parse(MxSetr01300104 .class, xml, _classes)); + return ((MxSetr01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01300104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400102.java index 425e83e24..2997ba24a 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01400102 parse(String xml) { - return ((MxSetr01400102) MxReadImpl.parse(MxSetr01400102 .class, xml, _classes)); + return ((MxSetr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400103.java index ed48eaafa..157dd8d86 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01400103 parse(String xml) { - return ((MxSetr01400103) MxReadImpl.parse(MxSetr01400103 .class, xml, _classes)); + return ((MxSetr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400104.java index 663a87c7c..2770b6947 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01400104 parse(String xml) { - return ((MxSetr01400104) MxReadImpl.parse(MxSetr01400104 .class, xml, _classes)); + return ((MxSetr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01400104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500102.java index a136119b7..9acbe287d 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01500102 parse(String xml) { - return ((MxSetr01500102) MxReadImpl.parse(MxSetr01500102 .class, xml, _classes)); + return ((MxSetr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500103.java index c0d4531b6..32b9782c1 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01500103 parse(String xml) { - return ((MxSetr01500103) MxReadImpl.parse(MxSetr01500103 .class, xml, _classes)); + return ((MxSetr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500104.java index fe8883d5a..cfd1d696b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01500104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01500104 parse(String xml) { - return ((MxSetr01500104) MxReadImpl.parse(MxSetr01500104 .class, xml, _classes)); + return ((MxSetr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01500104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600102.java index 88485e245..895e03705 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01600102 parse(String xml) { - return ((MxSetr01600102) MxReadImpl.parse(MxSetr01600102 .class, xml, _classes)); + return ((MxSetr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600103.java index 1ccd15824..c903ccd21 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01600103 parse(String xml) { - return ((MxSetr01600103) MxReadImpl.parse(MxSetr01600103 .class, xml, _classes)); + return ((MxSetr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600104.java index 04d904631..260c7a15f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01600104 parse(String xml) { - return ((MxSetr01600104) MxReadImpl.parse(MxSetr01600104 .class, xml, _classes)); + return ((MxSetr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600201.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600201.java index b7525147d..d000a4bc1 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600201.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01600201.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01600201 parse(String xml) { - return ((MxSetr01600201) MxReadImpl.parse(MxSetr01600201 .class, xml, _classes)); + return ((MxSetr01600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01600201 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01600201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01600201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700102.java index 45c4b0e50..4f1571704 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01700102 parse(String xml) { - return ((MxSetr01700102) MxReadImpl.parse(MxSetr01700102 .class, xml, _classes)); + return ((MxSetr01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700103.java index 1b9397be9..e39ac0c5c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01700103 parse(String xml) { - return ((MxSetr01700103) MxReadImpl.parse(MxSetr01700103 .class, xml, _classes)); + return ((MxSetr01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700104.java index 7e41891a0..7975386bb 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01700104 parse(String xml) { - return ((MxSetr01700104) MxReadImpl.parse(MxSetr01700104 .class, xml, _classes)); + return ((MxSetr01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800102.java index ed9856c3f..eab03425a 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01800102 parse(String xml) { - return ((MxSetr01800102) MxReadImpl.parse(MxSetr01800102 .class, xml, _classes)); + return ((MxSetr01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800103.java index 1e9543cbb..23a1475ed 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01800103 parse(String xml) { - return ((MxSetr01800103) MxReadImpl.parse(MxSetr01800103 .class, xml, _classes)); + return ((MxSetr01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800104.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800104.java index 28a10f8a1..d5ba1a0e9 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800104.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01800104 parse(String xml) { - return ((MxSetr01800104) MxReadImpl.parse(MxSetr01800104 .class, xml, _classes)); + return ((MxSetr01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01900101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01900101.java index bf0e3308f..7dc799846 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01900101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr01900101 parse(String xml) { - return ((MxSetr01900101) MxReadImpl.parse(MxSetr01900101 .class, xml, _classes)); + return ((MxSetr01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02000101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02000101.java index bf5db2819..c3b21cd03 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02000101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02000101 parse(String xml) { - return ((MxSetr02000101) MxReadImpl.parse(MxSetr02000101 .class, xml, _classes)); + return ((MxSetr02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02100101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02100101.java index 522a62cc5..b786f8cfd 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02100101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02100101 parse(String xml) { - return ((MxSetr02100101) MxReadImpl.parse(MxSetr02100101 .class, xml, _classes)); + return ((MxSetr02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02200101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02200101.java index de3b8375a..433f7cb1c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02200101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02200101 parse(String xml) { - return ((MxSetr02200101) MxReadImpl.parse(MxSetr02200101 .class, xml, _classes)); + return ((MxSetr02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02300101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02300101.java index a0703afad..384efb020 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02300101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02300101 parse(String xml) { - return ((MxSetr02300101) MxReadImpl.parse(MxSetr02300101 .class, xml, _classes)); + return ((MxSetr02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700101.java index 2aa52aba2..330027325 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02700101 parse(String xml) { - return ((MxSetr02700101) MxReadImpl.parse(MxSetr02700101 .class, xml, _classes)); + return ((MxSetr02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700102.java index 046e7562f..b827765fe 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02700102 parse(String xml) { - return ((MxSetr02700102) MxReadImpl.parse(MxSetr02700102 .class, xml, _classes)); + return ((MxSetr02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700103.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700103.java index ea3d28725..32f640458 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700103.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02700103 parse(String xml) { - return ((MxSetr02700103) MxReadImpl.parse(MxSetr02700103 .class, xml, _classes)); + return ((MxSetr02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02900101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02900101.java index 8bd1f549c..b94215374 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02900101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr02900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr02900101 parse(String xml) { - return ((MxSetr02900101) MxReadImpl.parse(MxSetr02900101 .class, xml, _classes)); + return ((MxSetr02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr02900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03000101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03000101.java index 79d4095ad..d5d16d3e6 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03000101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03000101 parse(String xml) { - return ((MxSetr03000101) MxReadImpl.parse(MxSetr03000101 .class, xml, _classes)); + return ((MxSetr03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03300101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03300101.java index 42a835fb2..8417a70b9 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03300101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03300101 parse(String xml) { - return ((MxSetr03300101) MxReadImpl.parse(MxSetr03300101 .class, xml, _classes)); + return ((MxSetr03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03400101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03400101.java index 019f312ef..98534a8a0 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03400101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03400101 parse(String xml) { - return ((MxSetr03400101) MxReadImpl.parse(MxSetr03400101 .class, xml, _classes)); + return ((MxSetr03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03500101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03500101.java index 937dc26c3..f8abf3f14 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03500101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03500101 parse(String xml) { - return ((MxSetr03500101) MxReadImpl.parse(MxSetr03500101 .class, xml, _classes)); + return ((MxSetr03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03600101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03600101.java index 7e8217dee..2434ad936 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03600101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03600101 parse(String xml) { - return ((MxSetr03600101) MxReadImpl.parse(MxSetr03600101 .class, xml, _classes)); + return ((MxSetr03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03700101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03700101.java index 0d04e8770..a42e1cbac 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03700101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03700101 parse(String xml) { - return ((MxSetr03700101) MxReadImpl.parse(MxSetr03700101 .class, xml, _classes)); + return ((MxSetr03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03800101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03800101.java index 8c9a7b817..4264a6a9b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03800101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03800101 parse(String xml) { - return ((MxSetr03800101) MxReadImpl.parse(MxSetr03800101 .class, xml, _classes)); + return ((MxSetr03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03900101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03900101.java index ceb045e4f..b03b230f5 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03900101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr03900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr03900101 parse(String xml) { - return ((MxSetr03900101) MxReadImpl.parse(MxSetr03900101 .class, xml, _classes)); + return ((MxSetr03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr03900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04000101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04000101.java index 0e2c1f7cd..724192f13 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04000101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04000101 parse(String xml) { - return ((MxSetr04000101) MxReadImpl.parse(MxSetr04000101 .class, xml, _classes)); + return ((MxSetr04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400101.java index 664f311af..43fe4cf5a 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04400101 parse(String xml) { - return ((MxSetr04400101) MxReadImpl.parse(MxSetr04400101 .class, xml, _classes)); + return ((MxSetr04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400102.java index a1e22ff85..6cea61ce7 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04400102 parse(String xml) { - return ((MxSetr04400102) MxReadImpl.parse(MxSetr04400102 .class, xml, _classes)); + return ((MxSetr04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04500101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04500101.java index 5ec409d32..c70563c8f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04500101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04500101 parse(String xml) { - return ((MxSetr04500101) MxReadImpl.parse(MxSetr04500101 .class, xml, _classes)); + return ((MxSetr04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04600101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04600101.java index 3e6c23228..3847b506b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04600101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04600101 parse(String xml) { - return ((MxSetr04600101) MxReadImpl.parse(MxSetr04600101 .class, xml, _classes)); + return ((MxSetr04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700101.java index f903b22b1..63950001b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04700101 parse(String xml) { - return ((MxSetr04700101) MxReadImpl.parse(MxSetr04700101 .class, xml, _classes)); + return ((MxSetr04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700102.java index 7921af8ee..747db87d6 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04700102 parse(String xml) { - return ((MxSetr04700102) MxReadImpl.parse(MxSetr04700102 .class, xml, _classes)); + return ((MxSetr04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04800101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04800101.java index 05e358f0d..c9c5b63b4 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04800101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04800101 parse(String xml) { - return ((MxSetr04800101) MxReadImpl.parse(MxSetr04800101 .class, xml, _classes)); + return ((MxSetr04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900101.java index effea2e4a..966b8d04f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04900101 parse(String xml) { - return ((MxSetr04900101) MxReadImpl.parse(MxSetr04900101 .class, xml, _classes)); + return ((MxSetr04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900102.java index 88fda3919..c700d98f6 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr04900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr04900102 parse(String xml) { - return ((MxSetr04900102) MxReadImpl.parse(MxSetr04900102 .class, xml, _classes)); + return ((MxSetr04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr04900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05000101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05000101.java index 72ded9084..9bf3ef3dc 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05000101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05000101 parse(String xml) { - return ((MxSetr05000101) MxReadImpl.parse(MxSetr05000101 .class, xml, _classes)); + return ((MxSetr05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100101.java index 9f88728fa..150309ef9 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05100101 parse(String xml) { - return ((MxSetr05100101) MxReadImpl.parse(MxSetr05100101 .class, xml, _classes)); + return ((MxSetr05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100102.java index c30578479..2a5c83d8b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05100102 parse(String xml) { - return ((MxSetr05100102) MxReadImpl.parse(MxSetr05100102 .class, xml, _classes)); + return ((MxSetr05100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05200101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05200101.java index 7dfa8c5f6..3ac2c4b91 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05200101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05200101 parse(String xml) { - return ((MxSetr05200101) MxReadImpl.parse(MxSetr05200101 .class, xml, _classes)); + return ((MxSetr05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300101.java index c5bce23f2..eb4b647df 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05300101 parse(String xml) { - return ((MxSetr05300101) MxReadImpl.parse(MxSetr05300101 .class, xml, _classes)); + return ((MxSetr05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300102.java index 4f78010f1..f859d21a9 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05300102 parse(String xml) { - return ((MxSetr05300102) MxReadImpl.parse(MxSetr05300102 .class, xml, _classes)); + return ((MxSetr05300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05400101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05400101.java index b7f2c5760..1357b5398 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05400101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05400101 parse(String xml) { - return ((MxSetr05400101) MxReadImpl.parse(MxSetr05400101 .class, xml, _classes)); + return ((MxSetr05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500101.java index ca71de96e..6981fd0bc 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05500101 parse(String xml) { - return ((MxSetr05500101) MxReadImpl.parse(MxSetr05500101 .class, xml, _classes)); + return ((MxSetr05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500102.java index 64aaabf25..a6cd2bc86 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05500102 parse(String xml) { - return ((MxSetr05500102) MxReadImpl.parse(MxSetr05500102 .class, xml, _classes)); + return ((MxSetr05500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05600101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05600101.java index f588bdd7d..a1ca7ba41 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05600101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05600101 parse(String xml) { - return ((MxSetr05600101) MxReadImpl.parse(MxSetr05600101 .class, xml, _classes)); + return ((MxSetr05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700101.java index 3f52476ec..58082c653 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05700101 parse(String xml) { - return ((MxSetr05700101) MxReadImpl.parse(MxSetr05700101 .class, xml, _classes)); + return ((MxSetr05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700102.java index 495fb7345..b5c46cc1c 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05700102 parse(String xml) { - return ((MxSetr05700102) MxReadImpl.parse(MxSetr05700102 .class, xml, _classes)); + return ((MxSetr05700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800101.java index f649885ee..021a10dc1 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05800101 parse(String xml) { - return ((MxSetr05800101) MxReadImpl.parse(MxSetr05800101 .class, xml, _classes)); + return ((MxSetr05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800102.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800102.java index c49d24c3d..48eef8099 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800102.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05800102 parse(String xml) { - return ((MxSetr05800102) MxReadImpl.parse(MxSetr05800102 .class, xml, _classes)); + return ((MxSetr05800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05900101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05900101.java index 9de99664d..ad235e17b 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05900101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr05900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr05900101 parse(String xml) { - return ((MxSetr05900101) MxReadImpl.parse(MxSetr05900101 .class, xml, _classes)); + return ((MxSetr05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr05900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06000101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06000101.java index c0bbcacd3..980690884 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06000101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06000101 parse(String xml) { - return ((MxSetr06000101) MxReadImpl.parse(MxSetr06000101 .class, xml, _classes)); + return ((MxSetr06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06100101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06100101.java index 2a284c78e..b82f4225f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06100101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06100101 parse(String xml) { - return ((MxSetr06100101) MxReadImpl.parse(MxSetr06100101 .class, xml, _classes)); + return ((MxSetr06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06200101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06200101.java index 083131a5d..ca63146f5 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06200101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06200101 parse(String xml) { - return ((MxSetr06200101) MxReadImpl.parse(MxSetr06200101 .class, xml, _classes)); + return ((MxSetr06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06400101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06400101.java index 0260bb3aa..9f798c00f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06400101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06400101 parse(String xml) { - return ((MxSetr06400101) MxReadImpl.parse(MxSetr06400101 .class, xml, _classes)); + return ((MxSetr06400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06500101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06500101.java index 6e14cf4ac..1dd11d339 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06500101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06500101 parse(String xml) { - return ((MxSetr06500101) MxReadImpl.parse(MxSetr06500101 .class, xml, _classes)); + return ((MxSetr06500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06600101.java b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06600101.java index 33a59f6c0..2cfcd064f 100644 --- a/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06600101.java +++ b/model-setr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSetr06600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSetr06600101 parse(String xml) { - return ((MxSetr06600101) MxReadImpl.parse(MxSetr06600101 .class, xml, _classes)); + return ((MxSetr06600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSetr06600101 parse(String xml, MxReadConfiguration conf) { + return ((MxSetr06600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSetr06600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement3.java index 0cd9fe7c6..7974ed137 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement3.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 Agreement3 { @XmlElement(name = "Desc") protected String desc; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dt; @XmlElement(name = "Ccy") @@ -42,7 +45,8 @@ public class Agreement3 { @XmlElement(name = "ClsgTp") @XmlSchemaType(name = "string") protected ClosingType1Code clsgTp; - @XmlElement(name = "StartDt") + @XmlElement(name = "StartDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDt; @XmlElement(name = "DlvryTp") @@ -81,7 +85,7 @@ public Agreement3 setDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -93,7 +97,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Agreement3 setDt(XMLGregorianCalendar value) { @@ -156,7 +160,7 @@ public Agreement3 setClsgTp(ClosingType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStartDt() { @@ -168,7 +172,7 @@ public XMLGregorianCalendar getStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Agreement3 setStartDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Commission16.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Commission16.java index f6e884c8a..f10d07d53 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Commission16.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Commission16.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; @@ -38,7 +40,8 @@ public class Commission16 { protected AmountOrRate2Choice comssn; @XmlElement(name = "RcptId") protected PartyIdentification54 rcptId; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @XmlElement(name = "TtlComssn") @@ -128,7 +131,7 @@ public Commission16 setRcptId(PartyIdentification54 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getClctnDt() { @@ -140,7 +143,7 @@ public XMLGregorianCalendar getClctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Commission16 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CrossOrderCancel1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CrossOrderCancel1.java index e7f5aab89..2bcb6fa96 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CrossOrderCancel1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CrossOrderCancel1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CrossOrderCancel1 { @XmlElement(name = "OrgnlClntOrdrId", required = true) protected String orgnlClntOrdrId; - @XmlElement(name = "OrgnlOrdrModTm") + @XmlElement(name = "OrgnlOrdrModTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar orgnlOrdrModTm; @@ -62,7 +65,7 @@ public CrossOrderCancel1 setOrgnlClntOrdrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrgnlOrdrModTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getOrgnlOrdrModTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CrossOrderCancel1 setOrgnlOrdrModTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat42Choice.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat42Choice.java index 6ba5e9610..402f4d787 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat42Choice.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat42Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DateFormat42Choice { @XmlElement(name = "YrMnth") @XmlSchemaType(name = "gYearMonth") protected XMLGregorianCalendar yrMnth; - @XmlElement(name = "YrMnthDay") + @XmlElement(name = "YrMnthDay", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar yrMnthDay; @@ -63,7 +66,7 @@ public DateFormat42Choice setYrMnth(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getYrMnthDay() { @@ -75,7 +78,7 @@ public XMLGregorianCalendar getYrMnthDay() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DateFormat42Choice setYrMnthDay(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails1.java index ad622c006..cdf021669 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ExpectedExecutionDetails1 { @XmlElement(name = "XpctdTradDtTm") protected DateAndDateTimeChoice xpctdTradDtTm; - @XmlElement(name = "XpctdSttlmDt") + @XmlElement(name = "XpctdSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdSttlmDt; @@ -62,7 +65,7 @@ public ExpectedExecutionDetails1 setXpctdTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdSttlmDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getXpctdSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExpectedExecutionDetails1 setXpctdSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails2.java index 6a79360a5..31839f534 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ExpectedExecutionDetails2 { @XmlElement(name = "XpctdTradDtTm") protected DateAndDateTimeChoice xpctdTradDtTm; - @XmlElement(name = "XpctdCshSttlmDt") + @XmlElement(name = "XpctdCshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdCshSttlmDt; @@ -62,7 +65,7 @@ public ExpectedExecutionDetails2 setXpctdTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdCshSttlmDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getXpctdCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExpectedExecutionDetails2 setXpctdCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails3.java index 597370d67..e675c45db 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ExpectedExecutionDetails3 { @XmlElement(name = "XpctdTradDtTm") protected DateAndDateTimeChoice xpctdTradDtTm; - @XmlElement(name = "XpctdCshSttlmDt") + @XmlElement(name = "XpctdCshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdCshSttlmDt; @XmlElement(name = "XpctdExctdAmt", required = true) @@ -44,7 +47,8 @@ public class ExpectedExecutionDetails3 { protected Boolean pmtInInd; @XmlElement(name = "PmtRef") protected String pmtRef; - @XmlElement(name = "PrepmtDt") + @XmlElement(name = "PrepmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prepmtDt; @XmlElement(name = "TopUpAmt") @@ -84,7 +88,7 @@ public ExpectedExecutionDetails3 setXpctdTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdCshSttlmDt() { @@ -96,7 +100,7 @@ public XMLGregorianCalendar getXpctdCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExpectedExecutionDetails3 setXpctdCshSttlmDt(XMLGregorianCalendar value) { @@ -184,7 +188,7 @@ public ExpectedExecutionDetails3 setPmtRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrepmtDt() { @@ -196,7 +200,7 @@ public XMLGregorianCalendar getPrepmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExpectedExecutionDetails3 setPrepmtDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails4.java index a9a67640e..592e976c0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExpectedExecutionDetails4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ExpectedExecutionDetails4 { @XmlElement(name = "XpctdTradDtTm") protected DateAndDateTimeChoice xpctdTradDtTm; - @XmlElement(name = "XpctdCshSttlmDt") + @XmlElement(name = "XpctdCshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdCshSttlmDt; @@ -62,7 +65,7 @@ public ExpectedExecutionDetails4 setXpctdTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdCshSttlmDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getXpctdCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExpectedExecutionDetails4 setXpctdCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes31.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes31.java index 0d458822f..43d6efb08 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes31.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes31.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; @@ -99,37 +101,48 @@ public class FinancialInstrumentAttributes31 { protected OptionType4Choice 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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; - @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 = "NxtFctrDt") + @XmlElement(name = "NxtFctrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtFctrDt; @XmlElement(name = "PrvsFctr") @@ -473,7 +486,7 @@ public FinancialInstrumentAttributes31 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -485,7 +498,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setCpnDt(XMLGregorianCalendar value) { @@ -498,7 +511,7 @@ public FinancialInstrumentAttributes31 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -510,7 +523,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setXpryDt(XMLGregorianCalendar value) { @@ -523,7 +536,7 @@ public FinancialInstrumentAttributes31 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -535,7 +548,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -548,7 +561,7 @@ public FinancialInstrumentAttributes31 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -560,7 +573,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setMtrtyDt(XMLGregorianCalendar value) { @@ -573,7 +586,7 @@ public FinancialInstrumentAttributes31 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -585,7 +598,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setIsseDt(XMLGregorianCalendar value) { @@ -598,7 +611,7 @@ public FinancialInstrumentAttributes31 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -610,7 +623,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setNxtCllblDt(XMLGregorianCalendar value) { @@ -623,7 +636,7 @@ public FinancialInstrumentAttributes31 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -635,7 +648,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setConvsDt(XMLGregorianCalendar value) { @@ -648,7 +661,7 @@ public FinancialInstrumentAttributes31 setConvsDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -660,7 +673,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setPutblDt(XMLGregorianCalendar value) { @@ -673,7 +686,7 @@ public FinancialInstrumentAttributes31 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -685,7 +698,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setDtdDt(XMLGregorianCalendar value) { @@ -698,7 +711,7 @@ public FinancialInstrumentAttributes31 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -710,7 +723,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setFrstPmtDt(XMLGregorianCalendar value) { @@ -723,7 +736,7 @@ public FinancialInstrumentAttributes31 setFrstPmtDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtFctrDt() { @@ -735,7 +748,7 @@ public XMLGregorianCalendar getNxtFctrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes31 setNxtFctrDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes44.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes44.java index 450984244..66c4f5ed1 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes44.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes44.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; @@ -99,37 +101,48 @@ public class FinancialInstrumentAttributes44 { protected OptionType4Choice 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 = "ConvsDt") + @XmlElement(name = "ConvsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar convsDt; - @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 = "NxtFctrDt") + @XmlElement(name = "NxtFctrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar nxtFctrDt; @XmlElement(name = "PrvsFctr") @@ -473,7 +486,7 @@ public FinancialInstrumentAttributes44 setDnmtnCcy(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCpnDt() { @@ -485,7 +498,7 @@ public XMLGregorianCalendar getCpnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setCpnDt(XMLGregorianCalendar value) { @@ -498,7 +511,7 @@ public FinancialInstrumentAttributes44 setCpnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -510,7 +523,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setXpryDt(XMLGregorianCalendar value) { @@ -523,7 +536,7 @@ public FinancialInstrumentAttributes44 setXpryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFltgRateFxgDt() { @@ -535,7 +548,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setFltgRateFxgDt(XMLGregorianCalendar value) { @@ -548,7 +561,7 @@ public FinancialInstrumentAttributes44 setFltgRateFxgDt(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -560,7 +573,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setMtrtyDt(XMLGregorianCalendar value) { @@ -573,7 +586,7 @@ public FinancialInstrumentAttributes44 setMtrtyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -585,7 +598,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setIsseDt(XMLGregorianCalendar value) { @@ -598,7 +611,7 @@ public FinancialInstrumentAttributes44 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtCllblDt() { @@ -610,7 +623,7 @@ public XMLGregorianCalendar getNxtCllblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setNxtCllblDt(XMLGregorianCalendar value) { @@ -623,7 +636,7 @@ public FinancialInstrumentAttributes44 setNxtCllblDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getConvsDt() { @@ -635,7 +648,7 @@ public XMLGregorianCalendar getConvsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setConvsDt(XMLGregorianCalendar value) { @@ -648,7 +661,7 @@ public FinancialInstrumentAttributes44 setConvsDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPutblDt() { @@ -660,7 +673,7 @@ public XMLGregorianCalendar getPutblDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setPutblDt(XMLGregorianCalendar value) { @@ -673,7 +686,7 @@ public FinancialInstrumentAttributes44 setPutblDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtdDt() { @@ -685,7 +698,7 @@ public XMLGregorianCalendar getDtdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setDtdDt(XMLGregorianCalendar value) { @@ -698,7 +711,7 @@ public FinancialInstrumentAttributes44 setDtdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrstPmtDt() { @@ -710,7 +723,7 @@ public XMLGregorianCalendar getFrstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setFrstPmtDt(XMLGregorianCalendar value) { @@ -723,7 +736,7 @@ public FinancialInstrumentAttributes44 setFrstPmtDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNxtFctrDt() { @@ -735,7 +748,7 @@ public XMLGregorianCalendar getNxtFctrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancialInstrumentAttributes44 setNxtFctrDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations2.java index 2624ae1a3..30c521969 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations2.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 FinancialInstrumentStipulations2 { 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 FinancialInstrumentStipulations2 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 FinancialInstrumentStipulations2 setXprtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms32.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms32.java index 5b9242265..0c84cf914 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms32.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms32.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 ForeignExchangeTerms32 { 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 ForeignExchangeTerms32 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 ForeignExchangeTerms32 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms4.java index 01a61e86f..c3ac9573c 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms4.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 ForeignExchangeTerms4 { 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 ForeignExchangeTerms4 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 ForeignExchangeTerms4 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms5.java index e2c40c20c..890839877 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms5.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 ForeignExchangeTerms5 { 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 ForeignExchangeTerms5 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 ForeignExchangeTerms5 setQtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundOrderData3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundOrderData3.java index 9d799169f..7183eb3ca 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundOrderData3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundOrderData3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundOrderData3 { - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; @XmlElement(name = "InvstmtAcctDtls") @@ -43,7 +46,7 @@ public class FundOrderData3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -55,7 +58,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundOrderData3 setReqdTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters11.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters11.java index 13fca4a81..a7ebc003b 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters11.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters11.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundSettlementParameters11 { - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SttlmPlc", required = true) @@ -57,7 +60,7 @@ public class FundSettlementParameters11 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -69,7 +72,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundSettlementParameters11 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters12.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters12.java index 9b5679ce4..9e520687e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters12.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters12.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundSettlementParameters12 { - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SttlmPlc", required = true) @@ -57,7 +60,7 @@ public class FundSettlementParameters12 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -69,7 +72,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundSettlementParameters12 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters3.java index d30e79696..60ea164da 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundSettlementParameters3 { - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SttlmPlc", required = true) @@ -49,7 +52,7 @@ public class FundSettlementParameters3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -61,7 +64,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundSettlementParameters3 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters4.java index 6bedc7f12..3ef7ee163 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundSettlementParameters4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FundSettlementParameters4 { - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "SttlmPlc", required = true) @@ -49,7 +52,7 @@ public class FundSettlementParameters4 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -61,7 +64,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FundSettlementParameters4 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FutureOrOptionDetails1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FutureOrOptionDetails1.java index 9cc028118..65db73e19 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FutureOrOptionDetails1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FutureOrOptionDetails1.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,18 +52,21 @@ public class FutureOrOptionDetails1 { @XmlElement(name = "FutrAndOptnCtrctTp") @XmlSchemaType(name = "string") protected FutureAndOptionContractType1Code futrAndOptnCtrctTp; - @XmlElement(name = "LastDlvryDt") + @XmlElement(name = "LastDlvryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastDlvryDt; @XmlElement(name = "UnitOfMeasr") @XmlSchemaType(name = "string") protected UnitOfMeasure1Code unitOfMeasr; - @XmlElement(name = "FutrDt") + @XmlElement(name = "FutrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar futrDt; @XmlElement(name = "MinSz") protected ActiveCurrencyAndAmount minSz; - @XmlElement(name = "AnncmntDt") + @XmlElement(name = "AnncmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar anncmntDt; @XmlElement(name = "Apprnc") @@ -125,7 +130,7 @@ public FutureOrOptionDetails1 setFutrAndOptnCtrctTp(FutureAndOptionContractType1 * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLastDlvryDt() { @@ -137,7 +142,7 @@ public XMLGregorianCalendar getLastDlvryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FutureOrOptionDetails1 setLastDlvryDt(XMLGregorianCalendar value) { @@ -175,7 +180,7 @@ public FutureOrOptionDetails1 setUnitOfMeasr(UnitOfMeasure1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFutrDt() { @@ -187,7 +192,7 @@ public XMLGregorianCalendar getFutrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FutureOrOptionDetails1 setFutrDt(XMLGregorianCalendar value) { @@ -225,7 +230,7 @@ public FutureOrOptionDetails1 setMinSz(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAnncmntDt() { @@ -237,7 +242,7 @@ public XMLGregorianCalendar getAnncmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FutureOrOptionDetails1 setAnncmntDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation1.java index e7f628035..0df09e9d0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldBackInformation1 { @XmlElement(name = "HldBckAmt") protected ActiveCurrencyAndAmount hldBckAmt; - @XmlElement(name = "HldBckRlsDt") + @XmlElement(name = "HldBckRlsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar hldBckRlsDt; @@ -62,7 +65,7 @@ public HoldBackInformation1 setHldBckAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getHldBckRlsDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getHldBckRlsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public HoldBackInformation1 setHldBckRlsDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation2.java index e6db65f73..024025f82 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldBackInformation2 { protected GateHoldBack1Code tp; @XmlElement(name = "Amt") protected ActiveCurrencyAndAmount amt; - @XmlElement(name = "XpctdRlsDt") + @XmlElement(name = "XpctdRlsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdRlsDt; @XmlElement(name = "FinInstrmId") @@ -104,7 +107,7 @@ public HoldBackInformation2 setAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdRlsDt() { @@ -116,7 +119,7 @@ public XMLGregorianCalendar getXpctdRlsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public HoldBackInformation2 setXpctdRlsDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation3.java index c6b779f03..c6a797b21 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HoldBackInformation3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 HoldBackInformation3 { protected GateHoldBack1Code tp; @XmlElement(name = "Amt") protected ActiveCurrencyAndAmount amt; - @XmlElement(name = "XpctdRlsDt") + @XmlElement(name = "XpctdRlsDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdRlsDt; @XmlElement(name = "FinInstrmId") @@ -101,7 +104,7 @@ public HoldBackInformation3 setAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdRlsDt() { @@ -113,7 +116,7 @@ public XMLGregorianCalendar getXpctdRlsDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public HoldBackInformation3 setXpctdRlsDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson12.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson12.java index 3b13e812a..5ebfd1a75 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson12.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson12.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson12 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -70,7 +73,7 @@ public IndividualPerson12 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson12 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson15.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson15.java index 8d292b3af..40b1caebd 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson15.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson15.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson15 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -72,7 +75,7 @@ public IndividualPerson15 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -84,7 +87,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson15 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson2.java index 2ee06254d..eaa91b4b2 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson2 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -70,7 +73,7 @@ public IndividualPerson2 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson2 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson31.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson31.java index 21f9e6765..649dc9e5d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson31.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson31.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson31 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -74,7 +77,7 @@ public IndividualPerson31 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson31 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson32.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson32.java index 80cc46dbd..520fece5d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson32.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson32.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson32 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -70,7 +73,7 @@ public IndividualPerson32 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson32 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson9.java index 9eb5c81a7..52c71837f 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IndividualPerson9 { @XmlElement(name = "Nm") protected String nm; - @XmlElement(name = "BirthDt") + @XmlElement(name = "BirthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "CtryAndResdtlSts") @@ -74,7 +77,7 @@ public IndividualPerson9 setNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBirthDt() { @@ -86,7 +89,7 @@ public XMLGregorianCalendar getBirthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IndividualPerson9 setBirthDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List1.java index f32e4ed9a..202dcc3a1 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List1.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.IsoTimeAdapter; 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 List1 { protected String exctnInstr; @XmlElement(name = "PrgrsRptInd") protected Boolean prgrsRptInd; - @XmlElement(name = "PrgrsPrdIntrvl") + @XmlElement(name = "PrgrsPrdIntrvl", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar prgrsPrdIntrvl; @XmlElement(name = "RealTmExctnRptInd") @@ -230,7 +233,7 @@ public List1 setPrgrsRptInd(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrgrsPrdIntrvl() { @@ -242,7 +245,7 @@ public XMLGregorianCalendar getPrgrsPrdIntrvl() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public List1 setPrgrsPrdIntrvl(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List2.java index c1a5604e8..6f9f82196 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/List2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 +36,12 @@ public class List2 { @XmlElement(name = "ListId", required = true) protected String listId; - @XmlElement(name = "TradOrgtnDtTm") + @XmlElement(name = "TradOrgtnDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDtTm; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @@ -71,7 +75,7 @@ public List2 setListId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDtTm() { @@ -83,7 +87,7 @@ public XMLGregorianCalendar getTradOrgtnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public List2 setTradOrgtnDtTm(XMLGregorianCalendar value) { @@ -96,7 +100,7 @@ public List2 setTradOrgtnDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -108,7 +112,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public List2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LotDetails1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LotDetails1.java index 57f2ea353..77320d050 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LotDetails1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LotDetails1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 LotDetails1 { @XmlElement(name = "LotDesc") protected String lotDesc; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tradDt; @XmlElement(name = "OrdrRef", required = true) @@ -71,7 +74,7 @@ public LotDetails1 setLotDesc(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -83,7 +86,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public LotDetails1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification3.java index 07559d958..439b5e6bf 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 MessageIdentification3 { @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 MessageIdentification3 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 MessageIdentification3 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order14.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order14.java index dead43e08..533e8ce69 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order14.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order14.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; @@ -94,10 +97,12 @@ public class Order14 { protected Boolean preAdvc; @XmlElement(name = "PlcOfTrad") protected MarketIdentification77 plcOfTrad; - @XmlElement(name = "OrdrBookgDt") + @XmlElement(name = "OrdrBookgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrBookgDt; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "TradDt", required = true) @@ -467,7 +472,7 @@ public Order14 setPlcOfTrad(MarketIdentification77 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrBookgDt() { @@ -479,7 +484,7 @@ public XMLGregorianCalendar getOrdrBookgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order14 setOrdrBookgDt(XMLGregorianCalendar value) { @@ -492,7 +497,7 @@ public Order14 setOrdrBookgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -504,7 +509,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order14 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order16.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order16.java index 93e55a32e..41b74443d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order16.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order16.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; @@ -97,10 +100,12 @@ public class Order16 { protected Boolean preAdvc; @XmlElement(name = "PlcOfTrad") protected MarketIdentification77 plcOfTrad; - @XmlElement(name = "OrdrBookgDt") + @XmlElement(name = "OrdrBookgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrBookgDt; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "TradDt", required = true) @@ -495,7 +500,7 @@ public Order16 setPlcOfTrad(MarketIdentification77 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrBookgDt() { @@ -507,7 +512,7 @@ public XMLGregorianCalendar getOrdrBookgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order16 setOrdrBookgDt(XMLGregorianCalendar value) { @@ -520,7 +525,7 @@ public Order16 setOrdrBookgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -532,7 +537,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order16 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order17.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order17.java index f58027177..8e6595b98 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order17.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order17.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; @@ -94,10 +97,12 @@ public class Order17 { protected Boolean preAdvc; @XmlElement(name = "PlcOfTrad") protected MarketIdentification79 plcOfTrad; - @XmlElement(name = "OrdrBookgDt") + @XmlElement(name = "OrdrBookgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrBookgDt; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "TradDt", required = true) @@ -467,7 +472,7 @@ public Order17 setPlcOfTrad(MarketIdentification79 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrBookgDt() { @@ -479,7 +484,7 @@ public XMLGregorianCalendar getOrdrBookgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order17 setOrdrBookgDt(XMLGregorianCalendar value) { @@ -492,7 +497,7 @@ public Order17 setOrdrBookgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -504,7 +509,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order17 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order18.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order18.java index f7d678589..be2ad3e77 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order18.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order18.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; @@ -97,10 +100,12 @@ public class Order18 { protected Boolean preAdvc; @XmlElement(name = "PlcOfTrad") protected MarketIdentification79 plcOfTrad; - @XmlElement(name = "OrdrBookgDt") + @XmlElement(name = "OrdrBookgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ordrBookgDt; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "TradDt", required = true) @@ -495,7 +500,7 @@ public Order18 setPlcOfTrad(MarketIdentification79 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrBookgDt() { @@ -507,7 +512,7 @@ public XMLGregorianCalendar getOrdrBookgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order18 setOrdrBookgDt(XMLGregorianCalendar value) { @@ -520,7 +525,7 @@ public Order18 setOrdrBookgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -532,7 +537,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order18 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order3.java index 8c74b8c34..764fc96b0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -78,7 +80,8 @@ public class Order3 { protected Side1Code sd; @XmlElement(name = "SlctdOrdrInd") protected boolean slctdOrdrInd; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "CmplcId") @@ -94,7 +97,8 @@ public class Order3 { protected PositionEffect1Code posFct; @XmlElement(name = "DerivCvrd") protected Boolean derivCvrd; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "TradgSsnDtls") @@ -297,7 +301,7 @@ public Order3 setSlctdOrdrInd(boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -309,7 +313,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order3 setTradOrgtnDt(XMLGregorianCalendar value) { @@ -447,7 +451,7 @@ public Order3 setDerivCvrd(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -459,7 +463,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order3 setTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order6.java index b37c4a4d5..32b3972e0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order6.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; @@ -86,7 +88,8 @@ public class Order6 { protected String clntOrdrLkId; @XmlElement(name = "SlctdOrdr") protected boolean slctdOrdr; - @XmlElement(name = "TradDt", required = true) + @XmlElement(name = "TradDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "Sd", required = true) @@ -116,7 +119,8 @@ public class Order6 { protected Boolean derivCvrd; @XmlElement(name = "TradRgltr") protected PartyIdentification23 tradRgltr; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "SttlmCcy") @@ -307,7 +311,7 @@ public Order6 setSlctdOrdr(boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -319,7 +323,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order6 setTradDt(XMLGregorianCalendar value) { @@ -599,7 +603,7 @@ public Order6 setTradRgltr(PartyIdentification23 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -611,7 +615,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order6 setTradOrgtnDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order9.java index 35fea50b1..8f94000b1 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Order9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; 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 Order9 { @XmlElement(name = "CshMrgn") @XmlSchemaType(name = "string") protected CashMarginOrder1Code cshMrgn; - @XmlElement(name = "TradOrgtnDt") + @XmlElement(name = "TradOrgtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradOrgtnDt; @XmlElement(name = "TradgCpcty") @@ -83,7 +86,8 @@ public class Order9 { @XmlElement(name = "OrdrRstrctns") @XmlSchemaType(name = "string") protected List ordrRstrctns; - @XmlElement(name = "TradDt") + @XmlElement(name = "TradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradDt; @XmlElement(name = "ClrFeeTp") @@ -232,7 +236,7 @@ public Order9 setCshMrgn(CashMarginOrder1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradOrgtnDt() { @@ -244,7 +248,7 @@ public XMLGregorianCalendar getTradOrgtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order9 setTradOrgtnDt(XMLGregorianCalendar value) { @@ -403,7 +407,7 @@ public List getOrdrRstrctns() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradDt() { @@ -415,7 +419,7 @@ public XMLGregorianCalendar getTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Order9 setTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderParameters1.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderParameters1.java index b75a0b63e..eec1e88f2 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderParameters1.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrderParameters1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter; 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 OrderParameters1 { @XmlElement(name = "Tp", required = true) @XmlSchemaType(name = "string") protected OrderType1Code tp; - @XmlElement(name = "XpryDtAndTm") + @XmlElement(name = "XpryDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtAndTm; - @XmlElement(name = "FctvDtAndTm") + @XmlElement(name = "FctvDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar fctvDtAndTm; @XmlElement(name = "HdlgInstr") @@ -152,7 +156,7 @@ public OrderParameters1 setTp(OrderType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtAndTm() { @@ -164,7 +168,7 @@ public XMLGregorianCalendar getXpryDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OrderParameters1 setXpryDtAndTm(XMLGregorianCalendar value) { @@ -177,7 +181,7 @@ public OrderParameters1 setXpryDtAndTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDtAndTm() { @@ -189,7 +193,7 @@ public XMLGregorianCalendar getFctvDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OrderParameters1 setFctvDtAndTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction13.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction13.java index fba369945..4f0e208f7 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction13.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction13.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction13 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm") @@ -65,7 +68,7 @@ public PaymentTransaction13 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction13 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction14.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction14.java index 063abcf62..89d3b11fd 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction14.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction14.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction14 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "CshInOrOutChc") @@ -65,7 +68,7 @@ public PaymentTransaction14 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction14 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction15.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction15.java index a7b058b49..261aef747 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction15.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction15.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction15 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm") @@ -65,7 +68,7 @@ public PaymentTransaction15 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction15 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction16.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction16.java index 718041107..0a1cda069 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction16.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction16.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction16 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm") @@ -65,7 +68,7 @@ public PaymentTransaction16 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction16 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction17.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction17.java index 327e64b05..0f607dd9f 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction17.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction17.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction17 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm") @@ -65,7 +68,7 @@ public PaymentTransaction17 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction17 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction18.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction18.java index 69ba0d063..794d0f305 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction18.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction18.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction18 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm", required = true) @@ -65,7 +68,7 @@ public PaymentTransaction18 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction18 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction19.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction19.java index 6a6ca234b..b59e05bad 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction19.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction19.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction19 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "PmtInstrm") @@ -65,7 +68,7 @@ public PaymentTransaction19 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction19 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction20.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction20.java index 3087e1fd3..75a1d6fc2 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction20.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction20.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentTransaction20 { @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "SttlmDt") + @XmlElement(name = "SttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sttlmDt; @XmlElement(name = "CshInOrOut", required = true) @@ -65,7 +68,7 @@ public PaymentTransaction20 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTransaction20 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution2.java index 07cdd713f..7befc0743 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RedemptionBulkExecution2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "CxlRght") @@ -82,7 +85,7 @@ public RedemptionBulkExecution2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution2 setOrdrDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution3.java index 660cab6a3..68b603250 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution3.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; @@ -43,10 +46,12 @@ public class RedemptionBulkExecution3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -64,7 +69,8 @@ public class RedemptionBulkExecution3 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -125,7 +131,7 @@ public RedemptionBulkExecution3 setPlcOfTrad(PlaceOfTradeIdentification1Choice v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -150,7 +156,7 @@ public RedemptionBulkExecution3 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -162,7 +168,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -354,7 +360,7 @@ public RedemptionBulkExecution3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -366,7 +372,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution5.java index ebe7205aa..0d53563b0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkExecution5.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; @@ -45,13 +48,16 @@ public class RedemptionBulkExecution5 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "RcvdDtTm") + @XmlElement(name = "RcvdDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rcvdDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -149,7 +155,7 @@ public RedemptionBulkExecution5 setPlcOfTrad(PlaceOfTradeIdentification1Choice v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -161,7 +167,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution5 setOrdrDtTm(XMLGregorianCalendar value) { @@ -174,7 +180,7 @@ public RedemptionBulkExecution5 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDtTm() { @@ -186,7 +192,7 @@ public XMLGregorianCalendar getRcvdDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution5 setRcvdDtTm(XMLGregorianCalendar value) { @@ -199,7 +205,7 @@ public RedemptionBulkExecution5 setRcvdDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -211,7 +217,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkExecution5 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder2.java index 4187ca687..9225b87c6 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +39,12 @@ public class RedemptionBulkOrder2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "CxlRght") @@ -86,7 +90,7 @@ public RedemptionBulkOrder2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -98,7 +102,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -111,7 +115,7 @@ public RedemptionBulkOrder2 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -123,7 +127,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder2 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder3.java index 113daad62..899c1e819 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder3.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; @@ -44,12 +47,14 @@ public class RedemptionBulkOrder3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -67,7 +72,8 @@ public class RedemptionBulkOrder3 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -128,7 +134,7 @@ public RedemptionBulkOrder3 setPlcOfTrad(PlaceOfTradeIdentification1Choice value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -140,7 +146,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -178,7 +184,7 @@ public RedemptionBulkOrder3 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -190,7 +196,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -382,7 +388,7 @@ public RedemptionBulkOrder3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -394,7 +400,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder4.java index d7a84a285..366373836 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder4.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; @@ -44,12 +47,14 @@ public class RedemptionBulkOrder4 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -67,7 +72,8 @@ public class RedemptionBulkOrder4 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -128,7 +134,7 @@ public RedemptionBulkOrder4 setPlcOfTrad(PlaceOfTradeIdentification1Choice value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -140,7 +146,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -178,7 +184,7 @@ public RedemptionBulkOrder4 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -190,7 +196,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -382,7 +388,7 @@ public RedemptionBulkOrder4 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -394,7 +400,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder6.java index 5f727a268..9e02ddb4e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionBulkOrder6.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; @@ -42,12 +45,14 @@ public class RedemptionBulkOrder6 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -120,7 +125,7 @@ public RedemptionBulkOrder6 setPlcOfTrad(PlaceOfTradeIdentification1Choice value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -132,7 +137,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder6 setOrdrDtTm(XMLGregorianCalendar value) { @@ -170,7 +175,7 @@ public RedemptionBulkOrder6 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionBulkOrder6 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution10.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution10.java index e85563b0b..3d781510c 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution10.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution10.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 RedemptionExecution10 { protected String clntRef; @XmlElement(name = "DealRef", required = true) protected String dealRef; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; @XmlElement(name = "HdgFndOrdrTp") @@ -97,10 +100,12 @@ public class RedemptionExecution10 { protected List lotDtls; @XmlElement(name = "TradDtTm", required = true) protected DateAndDateTimeChoice tradDtTm; - @XmlElement(name = "NAVDt", required = true) + @XmlElement(name = "NAVDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar navDt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "ReqdSttlmCcy") @@ -233,7 +238,7 @@ public RedemptionExecution10 setDealRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution10 setReqdTradDt(XMLGregorianCalendar value) { @@ -595,7 +600,7 @@ public RedemptionExecution10 setTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNAVDt() { @@ -607,7 +612,7 @@ public XMLGregorianCalendar getNAVDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution10 setNAVDt(XMLGregorianCalendar value) { @@ -620,7 +625,7 @@ public RedemptionExecution10 setNAVDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -632,7 +637,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution10 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution12.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution12.java index b53493504..4b98a98b6 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution12.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution12.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RedemptionExecution12 { protected DateAndDateTimeChoice tradDtTm; @XmlElement(name = "SttlmAmt", required = true) protected RestrictedFINActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt", required = true) + @XmlElement(name = "CshSttlmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -338,7 +341,7 @@ public RedemptionExecution12 setSttlmAmt(RestrictedFINActiveCurrencyAndAmount va * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -350,7 +353,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution12 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution15.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution15.java index 2adf05592..ac8144ea2 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution15.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution15.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; @@ -105,7 +107,8 @@ public class RedemptionExecution15 { protected List inftvPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -566,7 +569,7 @@ public RedemptionExecution15 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -578,7 +581,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution15 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution16.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution16.java index f9ef88f7b..ea429d0ad 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution16.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution16.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; @@ -99,7 +101,8 @@ public class RedemptionExecution16 { protected DateAndDateTimeChoice tradDtTm; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -510,7 +513,7 @@ public RedemptionExecution16 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -522,7 +525,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution16 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution5.java index 9a2c4d437..a9c931db5 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution5.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; @@ -95,7 +97,8 @@ public class RedemptionExecution5 { protected DateAndDateTimeChoice tradDtTm; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -494,7 +497,7 @@ public RedemptionExecution5 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -506,7 +509,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution5 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution6.java index 31a87359c..185413e36 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionExecution6.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; @@ -97,7 +99,8 @@ public class RedemptionExecution6 { protected DateAndDateTimeChoice tradDtTm; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -500,7 +503,7 @@ public RedemptionExecution6 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -512,7 +515,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionExecution6 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution2.java index 931abaee8..387e883b8 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RedemptionMultipleExecution2 { protected IndividualPerson2 bnfcryDtls; @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "CxlRght") @@ -104,7 +107,7 @@ public RedemptionMultipleExecution2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -116,7 +119,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution2 setOrdrDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution3.java index 9331c906f..f7b087a40 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution3.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; @@ -44,10 +47,12 @@ public class RedemptionMultipleExecution3 { protected IndividualPerson12 bnfcryDtls; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -61,7 +66,8 @@ public class RedemptionMultipleExecution3 { protected List indvExctnDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -147,7 +153,7 @@ public RedemptionMultipleExecution3 setPlcOfTrad(PlaceOfTradeIdentification1Choi * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -159,7 +165,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -172,7 +178,7 @@ public RedemptionMultipleExecution3 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -184,7 +190,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -326,7 +332,7 @@ public RedemptionMultipleExecution3 setTtlSttlmAmt(ActiveCurrencyAndAmount value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -338,7 +344,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution5.java index ae2c41392..a9e85a5f5 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleExecution5.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; @@ -44,13 +47,16 @@ public class RedemptionMultipleExecution5 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "RcvdDtTm") + @XmlElement(name = "RcvdDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rcvdDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -146,7 +152,7 @@ public RedemptionMultipleExecution5 setPlcOfTrad(PlaceOfTradeIdentification1Choi * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -158,7 +164,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution5 setOrdrDtTm(XMLGregorianCalendar value) { @@ -171,7 +177,7 @@ public RedemptionMultipleExecution5 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDtTm() { @@ -183,7 +189,7 @@ public XMLGregorianCalendar getRcvdDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution5 setRcvdDtTm(XMLGregorianCalendar value) { @@ -196,7 +202,7 @@ public RedemptionMultipleExecution5 setRcvdDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -208,7 +214,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleExecution5 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder2.java index e58b8cdfb..86d21d130 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RedemptionMultipleOrder2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "CxlRght") @@ -83,7 +87,7 @@ public RedemptionMultipleOrder2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -95,7 +99,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -108,7 +112,7 @@ public RedemptionMultipleOrder2 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -120,7 +124,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder2 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder3.java index 0494f1909..e16862fa4 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder3.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; @@ -43,12 +46,14 @@ public class RedemptionMultipleOrder3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "InvstmtAcctDtls", required = true) @@ -66,7 +71,8 @@ public class RedemptionMultipleOrder3 { protected PaymentTransaction21 blkCshSttlmDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @@ -125,7 +131,7 @@ public RedemptionMultipleOrder3 setPlcOfTrad(PlaceOfTradeIdentification1Choice v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -175,7 +181,7 @@ public RedemptionMultipleOrder3 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -187,7 +193,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -379,7 +385,7 @@ public RedemptionMultipleOrder3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -391,7 +397,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder4.java index cf3eed609..af549a4ff 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder4.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; @@ -43,12 +46,14 @@ public class RedemptionMultipleOrder4 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -66,7 +71,8 @@ public class RedemptionMultipleOrder4 { protected PaymentTransaction21 blkCshSttlmDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @@ -125,7 +131,7 @@ public RedemptionMultipleOrder4 setPlcOfTrad(PlaceOfTradeIdentification1Choice v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -175,7 +181,7 @@ public RedemptionMultipleOrder4 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -187,7 +193,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -379,7 +385,7 @@ public RedemptionMultipleOrder4 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -391,7 +397,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder6.java index c060b47ee..0c80e2f2f 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionMultipleOrder6.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; @@ -41,12 +44,14 @@ public class RedemptionMultipleOrder6 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -117,7 +122,7 @@ public RedemptionMultipleOrder6 setPlcOfTrad(PlaceOfTradeIdentification1Choice v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -129,7 +134,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder6 setOrdrDtTm(XMLGregorianCalendar value) { @@ -167,7 +172,7 @@ public RedemptionMultipleOrder6 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -179,7 +184,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionMultipleOrder6 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder14.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder14.java index 635c6bba2..a0352dc6d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder14.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder14.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -73,7 +75,8 @@ public class RedemptionOrder14 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -333,7 +336,7 @@ public RedemptionOrder14 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -345,7 +348,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder14 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder15.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder15.java index 9a8718308..b94021527 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder15.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +73,8 @@ public class RedemptionOrder15 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -331,7 +334,7 @@ public RedemptionOrder15 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -343,7 +346,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder15 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder5.java index ced5f8602..9e2a1b6f9 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder5.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; @@ -82,7 +84,8 @@ public class RedemptionOrder5 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -434,7 +437,7 @@ public RedemptionOrder5 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -446,7 +449,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder5 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder6.java index 7434cd9e6..2635ec131 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder6.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; @@ -84,7 +86,8 @@ public class RedemptionOrder6 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -440,7 +443,7 @@ public RedemptionOrder6 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -452,7 +455,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder6 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder7.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder7.java index d4313c665..6dcc2823d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder7.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder7.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; @@ -79,7 +81,8 @@ public class RedemptionOrder7 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -406,7 +409,7 @@ public RedemptionOrder7 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -418,7 +421,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder7 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder8.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder8.java index 3958a13de..133e94c8c 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder8.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder8.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; @@ -81,7 +83,8 @@ public class RedemptionOrder8 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -412,7 +415,7 @@ public RedemptionOrder8 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -424,7 +427,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder8 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder9.java index d0dbc3bc7..4365c490e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RedemptionOrder9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RedemptionOrder9 { protected String ordrRef; @XmlElement(name = "ClntRef") protected String clntRef; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; @XmlElement(name = "HdgFndOrdrTp") @@ -74,7 +77,8 @@ public class RedemptionOrder9 { protected List chrgDtls; @XmlElement(name = "TaxDtls") protected List taxDtls; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "ReqdSttlmCcy") @@ -164,7 +168,7 @@ public RedemptionOrder9 setClntRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -176,7 +180,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder9 setReqdTradDt(XMLGregorianCalendar value) { @@ -455,7 +459,7 @@ public List getTaxDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -467,7 +471,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RedemptionOrder9 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference10.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference10.java index 0152ad225..7509a3ed8 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference10.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference10.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Reference10 { @XmlElement(name = "OrgnlClntOrdrId", required = true) protected String orgnlClntOrdrId; - @XmlElement(name = "OrgnlOrdrModTm") + @XmlElement(name = "OrgnlOrdrModTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar orgnlOrdrModTm; @@ -62,7 +65,7 @@ public Reference10 setOrgnlClntOrdrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrgnlOrdrModTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getOrgnlOrdrModTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Reference10 setOrgnlOrdrModTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference9.java index c101d1101..dd98caef9 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Reference9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Reference9 { protected String orgnlClntOrdrId; @XmlElement(name = "OrdrId") protected String ordrId; - @XmlElement(name = "OrgnlOrdrModTm") + @XmlElement(name = "OrgnlOrdrModTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar orgnlOrdrModTm; @@ -90,7 +93,7 @@ public Reference9 setOrdrId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrgnlOrdrModTm() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getOrgnlOrdrModTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Reference9 setOrgnlOrdrModTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing10.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing10.java index 9a9318ba6..73bab9ec4 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing10.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing10.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; @@ -65,7 +68,8 @@ }) public class SecuritiesFinancing10 { - @XmlElement(name = "RateChngDt") + @XmlElement(name = "RateChngDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rateChngDt; @XmlElement(name = "RateTp") @@ -139,7 +143,8 @@ public class SecuritiesFinancing10 { protected SecuritiesLendingType1Choice sctiesLndgTp; @XmlElement(name = "Rvsbl") protected Reversible1Choice rvsbl; - @XmlElement(name = "MinDtForCallBck") + @XmlElement(name = "MinDtForCallBck", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar minDtForCallBck; @XmlElement(name = "RollOver") @@ -154,7 +159,7 @@ public class SecuritiesFinancing10 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRateChngDt() { @@ -166,7 +171,7 @@ public XMLGregorianCalendar getRateChngDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesFinancing10 setRateChngDt(XMLGregorianCalendar value) { @@ -1054,7 +1059,7 @@ public SecuritiesFinancing10 setRvsbl(Reversible1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMinDtForCallBck() { @@ -1066,7 +1071,7 @@ public XMLGregorianCalendar getMinDtForCallBck() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SecuritiesFinancing10 setMinDtForCallBck(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution2.java index 15e90adaa..bfc54042f 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionBulkExecution2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "CxlRght") @@ -82,7 +85,7 @@ public SubscriptionBulkExecution2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -94,7 +97,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution2 setOrdrDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution3.java index c582aaec0..4b955caeb 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution3.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; @@ -43,10 +46,12 @@ public class SubscriptionBulkExecution3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -64,7 +69,8 @@ public class SubscriptionBulkExecution3 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -125,7 +131,7 @@ public SubscriptionBulkExecution3 setPlcOfTrad(PlaceOfTradeIdentification1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -150,7 +156,7 @@ public SubscriptionBulkExecution3 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -162,7 +168,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -354,7 +360,7 @@ public SubscriptionBulkExecution3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -366,7 +372,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution4.java index dcdaaefc4..5ff0c5973 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkExecution4.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; @@ -45,13 +48,16 @@ public class SubscriptionBulkExecution4 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "RcvdDtTm") + @XmlElement(name = "RcvdDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rcvdDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -149,7 +155,7 @@ public SubscriptionBulkExecution4 setPlcOfTrad(PlaceOfTradeIdentification1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -161,7 +167,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -174,7 +180,7 @@ public SubscriptionBulkExecution4 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDtTm() { @@ -186,7 +192,7 @@ public XMLGregorianCalendar getRcvdDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution4 setRcvdDtTm(XMLGregorianCalendar value) { @@ -199,7 +205,7 @@ public SubscriptionBulkExecution4 setRcvdDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -211,7 +217,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkExecution4 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder2.java index 2103f6606..3382acf8c 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,10 +39,12 @@ public class SubscriptionBulkOrder2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "CxlRght") @@ -86,7 +90,7 @@ public SubscriptionBulkOrder2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -98,7 +102,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -111,7 +115,7 @@ public SubscriptionBulkOrder2 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -123,7 +127,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder2 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder3.java index 8aab4ccfd..b2ec8cd27 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder3.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; @@ -44,12 +47,14 @@ public class SubscriptionBulkOrder3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -67,7 +72,8 @@ public class SubscriptionBulkOrder3 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -128,7 +134,7 @@ public SubscriptionBulkOrder3 setPlcOfTrad(PlaceOfTradeIdentification1Choice val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -140,7 +146,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -178,7 +184,7 @@ public SubscriptionBulkOrder3 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -190,7 +196,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -382,7 +388,7 @@ public SubscriptionBulkOrder3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -394,7 +400,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder4.java index 323b152dc..f2e789b3b 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder4.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; @@ -44,12 +47,14 @@ public class SubscriptionBulkOrder4 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -67,7 +72,8 @@ public class SubscriptionBulkOrder4 { protected String reqdNAVCcy; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -128,7 +134,7 @@ public SubscriptionBulkOrder4 setPlcOfTrad(PlaceOfTradeIdentification1Choice val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -140,7 +146,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -178,7 +184,7 @@ public SubscriptionBulkOrder4 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -190,7 +196,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -382,7 +388,7 @@ public SubscriptionBulkOrder4 setTtlSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -394,7 +400,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder5.java index 691170958..be02341d0 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionBulkOrder5.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; @@ -42,12 +45,14 @@ public class SubscriptionBulkOrder5 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -120,7 +125,7 @@ public SubscriptionBulkOrder5 setPlcOfTrad(PlaceOfTradeIdentification1Choice val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -132,7 +137,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder5 setOrdrDtTm(XMLGregorianCalendar value) { @@ -170,7 +175,7 @@ public SubscriptionBulkOrder5 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -182,7 +187,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionBulkOrder5 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution12.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution12.java index 5f623b915..d21f0e91e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution12.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution12.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; @@ -102,7 +104,8 @@ public class SubscriptionExecution12 { protected List inftvPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -541,7 +544,7 @@ public SubscriptionExecution12 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -553,7 +556,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution12 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution13.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution13.java index 577cf4297..89dd9b179 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution13.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution13.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; @@ -104,7 +106,8 @@ public class SubscriptionExecution13 { protected List inftvPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -543,7 +546,7 @@ public SubscriptionExecution13 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -555,7 +558,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution13 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution5.java index b74dc65e5..d1197d6b5 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution5.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; @@ -98,7 +100,8 @@ public class SubscriptionExecution5 { protected List inftvPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -525,7 +528,7 @@ public SubscriptionExecution5 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -537,7 +540,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution5 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution6.java index 33125f1a6..e9a99dab4 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution6.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; @@ -100,7 +102,8 @@ public class SubscriptionExecution6 { protected List inftvPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -531,7 +534,7 @@ public SubscriptionExecution6 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -543,7 +546,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution6 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution7.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution7.java index cb5d4931a..57ce9412f 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution7.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution7.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 SubscriptionExecution7 { protected String clntRef; @XmlElement(name = "DealRef", required = true) protected String dealRef; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; @XmlElement(name = "HdgFndOrdrTp") @@ -93,10 +96,12 @@ public class SubscriptionExecution7 { protected SidePocketInformation2 sdPcktDtls; @XmlElement(name = "TradDtTm", required = true) protected DateAndDateTimeChoice tradDtTm; - @XmlElement(name = "NAVDt", required = true) + @XmlElement(name = "NAVDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar navDt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "ReqdSttlmCcy") @@ -233,7 +238,7 @@ public SubscriptionExecution7 setDealRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution7 setReqdTradDt(XMLGregorianCalendar value) { @@ -541,7 +546,7 @@ public SubscriptionExecution7 setTradDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNAVDt() { @@ -553,7 +558,7 @@ public XMLGregorianCalendar getNAVDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution7 setNAVDt(XMLGregorianCalendar value) { @@ -566,7 +571,7 @@ public SubscriptionExecution7 setNAVDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -578,7 +583,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution7 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution9.java index 2f72071fb..d4c7817fc 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionExecution9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +73,8 @@ public class SubscriptionExecution9 { protected UnitPrice17 dealgPricDtls; @XmlElement(name = "SttlmAmt", required = true) protected RestrictedFINActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt", required = true) + @XmlElement(name = "CshSttlmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -360,7 +363,7 @@ public SubscriptionExecution9 setSttlmAmt(RestrictedFINActiveCurrencyAndAmount v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -372,7 +375,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionExecution9 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution2.java index 7f330b246..d8fc85123 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionMultipleExecution2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "CxlRght") @@ -79,7 +82,7 @@ public SubscriptionMultipleExecution2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -91,7 +94,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution2 setOrdrDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution3.java index 535e3b104..dad317a71 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution3.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; @@ -42,10 +45,12 @@ public class SubscriptionMultipleExecution3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -61,7 +66,8 @@ public class SubscriptionMultipleExecution3 { protected List indvExctnDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -122,7 +128,7 @@ public SubscriptionMultipleExecution3 setPlcOfTrad(PlaceOfTradeIdentification1Ch * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -134,7 +140,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -147,7 +153,7 @@ public SubscriptionMultipleExecution3 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -159,7 +165,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -326,7 +332,7 @@ public SubscriptionMultipleExecution3 setTtlSttlmAmt(ActiveCurrencyAndAmount val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -338,7 +344,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution5.java index 7f9f0f58d..f05c7fbf7 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleExecution5.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; @@ -44,13 +47,16 @@ public class SubscriptionMultipleExecution5 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "RcvdDtTm") + @XmlElement(name = "RcvdDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rcvdDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -146,7 +152,7 @@ public SubscriptionMultipleExecution5 setPlcOfTrad(PlaceOfTradeIdentification1Ch * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -158,7 +164,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution5 setOrdrDtTm(XMLGregorianCalendar value) { @@ -171,7 +177,7 @@ public SubscriptionMultipleExecution5 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDtTm() { @@ -183,7 +189,7 @@ public XMLGregorianCalendar getRcvdDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution5 setRcvdDtTm(XMLGregorianCalendar value) { @@ -196,7 +202,7 @@ public SubscriptionMultipleExecution5 setRcvdDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -208,7 +214,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleExecution5 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder2.java index a4bb6fa26..cbe4f864e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionMultipleOrder2 { @XmlElement(name = "PlcOfTrad") protected String plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "CxlRght") @@ -83,7 +87,7 @@ public SubscriptionMultipleOrder2 setPlcOfTrad(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -95,7 +99,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -108,7 +112,7 @@ public SubscriptionMultipleOrder2 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -120,7 +124,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder2 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder3.java index 5f3abbbf8..6717d63d3 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder3.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; @@ -43,12 +46,14 @@ public class SubscriptionMultipleOrder3 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -64,7 +69,8 @@ public class SubscriptionMultipleOrder3 { protected List indvOrdrDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -125,7 +131,7 @@ public SubscriptionMultipleOrder3 setPlcOfTrad(PlaceOfTradeIdentification1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -175,7 +181,7 @@ public SubscriptionMultipleOrder3 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -187,7 +193,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -354,7 +360,7 @@ public SubscriptionMultipleOrder3 setTtlSttlmAmt(ActiveCurrencyAndAmount value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -366,7 +372,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder4.java index 8ca6ccb57..402ca4369 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder4.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; @@ -43,12 +46,14 @@ public class SubscriptionMultipleOrder4 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -64,7 +69,8 @@ public class SubscriptionMultipleOrder4 { protected List indvOrdrDtls; @XmlElement(name = "TtlSttlmAmt") protected ActiveCurrencyAndAmount ttlSttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "BlkCshSttlmDtls") @@ -125,7 +131,7 @@ public SubscriptionMultipleOrder4 setPlcOfTrad(PlaceOfTradeIdentification1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -137,7 +143,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -175,7 +181,7 @@ public SubscriptionMultipleOrder4 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -187,7 +193,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -354,7 +360,7 @@ public SubscriptionMultipleOrder4 setTtlSttlmAmt(ActiveCurrencyAndAmount value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -366,7 +372,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder6.java index 47e26c92c..99306df8e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionMultipleOrder6.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; @@ -41,12 +44,14 @@ public class SubscriptionMultipleOrder6 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "XpryDtTm") protected DateAndDateTimeChoice xpryDtTm; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "CxlRght") @@ -117,7 +122,7 @@ public SubscriptionMultipleOrder6 setPlcOfTrad(PlaceOfTradeIdentification1Choice * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -129,7 +134,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder6 setOrdrDtTm(XMLGregorianCalendar value) { @@ -167,7 +172,7 @@ public SubscriptionMultipleOrder6 setXpryDtTm(DateAndDateTimeChoice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -179,7 +184,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionMultipleOrder6 setReqdFutrTradDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder14.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder14.java index 80088e43d..2a302924d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder14.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder14.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +77,8 @@ public class SubscriptionOrder14 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -338,7 +341,7 @@ public SubscriptionOrder14 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -350,7 +353,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder14 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder15.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder15.java index 3a9bb920d..ba49d35d5 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder15.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder15.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionOrder15 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -282,7 +285,7 @@ public SubscriptionOrder15 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -294,7 +297,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder15 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder5.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder5.java index 62b50da60..a48c8e80d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder5.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -77,7 +79,8 @@ public class SubscriptionOrder5 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -382,7 +385,7 @@ public SubscriptionOrder5 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -394,7 +397,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder5 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder6.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder6.java index 5a3d534da..b8630900d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder6.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder6.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; 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 SubscriptionOrder6 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -413,7 +416,7 @@ public SubscriptionOrder6 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -425,7 +428,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder6 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder7.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder7.java index c08b6c8b9..925067715 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder7.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder7.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -72,7 +74,8 @@ public class SubscriptionOrder7 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -329,7 +332,7 @@ public SubscriptionOrder7 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -341,7 +344,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder7 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder8.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder8.java index cddf53f3e..21dd53809 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder8.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -78,7 +80,8 @@ public class SubscriptionOrder8 { protected RoundingDirection2Code rndg; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -385,7 +388,7 @@ public SubscriptionOrder8 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -397,7 +400,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder8 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder9.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder9.java index 49062b9d4..3e3a834ee 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder9.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SubscriptionOrder9.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SubscriptionOrder9 { protected String ordrRef; @XmlElement(name = "ClntRef") protected String clntRef; - @XmlElement(name = "ReqdTradDt") + @XmlElement(name = "ReqdTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdTradDt; @XmlElement(name = "HdgFndOrdrTp") @@ -74,7 +77,8 @@ public class SubscriptionOrder9 { protected List chrgDtls; @XmlElement(name = "TaxDtls") protected List taxDtls; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "ReqdSttlmCcy") @@ -164,7 +168,7 @@ public SubscriptionOrder9 setClntRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdTradDt() { @@ -176,7 +180,7 @@ public XMLGregorianCalendar getReqdTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder9 setReqdTradDt(XMLGregorianCalendar value) { @@ -451,7 +455,7 @@ public List getTaxDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -463,7 +467,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SubscriptionOrder9 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution3.java index 476921e12..881245785 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SwitchExecution3 { - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "DealRef", required = true) @@ -69,7 +72,7 @@ public class SwitchExecution3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -81,7 +84,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution3 setOrdrDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution4.java index ebe8d04fc..6554fb54d 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution4.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; @@ -51,7 +54,8 @@ public class SwitchExecution4 { @XmlElement(name = "MstrRef") protected String mstrRef; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "InvstmtAcctDtls") @@ -68,7 +72,8 @@ public class SwitchExecution4 { protected ActiveCurrencyAndAmount ttlSbcptAmt; @XmlElement(name = "RltdPtyDtls") protected List rltdPtyDtls; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "AddtlCshIn") @@ -77,7 +82,8 @@ public class SwitchExecution4 { protected ActiveCurrencyAndAmount rsltgCshOut; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -134,7 +140,7 @@ public SwitchExecution4 setMstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -146,7 +152,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -338,7 +344,7 @@ public List getRltdPtyDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -350,7 +356,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -438,7 +444,7 @@ public SwitchExecution4 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -450,7 +456,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution7.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution7.java index d339f35c7..fee574784 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution7.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchExecution7.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; @@ -60,10 +63,12 @@ public class SwitchExecution7 { protected String mstrRef; @XmlElement(name = "PlcOfTrad") protected PlaceOfTradeIdentification1Choice plcOfTrad; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; - @XmlElement(name = "RcvdDtTm") + @XmlElement(name = "RcvdDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar rcvdDtTm; @XmlElement(name = "DealRef", required = true) @@ -78,12 +83,14 @@ public class SwitchExecution7 { protected List rltdPtyDtls; @XmlElement(name = "CxlRght") protected CancellationRight1Choice cxlRght; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -200,7 +207,7 @@ public SwitchExecution7 setPlcOfTrad(PlaceOfTradeIdentification1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -212,7 +219,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution7 setOrdrDtTm(XMLGregorianCalendar value) { @@ -225,7 +232,7 @@ public SwitchExecution7 setOrdrDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDtTm() { @@ -237,7 +244,7 @@ public XMLGregorianCalendar getRcvdDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution7 setRcvdDtTm(XMLGregorianCalendar value) { @@ -404,7 +411,7 @@ public SwitchExecution7 setCxlRght(CancellationRight1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -416,7 +423,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution7 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -454,7 +461,7 @@ public SwitchExecution7 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -466,7 +473,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchExecution7 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder2.java index 920dd504d..8f48ed965 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SwitchOrder2 { - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "OrdrRef", required = true) @@ -50,7 +53,8 @@ public class SwitchOrder2 { protected ActiveOrHistoricCurrencyAndAmount ttlRedAmt; @XmlElement(name = "TtlSbcptAmt") protected ActiveOrHistoricCurrencyAndAmount ttlSbcptAmt; - @XmlElement(name = "XpryDtTm") + @XmlElement(name = "XpryDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar xpryDtTm; @XmlElement(name = "AddtlCshIn") @@ -73,7 +77,7 @@ public class SwitchOrder2 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -85,7 +89,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder2 setOrdrDtTm(XMLGregorianCalendar value) { @@ -198,7 +202,7 @@ public SwitchOrder2 setTtlSbcptAmt(ActiveOrHistoricCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtTm() { @@ -210,7 +214,7 @@ public XMLGregorianCalendar getXpryDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder2 setXpryDtTm(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder3.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder3.java index d8b5bef1a..538abcce9 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder3.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder3.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; @@ -52,7 +55,8 @@ public class SwitchOrder3 { @XmlElement(name = "MstrRef") protected String mstrRef; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "OrdrRef", required = true) @@ -67,12 +71,14 @@ public class SwitchOrder3 { protected ActiveOrHistoricCurrencyAndAmount ttlRedAmt; @XmlElement(name = "TtlSbcptAmt") protected ActiveOrHistoricCurrencyAndAmount ttlSbcptAmt; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -136,7 +142,7 @@ public SwitchOrder3 setMstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -148,7 +154,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder3 setOrdrDtTm(XMLGregorianCalendar value) { @@ -311,7 +317,7 @@ public SwitchOrder3 setTtlSbcptAmt(ActiveOrHistoricCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -323,7 +329,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder3 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -361,7 +367,7 @@ public SwitchOrder3 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -373,7 +379,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder3 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder4.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder4.java index 4fdd39c89..ad1ccb151 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder4.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder4.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; @@ -51,7 +54,8 @@ public class SwitchOrder4 { @XmlElement(name = "MstrRef") protected String mstrRef; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "OrdrRef", required = true) @@ -64,12 +68,14 @@ public class SwitchOrder4 { protected ActiveOrHistoricCurrencyAndAmount ttlRedAmt; @XmlElement(name = "TtlSbcptAmt") protected ActiveOrHistoricCurrencyAndAmount ttlSbcptAmt; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -133,7 +139,7 @@ public SwitchOrder4 setMstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -145,7 +151,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder4 setOrdrDtTm(XMLGregorianCalendar value) { @@ -283,7 +289,7 @@ public SwitchOrder4 setTtlSbcptAmt(ActiveOrHistoricCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -295,7 +301,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder4 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -333,7 +339,7 @@ public SwitchOrder4 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -345,7 +351,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder4 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder7.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder7.java index 1ec24a549..9c2f54fc9 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder7.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SwitchOrder7.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; @@ -52,7 +55,8 @@ public class SwitchOrder7 { @XmlElement(name = "MstrRef") protected String mstrRef; - @XmlElement(name = "OrdrDtTm") + @XmlElement(name = "OrdrDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ordrDtTm; @XmlElement(name = "PlcOfTrad") @@ -65,12 +69,14 @@ public class SwitchOrder7 { protected InvestmentAccount58 invstmtAcctDtls; @XmlElement(name = "RltdPtyDtls") protected List rltdPtyDtls; - @XmlElement(name = "ReqdFutrTradDt") + @XmlElement(name = "ReqdFutrTradDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdFutrTradDt; @XmlElement(name = "SttlmAmt") protected ActiveCurrencyAndAmount sttlmAmt; - @XmlElement(name = "CshSttlmDt") + @XmlElement(name = "CshSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar cshSttlmDt; @XmlElement(name = "SttlmMtd") @@ -135,7 +141,7 @@ public SwitchOrder7 setMstrRef(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getOrdrDtTm() { @@ -147,7 +153,7 @@ public XMLGregorianCalendar getOrdrDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder7 setOrdrDtTm(XMLGregorianCalendar value) { @@ -289,7 +295,7 @@ public List getRltdPtyDtls() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdFutrTradDt() { @@ -301,7 +307,7 @@ public XMLGregorianCalendar getReqdFutrTradDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder7 setReqdFutrTradDt(XMLGregorianCalendar value) { @@ -339,7 +345,7 @@ public SwitchOrder7 setSttlmAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCshSttlmDt() { @@ -351,7 +357,7 @@ public XMLGregorianCalendar getCshSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SwitchOrder7 setCshSttlmDt(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRegulatoryTimeStampGroup.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRegulatoryTimeStampGroup.java index afae9d14b..7c530dd11 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRegulatoryTimeStampGroup.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRegulatoryTimeStampGroup.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeRegulatoryTimeStampGroup { - @XmlElement(name = "TradRgltryTmStmp") + @XmlElement(name = "TradRgltryTmStmp", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tradRgltryTmStmp; @XmlElement(name = "TradRgltryTmStmpTp") @@ -49,7 +52,7 @@ public class TradeRegulatoryTimeStampGroup { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTradRgltryTmStmp() { @@ -61,7 +64,7 @@ public XMLGregorianCalendar getTradRgltryTmStmp() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeRegulatoryTimeStampGroup setTradRgltryTmStmp(XMLGregorianCalendar value) { diff --git a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation2.java b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation2.java index df3f92800..ec8ada65e 100644 --- a/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation2.java +++ b/model-setr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation2.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; @@ -38,12 +40,14 @@ public class YieldCalculation2 { protected CalculationType1Code clctnTp; @XmlElement(name = "RedPric") protected Price4 redPric; - @XmlElement(name = "ValDt") + @XmlElement(name = "ValDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar valDt; @XmlElement(name = "ValPrd") protected DateTimePeriodChoice valPrd; - @XmlElement(name = "ClctnDt") + @XmlElement(name = "ClctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar clctnDt; @@ -127,7 +131,7 @@ public YieldCalculation2 setRedPric(Price4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getValDt() { @@ -139,7 +143,7 @@ public XMLGregorianCalendar getValDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public YieldCalculation2 setValDt(XMLGregorianCalendar value) { @@ -177,7 +181,7 @@ public YieldCalculation2 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 YieldCalculation2 setClctnDt(XMLGregorianCalendar value) { diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100102.java index 19cd10896..12538df3d 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100102 parse(String xml) { - return ((MxSupl00100102) MxReadImpl.parse(MxSupl00100102 .class, xml, _classes)); + return ((MxSupl00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100103.java index c10b86edf..fdeb5f0e3 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100103 parse(String xml) { - return ((MxSupl00100103) MxReadImpl.parse(MxSupl00100103 .class, xml, _classes)); + return ((MxSupl00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100104.java index dc6892cc9..19ee26c96 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100104 parse(String xml) { - return ((MxSupl00100104) MxReadImpl.parse(MxSupl00100104 .class, xml, _classes)); + return ((MxSupl00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100105.java index a24cdc9af..32fb30e55 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100105 parse(String xml) { - return ((MxSupl00100105) MxReadImpl.parse(MxSupl00100105 .class, xml, _classes)); + return ((MxSupl00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100106.java index fe6af8b82..fda4efaa5 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100106 parse(String xml) { - return ((MxSupl00100106) MxReadImpl.parse(MxSupl00100106 .class, xml, _classes)); + return ((MxSupl00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100107.java index 4ee259fd4..3d9701e17 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100107 parse(String xml) { - return ((MxSupl00100107) MxReadImpl.parse(MxSupl00100107 .class, xml, _classes)); + return ((MxSupl00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100108.java index 288d7cd5d..f176a98b8 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100108 parse(String xml) { - return ((MxSupl00100108) MxReadImpl.parse(MxSupl00100108 .class, xml, _classes)); + return ((MxSupl00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100109.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100109.java index 958f4eeff..f532626a4 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100109.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100109 parse(String xml) { - return ((MxSupl00100109) MxReadImpl.parse(MxSupl00100109 .class, xml, _classes)); + return ((MxSupl00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100109 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100110.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100110.java index 8fa92cfd1..4801caf2c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100110.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100110 parse(String xml) { - return ((MxSupl00100110) MxReadImpl.parse(MxSupl00100110 .class, xml, _classes)); + return ((MxSupl00100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100110 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100111.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100111.java index 445fde20b..26744dd06 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100111.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100111.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100111 parse(String xml) { - return ((MxSupl00100111) MxReadImpl.parse(MxSupl00100111 .class, xml, _classes)); + return ((MxSupl00100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100111 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100112.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100112.java index 93d4fe7f2..6045bfd39 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100112.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100112.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100112 parse(String xml) { - return ((MxSupl00100112) MxReadImpl.parse(MxSupl00100112 .class, xml, _classes)); + return ((MxSupl00100112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100112 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100113.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100113.java index be00fe634..1cf868e95 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100113.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00100113.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00100113 parse(String xml) { - return ((MxSupl00100113) MxReadImpl.parse(MxSupl00100113 .class, xml, _classes)); + return ((MxSupl00100113) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100113 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00100113 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00100113) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00100113 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200102.java index e4917bb25..5df8d290c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00200102 parse(String xml) { - return ((MxSupl00200102) MxReadImpl.parse(MxSupl00200102 .class, xml, _classes)); + return ((MxSupl00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200103.java index 1d8940f0b..05387efea 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00200103 parse(String xml) { - return ((MxSupl00200103) MxReadImpl.parse(MxSupl00200103 .class, xml, _classes)); + return ((MxSupl00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200104.java index dddc338d3..797eae359 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00200104 parse(String xml) { - return ((MxSupl00200104) MxReadImpl.parse(MxSupl00200104 .class, xml, _classes)); + return ((MxSupl00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200105.java index 9910a91e7..407fa07b1 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00200105 parse(String xml) { - return ((MxSupl00200105) MxReadImpl.parse(MxSupl00200105 .class, xml, _classes)); + return ((MxSupl00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00200105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200106.java index a15ceede9..a25af1583 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00200106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00200106 parse(String xml) { - return ((MxSupl00200106) MxReadImpl.parse(MxSupl00200106 .class, xml, _classes)); + return ((MxSupl00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00200106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300102.java index 7c33c502a..f28dfe988 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00300102 parse(String xml) { - return ((MxSupl00300102) MxReadImpl.parse(MxSupl00300102 .class, xml, _classes)); + return ((MxSupl00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300103.java index 48517bf78..8c0708323 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00300103 parse(String xml) { - return ((MxSupl00300103) MxReadImpl.parse(MxSupl00300103 .class, xml, _classes)); + return ((MxSupl00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00400103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00400103.java index d87f562f6..df6898b6b 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00400103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00400103 parse(String xml) { - return ((MxSupl00400103) MxReadImpl.parse(MxSupl00400103 .class, xml, _classes)); + return ((MxSupl00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00500103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00500103.java index 075f3b8f7..703302cf4 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00500103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00500103 parse(String xml) { - return ((MxSupl00500103) MxReadImpl.parse(MxSupl00500103 .class, xml, _classes)); + return ((MxSupl00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600102.java index 667f72dec..b65e9511f 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600102 parse(String xml) { - return ((MxSupl00600102) MxReadImpl.parse(MxSupl00600102 .class, xml, _classes)); + return ((MxSupl00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600103.java index 78aeef0de..1e4b0cc09 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600103 parse(String xml) { - return ((MxSupl00600103) MxReadImpl.parse(MxSupl00600103 .class, xml, _classes)); + return ((MxSupl00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600104.java index 955990d4c..ade5a4244 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600104 parse(String xml) { - return ((MxSupl00600104) MxReadImpl.parse(MxSupl00600104 .class, xml, _classes)); + return ((MxSupl00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600105.java index 8731d0f7d..8cacca677 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600105 parse(String xml) { - return ((MxSupl00600105) MxReadImpl.parse(MxSupl00600105 .class, xml, _classes)); + return ((MxSupl00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600106.java index 6d3de48a0..1455840b9 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600106 parse(String xml) { - return ((MxSupl00600106) MxReadImpl.parse(MxSupl00600106 .class, xml, _classes)); + return ((MxSupl00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600107.java index de262d8f6..41d865b82 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600107 parse(String xml) { - return ((MxSupl00600107) MxReadImpl.parse(MxSupl00600107 .class, xml, _classes)); + return ((MxSupl00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600108.java index 81828eaa7..15dec8375 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600108 parse(String xml) { - return ((MxSupl00600108) MxReadImpl.parse(MxSupl00600108 .class, xml, _classes)); + return ((MxSupl00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600109.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600109.java index 2b307bbe5..f6ac10202 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600109.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600109 parse(String xml) { - return ((MxSupl00600109) MxReadImpl.parse(MxSupl00600109 .class, xml, _classes)); + return ((MxSupl00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600109 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600110.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600110.java index 5e9563e98..b0c2c691e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600110.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00600110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00600110 parse(String xml) { - return ((MxSupl00600110) MxReadImpl.parse(MxSupl00600110 .class, xml, _classes)); + return ((MxSupl00600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00600110 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700101.java index 2a04db08c..69d437411 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700101 parse(String xml) { - return ((MxSupl00700101) MxReadImpl.parse(MxSupl00700101 .class, xml, _classes)); + return ((MxSupl00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700102.java index ea778253a..6ec26b763 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700102 parse(String xml) { - return ((MxSupl00700102) MxReadImpl.parse(MxSupl00700102 .class, xml, _classes)); + return ((MxSupl00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700103.java index bf3ef7339..c4bb835fb 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700103 parse(String xml) { - return ((MxSupl00700103) MxReadImpl.parse(MxSupl00700103 .class, xml, _classes)); + return ((MxSupl00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700104.java index 65f7e69fa..5a041b53e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700104 parse(String xml) { - return ((MxSupl00700104) MxReadImpl.parse(MxSupl00700104 .class, xml, _classes)); + return ((MxSupl00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700105.java index a92849cb4..d5d6bf5ff 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700105 parse(String xml) { - return ((MxSupl00700105) MxReadImpl.parse(MxSupl00700105 .class, xml, _classes)); + return ((MxSupl00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700106.java index 57e9a3529..523a6199c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700106 parse(String xml) { - return ((MxSupl00700106) MxReadImpl.parse(MxSupl00700106 .class, xml, _classes)); + return ((MxSupl00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700107.java index 107b81fa4..953b4215b 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700107 parse(String xml) { - return ((MxSupl00700107) MxReadImpl.parse(MxSupl00700107 .class, xml, _classes)); + return ((MxSupl00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700108.java index ebf1e0133..552e2b3a8 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700108 parse(String xml) { - return ((MxSupl00700108) MxReadImpl.parse(MxSupl00700108 .class, xml, _classes)); + return ((MxSupl00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700109.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700109.java index f8fdb51a6..eaadc70a8 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700109.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700109 parse(String xml) { - return ((MxSupl00700109) MxReadImpl.parse(MxSupl00700109 .class, xml, _classes)); + return ((MxSupl00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700109 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700110.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700110.java index 359b40ef1..b8357e258 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700110.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00700110.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00700110 parse(String xml) { - return ((MxSupl00700110) MxReadImpl.parse(MxSupl00700110 .class, xml, _classes)); + return ((MxSupl00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00700110 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800101.java index a39e0ba71..4be82b64a 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800101 parse(String xml) { - return ((MxSupl00800101) MxReadImpl.parse(MxSupl00800101 .class, xml, _classes)); + return ((MxSupl00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800102.java index f0c5a1dc8..15dbec845 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800102 parse(String xml) { - return ((MxSupl00800102) MxReadImpl.parse(MxSupl00800102 .class, xml, _classes)); + return ((MxSupl00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800103.java index 32cb82680..b1cfcd747 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800103 parse(String xml) { - return ((MxSupl00800103) MxReadImpl.parse(MxSupl00800103 .class, xml, _classes)); + return ((MxSupl00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800104.java index ee3540c9b..b06948515 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800104 parse(String xml) { - return ((MxSupl00800104) MxReadImpl.parse(MxSupl00800104 .class, xml, _classes)); + return ((MxSupl00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800105.java index 12384b536..c2ca1cfdb 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800105 parse(String xml) { - return ((MxSupl00800105) MxReadImpl.parse(MxSupl00800105 .class, xml, _classes)); + return ((MxSupl00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800106.java index 443fceda2..4eae4fa2c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00800106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00800106 parse(String xml) { - return ((MxSupl00800106) MxReadImpl.parse(MxSupl00800106 .class, xml, _classes)); + return ((MxSupl00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00800106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900101.java index 02d19226a..eb71172ba 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900101 parse(String xml) { - return ((MxSupl00900101) MxReadImpl.parse(MxSupl00900101 .class, xml, _classes)); + return ((MxSupl00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900102.java index 81911812a..a5608883d 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900102 parse(String xml) { - return ((MxSupl00900102) MxReadImpl.parse(MxSupl00900102 .class, xml, _classes)); + return ((MxSupl00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900103.java index 4bdb62b7b..fe78fce80 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900103 parse(String xml) { - return ((MxSupl00900103) MxReadImpl.parse(MxSupl00900103 .class, xml, _classes)); + return ((MxSupl00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900104.java index d57feaab5..da92c7940 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900104 parse(String xml) { - return ((MxSupl00900104) MxReadImpl.parse(MxSupl00900104 .class, xml, _classes)); + return ((MxSupl00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900105.java index 4a0cac3ed..9176fee25 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900105 parse(String xml) { - return ((MxSupl00900105) MxReadImpl.parse(MxSupl00900105 .class, xml, _classes)); + return ((MxSupl00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900106.java index f985f998b..c259faed8 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900106 parse(String xml) { - return ((MxSupl00900106) MxReadImpl.parse(MxSupl00900106 .class, xml, _classes)); + return ((MxSupl00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900107.java index 84ed5b7ff..f26ecb3c4 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900107 parse(String xml) { - return ((MxSupl00900107) MxReadImpl.parse(MxSupl00900107 .class, xml, _classes)); + return ((MxSupl00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900108.java index 1e3933bc5..4d17919dd 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900108 parse(String xml) { - return ((MxSupl00900108) MxReadImpl.parse(MxSupl00900108 .class, xml, _classes)); + return ((MxSupl00900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900109.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900109.java index 4ae493fe0..20223973f 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900109.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl00900109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl00900109 parse(String xml) { - return ((MxSupl00900109) MxReadImpl.parse(MxSupl00900109 .class, xml, _classes)); + return ((MxSupl00900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl00900109 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl00900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl00900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000101.java index 278d38e64..585365f76 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000101 parse(String xml) { - return ((MxSupl01000101) MxReadImpl.parse(MxSupl01000101 .class, xml, _classes)); + return ((MxSupl01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000102.java index 12f6a728f..f15c2db7e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000102 parse(String xml) { - return ((MxSupl01000102) MxReadImpl.parse(MxSupl01000102 .class, xml, _classes)); + return ((MxSupl01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000103.java index c2420d52f..d9e6da08e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000103 parse(String xml) { - return ((MxSupl01000103) MxReadImpl.parse(MxSupl01000103 .class, xml, _classes)); + return ((MxSupl01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000104.java index fb5ad28ca..42b1dec89 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000104 parse(String xml) { - return ((MxSupl01000104) MxReadImpl.parse(MxSupl01000104 .class, xml, _classes)); + return ((MxSupl01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000105.java index c5ac4da49..d6ca7e9f1 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000105 parse(String xml) { - return ((MxSupl01000105) MxReadImpl.parse(MxSupl01000105 .class, xml, _classes)); + return ((MxSupl01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000106.java index cdb5e71ad..0912e0855 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000106 parse(String xml) { - return ((MxSupl01000106) MxReadImpl.parse(MxSupl01000106 .class, xml, _classes)); + return ((MxSupl01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000107.java index 1b6006739..9f678ba2e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000107 parse(String xml) { - return ((MxSupl01000107) MxReadImpl.parse(MxSupl01000107 .class, xml, _classes)); + return ((MxSupl01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000108.java index 94f10408d..15d356b07 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01000108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01000108 parse(String xml) { - return ((MxSupl01000108) MxReadImpl.parse(MxSupl01000108 .class, xml, _classes)); + return ((MxSupl01000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01000108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100101.java index b5882259f..f31c77004 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100101 parse(String xml) { - return ((MxSupl01100101) MxReadImpl.parse(MxSupl01100101 .class, xml, _classes)); + return ((MxSupl01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100102.java index b8f342e2c..b8aa55a9e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100102 parse(String xml) { - return ((MxSupl01100102) MxReadImpl.parse(MxSupl01100102 .class, xml, _classes)); + return ((MxSupl01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100103.java index 3432e992a..363d9ddfc 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100103 parse(String xml) { - return ((MxSupl01100103) MxReadImpl.parse(MxSupl01100103 .class, xml, _classes)); + return ((MxSupl01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100104.java index be7c0e2c1..77b0f0fd5 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100104 parse(String xml) { - return ((MxSupl01100104) MxReadImpl.parse(MxSupl01100104 .class, xml, _classes)); + return ((MxSupl01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100105.java index a9c9296ed..b5160b374 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100105 parse(String xml) { - return ((MxSupl01100105) MxReadImpl.parse(MxSupl01100105 .class, xml, _classes)); + return ((MxSupl01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100106.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100106.java index 7bfe68490..bf9d97e66 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100106.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100106.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100106 parse(String xml) { - return ((MxSupl01100106) MxReadImpl.parse(MxSupl01100106 .class, xml, _classes)); + return ((MxSupl01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100106 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100107.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100107.java index 0b29f26f0..145fd5e77 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100107.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100107.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100107 parse(String xml) { - return ((MxSupl01100107) MxReadImpl.parse(MxSupl01100107 .class, xml, _classes)); + return ((MxSupl01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100107 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100108.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100108.java index 79df7d2d6..d02f868fb 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100108.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100108.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100108 parse(String xml) { - return ((MxSupl01100108) MxReadImpl.parse(MxSupl01100108 .class, xml, _classes)); + return ((MxSupl01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100108 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100109.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100109.java index 6a2a92198..3cd35abf4 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100109.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01100109.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01100109 parse(String xml) { - return ((MxSupl01100109) MxReadImpl.parse(MxSupl01100109 .class, xml, _classes)); + return ((MxSupl01100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01100109 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01100109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01100109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01700101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01700101.java index 9217eb9be..9e86fc874 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01700101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl01700101 parse(String xml) { - return ((MxSupl01700101) MxReadImpl.parse(MxSupl01700101 .class, xml, _classes)); + return ((MxSupl01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500101.java index d1ac5982b..2aaa9e7a5 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl02500101 parse(String xml) { - return ((MxSupl02500101) MxReadImpl.parse(MxSupl02500101 .class, xml, _classes)); + return ((MxSupl02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl02500101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500102.java index e9207fd48..da4bb4680 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl02500102 parse(String xml) { - return ((MxSupl02500102) MxReadImpl.parse(MxSupl02500102 .class, xml, _classes)); + return ((MxSupl02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl02500102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500103.java index e38bdb78a..dcaf4e242 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl02500103 parse(String xml) { - return ((MxSupl02500103) MxReadImpl.parse(MxSupl02500103 .class, xml, _classes)); + return ((MxSupl02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl02500103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02700101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02700101.java index 615380174..dffeb4291 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02700101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl02700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl02700101 parse(String xml) { - return ((MxSupl02700101) MxReadImpl.parse(MxSupl02700101 .class, xml, _classes)); + return ((MxSupl02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000101.java index e49ffdafb..848a52cd4 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03000101 parse(String xml) { - return ((MxSupl03000101) MxReadImpl.parse(MxSupl03000101 .class, xml, _classes)); + return ((MxSupl03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03000101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000102.java index f4415d12a..b9874d40c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03000102 parse(String xml) { - return ((MxSupl03000102) MxReadImpl.parse(MxSupl03000102 .class, xml, _classes)); + return ((MxSupl03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03000102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000103.java index 01511c8dc..a2d033716 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03000103 parse(String xml) { - return ((MxSupl03000103) MxReadImpl.parse(MxSupl03000103 .class, xml, _classes)); + return ((MxSupl03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03000103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000104.java index f74cf1d2c..f135f340c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03000104 parse(String xml) { - return ((MxSupl03000104) MxReadImpl.parse(MxSupl03000104 .class, xml, _classes)); + return ((MxSupl03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03000104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000105.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000105.java index a2bbc045a..088a836e3 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000105.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03000105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03000105 parse(String xml) { - return ((MxSupl03000105) MxReadImpl.parse(MxSupl03000105 .class, xml, _classes)); + return ((MxSupl03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03000105 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100101.java index 3c79666f8..45d726bb2 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03100101 parse(String xml) { - return ((MxSupl03100101) MxReadImpl.parse(MxSupl03100101 .class, xml, _classes)); + return ((MxSupl03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03100101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100102.java index 9609104af..751c72f7a 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03100102 parse(String xml) { - return ((MxSupl03100102) MxReadImpl.parse(MxSupl03100102 .class, xml, _classes)); + return ((MxSupl03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03100102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100103.java index edd3f151e..b6cf07c81 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03100103 parse(String xml) { - return ((MxSupl03100103) MxReadImpl.parse(MxSupl03100103 .class, xml, _classes)); + return ((MxSupl03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03100103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100104.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100104.java index f1648a506..d116e493d 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100104.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03100104 parse(String xml) { - return ((MxSupl03100104) MxReadImpl.parse(MxSupl03100104 .class, xml, _classes)); + return ((MxSupl03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03100104 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200101.java index cb641e996..314ebd58b 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03200101 parse(String xml) { - return ((MxSupl03200101) MxReadImpl.parse(MxSupl03200101 .class, xml, _classes)); + return ((MxSupl03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03200101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200102.java index 5f45f95dd..e9e11ab0e 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03200102 parse(String xml) { - return ((MxSupl03200102) MxReadImpl.parse(MxSupl03200102 .class, xml, _classes)); + return ((MxSupl03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03200102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300101.java index a85694230..b2dfe4340 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03300101 parse(String xml) { - return ((MxSupl03300101) MxReadImpl.parse(MxSupl03300101 .class, xml, _classes)); + return ((MxSupl03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03300101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300102.java index 61504180f..d85e62c23 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03300102 parse(String xml) { - return ((MxSupl03300102) MxReadImpl.parse(MxSupl03300102 .class, xml, _classes)); + return ((MxSupl03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03300102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400101.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400101.java index 9f7bca698..767c3e23c 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400101.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03400101 parse(String xml) { - return ((MxSupl03400101) MxReadImpl.parse(MxSupl03400101 .class, xml, _classes)); + return ((MxSupl03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03400101 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400102.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400102.java index ba195c444..bf0db2036 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400102.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03400102 parse(String xml) { - return ((MxSupl03400102) MxReadImpl.parse(MxSupl03400102 .class, xml, _classes)); + return ((MxSupl03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03400102 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400103.java b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400103.java index fa46a89cd..4c8527ea9 100644 --- a/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400103.java +++ b/model-supl-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxSupl03400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxSupl03400103 parse(String xml) { - return ((MxSupl03400103) MxReadImpl.parse(MxSupl03400103 .class, xml, _classes)); + return ((MxSupl03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxSupl03400103 parse(String xml, MxReadConfiguration conf) { + return ((MxSupl03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxSupl03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD1.java index b85a4bb16..1a85838c1 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AccountBalanceExtensionSD1 { protected String plcAndNm; @XmlElement(name = "TxPos") protected AdjustedBalanceTypeSD1Choice txPos; - @XmlElement(name = "AsOfDt") + @XmlElement(name = "AsOfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar asOfDt; - @XmlElement(name = "DlvryDt") + @XmlElement(name = "DlvryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dlvryDt; @XmlElement(name = "ContraPtcptNb") @@ -103,7 +107,7 @@ public AccountBalanceExtensionSD1 setTxPos(AdjustedBalanceTypeSD1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAsOfDt() { @@ -115,7 +119,7 @@ public XMLGregorianCalendar getAsOfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AccountBalanceExtensionSD1 setAsOfDt(XMLGregorianCalendar value) { @@ -128,7 +132,7 @@ public AccountBalanceExtensionSD1 setAsOfDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDlvryDt() { @@ -140,7 +144,7 @@ public XMLGregorianCalendar getDlvryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AccountBalanceExtensionSD1 setDlvryDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD2.java index 338aaa463..e6a6137c5 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceExtensionSD2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AccountBalanceExtensionSD2 { protected String plcAndNm; @XmlElement(name = "TxPos") protected AdjustedBalanceTypeSD2Choice txPos; - @XmlElement(name = "AsOfDt") + @XmlElement(name = "AsOfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar asOfDt; @XmlElement(name = "ContraPtcptNb") @@ -93,7 +96,7 @@ public AccountBalanceExtensionSD2 setTxPos(AdjustedBalanceTypeSD2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAsOfDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getAsOfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AccountBalanceExtensionSD2 setAsOfDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceSD5.java index 2d69a01a5..ef9ecb10b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountBalanceSD5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AccountBalanceSD5 { protected String plcAndNm; @XmlElement(name = "TxPos") protected AdjustedBalanceTypeSD1Choice txPos; - @XmlElement(name = "AsOfDt") + @XmlElement(name = "AsOfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar asOfDt; @XmlElement(name = "ContraPtcptNb") @@ -93,7 +96,7 @@ public AccountBalanceSD5 setTxPos(AdjustedBalanceTypeSD1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAsOfDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getAsOfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AccountBalanceSD5 setAsOfDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountRole1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountRole1.java index 793a288bc..1d3583766 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountRole1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountRole1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AccountRole1 { protected PartyIdentification41 pty; @XmlElement(name = "OwnrTp", required = true) protected OwnerType1 ownrTp; - @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 AccountRole1 setOwnrTp(OwnerType1 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 AccountRole1 setStartDt(XMLGregorianCalendar value) { @@ -119,7 +123,7 @@ public AccountRole1 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 AccountRole1 setEndDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccrualPeriodType1Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccrualPeriodType1Code.java index ba33c4e48..2507913ee 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccrualPeriodType1Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccrualPeriodType1Code.java @@ -67,7 +67,7 @@ public enum AccrualPeriodType1Code { DFLT, /** - * Payment has not been done. + * Payment is omitted. * */ OMIT; diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails8.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails8.java index 5e7d7eb13..1ca0e237b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails8.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails8.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CardPaymentTransactionDetails8 { protected PaymentContext3 pmtCntxt; @XmlElement(name = "MrchntCtgyCd") protected String mrchntCtgyCd; - @XmlElement(name = "TxDtTm") + @XmlElement(name = "TxDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txDtTm; @XmlElement(name = "SaleRefNb") @@ -165,7 +168,7 @@ public CardPaymentTransactionDetails8 setMrchntCtgyCd(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxDtTm() { @@ -177,7 +180,7 @@ public XMLGregorianCalendar getTxDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CardPaymentTransactionDetails8 setTxDtTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD1.java index b6c46cb2d..7b6f7a9a5 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionCancellationSD1 { @XmlElement(name = "LkgTp", required = true) @XmlSchemaType(name = "string") protected DTCCLinkType1Code lkgTp; - @XmlElement(name = "LkAddedDt", required = true) + @XmlElement(name = "LkAddedDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkAddedDt; - @XmlElement(name = "LkModfdDt") + @XmlElement(name = "LkModfdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkModfdDt; @@ -123,7 +127,7 @@ public CorporateActionCancellationSD1 setLkgTp(DTCCLinkType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkAddedDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getLkAddedDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionCancellationSD1 setLkAddedDt(XMLGregorianCalendar value) { @@ -148,7 +152,7 @@ public CorporateActionCancellationSD1 setLkAddedDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkModfdDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getLkModfdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionCancellationSD1 setLkModfdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD3.java index c7149bd6f..a846b5cee 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionCancellationSD3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionCancellationSD3 { @XmlElement(name = "LkgTp", required = true) @XmlSchemaType(name = "string") protected DTCCLinkType1Code lkgTp; - @XmlElement(name = "LkAddedDt", required = true) + @XmlElement(name = "LkAddedDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkAddedDt; - @XmlElement(name = "LkModfdDt") + @XmlElement(name = "LkModfdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkModfdDt; @@ -123,7 +127,7 @@ public CorporateActionCancellationSD3 setLkgTp(DTCCLinkType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkAddedDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getLkAddedDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionCancellationSD3 setLkAddedDt(XMLGregorianCalendar value) { @@ -148,7 +152,7 @@ public CorporateActionCancellationSD3 setLkAddedDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkModfdDt() { @@ -160,7 +164,7 @@ public XMLGregorianCalendar getLkModfdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionCancellationSD3 setLkModfdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD2.java index 28a89cc87..9f3c2309b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD2.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 CorporateActionConfirmationSecuritiesMovementDetailsSD2 { protected DTCAdjustmentPaymentSubReason1Code subRsnCd; @XmlElement(name = "ContraPtcptNb") protected String contraPtcptNb; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "PstngDt") @@ -212,7 +215,7 @@ public CorporateActionConfirmationSecuritiesMovementDetailsSD2 setContraPtcptNb( * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -224,7 +227,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionConfirmationSecuritiesMovementDetailsSD2 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD3.java index c98206f32..2fc12fa37 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD3.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; @@ -55,7 +57,8 @@ public class CorporateActionConfirmationSecuritiesMovementDetailsSD3 { protected DTCAdjustmentPaymentSubReason1Code subRsnCd; @XmlElement(name = "ContraPtcptNb") protected String contraPtcptNb; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "PstngDt") @@ -248,7 +251,7 @@ public CorporateActionConfirmationSecuritiesMovementDetailsSD3 setContraPtcptNb( * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -260,7 +263,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionConfirmationSecuritiesMovementDetailsSD3 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD4.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD4.java index 74492d14f..b0429d540 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD4.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD4.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; @@ -54,7 +56,8 @@ public class CorporateActionConfirmationSecuritiesMovementDetailsSD4 { protected DTCAdjustmentPaymentSubReason1Code subRsnCd; @XmlElement(name = "ContraPtcptNb") protected String contraPtcptNb; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "PstngDt") @@ -244,7 +247,7 @@ public CorporateActionConfirmationSecuritiesMovementDetailsSD4 setContraPtcptNb( * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -256,7 +259,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionConfirmationSecuritiesMovementDetailsSD4 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD5.java index fafc25ef2..bea71e19a 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD5.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; @@ -55,7 +57,8 @@ public class CorporateActionConfirmationSecuritiesMovementDetailsSD5 { protected DTCAdjustmentPaymentSubReason1Code subRsnCd; @XmlElement(name = "ContraPtcptNb") protected String contraPtcptNb; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "PstngDt") @@ -247,7 +250,7 @@ public CorporateActionConfirmationSecuritiesMovementDetailsSD5 setContraPtcptNb( * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -259,7 +262,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionConfirmationSecuritiesMovementDetailsSD5 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD6.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD6.java index c990ad1c9..ac26ecd6e 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD6.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionConfirmationSecuritiesMovementDetailsSD6.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; @@ -55,7 +57,8 @@ public class CorporateActionConfirmationSecuritiesMovementDetailsSD6 { protected DTCAdjustmentPaymentSubReason2Code subRsnCd; @XmlElement(name = "ContraPtcptNb") protected String contraPtcptNb; - @XmlElement(name = "MtrtyDt") + @XmlElement(name = "MtrtyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtrtyDt; @XmlElement(name = "PstngDt") @@ -247,7 +250,7 @@ public CorporateActionConfirmationSecuritiesMovementDetailsSD6 setContraPtcptNb( * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtrtyDt() { @@ -259,7 +262,7 @@ public XMLGregorianCalendar getMtrtyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionConfirmationSecuritiesMovementDetailsSD6 setMtrtyDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD10.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD10.java index 421712418..a945813d0 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD10.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD10.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,40 +41,52 @@ public class CorporateActionDateSD10 { @XmlElement(name = "PlcAndNm") protected String plcAndNm; - @XmlElement(name = "DTCLastDayForEarlyRed") + @XmlElement(name = "DTCLastDayForEarlyRed", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcLastDayForEarlyRed; - @XmlElement(name = "DTCPosCaptrDt") + @XmlElement(name = "DTCPosCaptrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcPosCaptrDt; - @XmlElement(name = "NewYorkCutOffDt") + @XmlElement(name = "NewYorkCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newYorkCutOffDt; - @XmlElement(name = "DTCXtndedCutOffDt") + @XmlElement(name = "DTCXtndedCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcXtndedCutOffDt; - @XmlElement(name = "FctvDtByXchg") + @XmlElement(name = "FctvDtByXchg", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDtByXchg; - @XmlElement(name = "DtDclrdWrthls") + @XmlElement(name = "DtDclrdWrthls", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtDclrdWrthls; - @XmlElement(name = "DelWrthlsSctyDt") + @XmlElement(name = "DelWrthlsSctyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar delWrthlsSctyDt; - @XmlElement(name = "DTCExitDt") + @XmlElement(name = "DTCExitDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcExitDt; - @XmlElement(name = "SbcptBegnDt") + @XmlElement(name = "SbcptBegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sbcptBegnDt; - @XmlElement(name = "RghtsDstrbtnAsOfDt") + @XmlElement(name = "RghtsDstrbtnAsOfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rghtsDstrbtnAsOfDt; - @XmlElement(name = "RghtsDstrbtnDt") + @XmlElement(name = "RghtsDstrbtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rghtsDstrbtnDt; - @XmlElement(name = "TmgDt") + @XmlElement(name = "TmgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar tmgDt; @@ -106,7 +120,7 @@ public CorporateActionDateSD10 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { @@ -118,7 +132,7 @@ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDTCLastDayForEarlyRed(XMLGregorianCalendar value) { @@ -131,7 +145,7 @@ public CorporateActionDateSD10 setDTCLastDayForEarlyRed(XMLGregorianCalendar val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCPosCaptrDt() { @@ -143,7 +157,7 @@ public XMLGregorianCalendar getDTCPosCaptrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDTCPosCaptrDt(XMLGregorianCalendar value) { @@ -156,7 +170,7 @@ public CorporateActionDateSD10 setDTCPosCaptrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewYorkCutOffDt() { @@ -168,7 +182,7 @@ public XMLGregorianCalendar getNewYorkCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setNewYorkCutOffDt(XMLGregorianCalendar value) { @@ -181,7 +195,7 @@ public CorporateActionDateSD10 setNewYorkCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCXtndedCutOffDt() { @@ -193,7 +207,7 @@ public XMLGregorianCalendar getDTCXtndedCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { @@ -206,7 +220,7 @@ public CorporateActionDateSD10 setDTCXtndedCutOffDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDtByXchg() { @@ -218,7 +232,7 @@ public XMLGregorianCalendar getFctvDtByXchg() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setFctvDtByXchg(XMLGregorianCalendar value) { @@ -231,7 +245,7 @@ public CorporateActionDateSD10 setFctvDtByXchg(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtDclrdWrthls() { @@ -243,7 +257,7 @@ public XMLGregorianCalendar getDtDclrdWrthls() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDtDclrdWrthls(XMLGregorianCalendar value) { @@ -256,7 +270,7 @@ public CorporateActionDateSD10 setDtDclrdWrthls(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDelWrthlsSctyDt() { @@ -268,7 +282,7 @@ public XMLGregorianCalendar getDelWrthlsSctyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDelWrthlsSctyDt(XMLGregorianCalendar value) { @@ -281,7 +295,7 @@ public CorporateActionDateSD10 setDelWrthlsSctyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCExitDt() { @@ -293,7 +307,7 @@ public XMLGregorianCalendar getDTCExitDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setDTCExitDt(XMLGregorianCalendar value) { @@ -306,7 +320,7 @@ public CorporateActionDateSD10 setDTCExitDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSbcptBegnDt() { @@ -318,7 +332,7 @@ public XMLGregorianCalendar getSbcptBegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setSbcptBegnDt(XMLGregorianCalendar value) { @@ -331,7 +345,7 @@ public CorporateActionDateSD10 setSbcptBegnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRghtsDstrbtnAsOfDt() { @@ -343,7 +357,7 @@ public XMLGregorianCalendar getRghtsDstrbtnAsOfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setRghtsDstrbtnAsOfDt(XMLGregorianCalendar value) { @@ -356,7 +370,7 @@ public CorporateActionDateSD10 setRghtsDstrbtnAsOfDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRghtsDstrbtnDt() { @@ -368,7 +382,7 @@ public XMLGregorianCalendar getRghtsDstrbtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setRghtsDstrbtnDt(XMLGregorianCalendar value) { @@ -381,7 +395,7 @@ public CorporateActionDateSD10 setRghtsDstrbtnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTmgDt() { @@ -393,7 +407,7 @@ public XMLGregorianCalendar getTmgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD10 setTmgDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD11.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD11.java index 3927fd0fa..6ddd2f933 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD11.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD11.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionDateSD11 { protected DateFormat49Choice dtcEarlyCoverPrtctXprtnDt; @XmlElement(name = "PrcToDt") protected DateFormat49Choice prcToDt; - @XmlElement(name = "DTCEarlstPmtDt") + @XmlElement(name = "DTCEarlstPmtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcEarlstPmtDt; @@ -258,7 +261,7 @@ public CorporateActionDateSD11 setPrcToDt(DateFormat49Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCEarlstPmtDt() { @@ -270,7 +273,7 @@ public XMLGregorianCalendar getDTCEarlstPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD11 setDTCEarlstPmtDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD3.java index facaf950e..ba9abad56 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,37 +40,48 @@ public class CorporateActionDateSD3 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "DTCLastDayForEarlyRed") + @XmlElement(name = "DTCLastDayForEarlyRed", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcLastDayForEarlyRed; - @XmlElement(name = "DTCPosCaptrDt") + @XmlElement(name = "DTCPosCaptrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcPosCaptrDt; - @XmlElement(name = "NewYorkCutOffDt") + @XmlElement(name = "NewYorkCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newYorkCutOffDt; - @XmlElement(name = "DTCXtndedCutOffDt") + @XmlElement(name = "DTCXtndedCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcXtndedCutOffDt; - @XmlElement(name = "FctvDtByXchg") + @XmlElement(name = "FctvDtByXchg", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDtByXchg; - @XmlElement(name = "DtDclrdWrthls") + @XmlElement(name = "DtDclrdWrthls", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtDclrdWrthls; - @XmlElement(name = "DelWrthlsSctyDt") + @XmlElement(name = "DelWrthlsSctyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar delWrthlsSctyDt; - @XmlElement(name = "DTCExitDt") + @XmlElement(name = "DTCExitDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcExitDt; - @XmlElement(name = "SbcptBegnDt") + @XmlElement(name = "SbcptBegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sbcptBegnDt; - @XmlElement(name = "FilgDt") + @XmlElement(name = "FilgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar filgDt; - @XmlElement(name = "HrgDt") + @XmlElement(name = "HrgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar hrgDt; @@ -102,7 +115,7 @@ public CorporateActionDateSD3 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { @@ -114,7 +127,7 @@ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDTCLastDayForEarlyRed(XMLGregorianCalendar value) { @@ -127,7 +140,7 @@ public CorporateActionDateSD3 setDTCLastDayForEarlyRed(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCPosCaptrDt() { @@ -139,7 +152,7 @@ public XMLGregorianCalendar getDTCPosCaptrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDTCPosCaptrDt(XMLGregorianCalendar value) { @@ -152,7 +165,7 @@ public CorporateActionDateSD3 setDTCPosCaptrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewYorkCutOffDt() { @@ -164,7 +177,7 @@ public XMLGregorianCalendar getNewYorkCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setNewYorkCutOffDt(XMLGregorianCalendar value) { @@ -177,7 +190,7 @@ public CorporateActionDateSD3 setNewYorkCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCXtndedCutOffDt() { @@ -189,7 +202,7 @@ public XMLGregorianCalendar getDTCXtndedCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { @@ -202,7 +215,7 @@ public CorporateActionDateSD3 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDtByXchg() { @@ -214,7 +227,7 @@ public XMLGregorianCalendar getFctvDtByXchg() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setFctvDtByXchg(XMLGregorianCalendar value) { @@ -227,7 +240,7 @@ public CorporateActionDateSD3 setFctvDtByXchg(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtDclrdWrthls() { @@ -239,7 +252,7 @@ public XMLGregorianCalendar getDtDclrdWrthls() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDtDclrdWrthls(XMLGregorianCalendar value) { @@ -252,7 +265,7 @@ public CorporateActionDateSD3 setDtDclrdWrthls(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDelWrthlsSctyDt() { @@ -264,7 +277,7 @@ public XMLGregorianCalendar getDelWrthlsSctyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDelWrthlsSctyDt(XMLGregorianCalendar value) { @@ -277,7 +290,7 @@ public CorporateActionDateSD3 setDelWrthlsSctyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCExitDt() { @@ -289,7 +302,7 @@ public XMLGregorianCalendar getDTCExitDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setDTCExitDt(XMLGregorianCalendar value) { @@ -302,7 +315,7 @@ public CorporateActionDateSD3 setDTCExitDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSbcptBegnDt() { @@ -314,7 +327,7 @@ public XMLGregorianCalendar getSbcptBegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setSbcptBegnDt(XMLGregorianCalendar value) { @@ -327,7 +340,7 @@ public CorporateActionDateSD3 setSbcptBegnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFilgDt() { @@ -339,7 +352,7 @@ public XMLGregorianCalendar getFilgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setFilgDt(XMLGregorianCalendar value) { @@ -352,7 +365,7 @@ public CorporateActionDateSD3 setFilgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getHrgDt() { @@ -364,7 +377,7 @@ public XMLGregorianCalendar getHrgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD3 setHrgDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD4.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD4.java index 24da67224..f2d3dfa23 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD4.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,22 +35,28 @@ public class CorporateActionDateSD4 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "IntrmAcctgStartDt") + @XmlElement(name = "IntrmAcctgStartDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar intrmAcctgStartDt; - @XmlElement(name = "DlistgDt") + @XmlElement(name = "DlistgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dlistgDt; - @XmlElement(name = "ExrcPrdBegnDt") + @XmlElement(name = "ExrcPrdBegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar exrcPrdBegnDt; - @XmlElement(name = "ObjctnDt") + @XmlElement(name = "ObjctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar objctnDt; - @XmlElement(name = "ExclsnDt") + @XmlElement(name = "ExclsnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar exclsnDt; - @XmlElement(name = "ProofOfClmFilgDt") + @XmlElement(name = "ProofOfClmFilgDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar proofOfClmFilgDt; @@ -82,7 +90,7 @@ public CorporateActionDateSD4 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntrmAcctgStartDt() { @@ -94,7 +102,7 @@ public XMLGregorianCalendar getIntrmAcctgStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setIntrmAcctgStartDt(XMLGregorianCalendar value) { @@ -107,7 +115,7 @@ public CorporateActionDateSD4 setIntrmAcctgStartDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDlistgDt() { @@ -119,7 +127,7 @@ public XMLGregorianCalendar getDlistgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setDlistgDt(XMLGregorianCalendar value) { @@ -132,7 +140,7 @@ public CorporateActionDateSD4 setDlistgDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExrcPrdBegnDt() { @@ -144,7 +152,7 @@ public XMLGregorianCalendar getExrcPrdBegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setExrcPrdBegnDt(XMLGregorianCalendar value) { @@ -157,7 +165,7 @@ public CorporateActionDateSD4 setExrcPrdBegnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getObjctnDt() { @@ -169,7 +177,7 @@ public XMLGregorianCalendar getObjctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setObjctnDt(XMLGregorianCalendar value) { @@ -182,7 +190,7 @@ public CorporateActionDateSD4 setObjctnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExclsnDt() { @@ -194,7 +202,7 @@ public XMLGregorianCalendar getExclsnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setExclsnDt(XMLGregorianCalendar value) { @@ -207,7 +215,7 @@ public CorporateActionDateSD4 setExclsnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getProofOfClmFilgDt() { @@ -219,7 +227,7 @@ public XMLGregorianCalendar getProofOfClmFilgDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD4 setProofOfClmFilgDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD5.java index c8e96bc9c..491f5cb2c 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,31 +38,40 @@ public class CorporateActionDateSD5 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "DTCLastDayForEarlyRed") + @XmlElement(name = "DTCLastDayForEarlyRed", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcLastDayForEarlyRed; - @XmlElement(name = "DTCPosCaptrDt") + @XmlElement(name = "DTCPosCaptrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcPosCaptrDt; - @XmlElement(name = "NewYorkCutOffDt") + @XmlElement(name = "NewYorkCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newYorkCutOffDt; - @XmlElement(name = "DTCXtndedCutOffDt") + @XmlElement(name = "DTCXtndedCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcXtndedCutOffDt; - @XmlElement(name = "FctvDtByXchg") + @XmlElement(name = "FctvDtByXchg", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDtByXchg; - @XmlElement(name = "DtDclrdWrthls") + @XmlElement(name = "DtDclrdWrthls", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtDclrdWrthls; - @XmlElement(name = "DelWrthlsSctyDt") + @XmlElement(name = "DelWrthlsSctyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar delWrthlsSctyDt; - @XmlElement(name = "DTCExitDt") + @XmlElement(name = "DTCExitDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcExitDt; - @XmlElement(name = "SbcptBegnDt") + @XmlElement(name = "SbcptBegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sbcptBegnDt; @@ -94,7 +105,7 @@ public CorporateActionDateSD5 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { @@ -106,7 +117,7 @@ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDTCLastDayForEarlyRed(XMLGregorianCalendar value) { @@ -119,7 +130,7 @@ public CorporateActionDateSD5 setDTCLastDayForEarlyRed(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCPosCaptrDt() { @@ -131,7 +142,7 @@ public XMLGregorianCalendar getDTCPosCaptrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDTCPosCaptrDt(XMLGregorianCalendar value) { @@ -144,7 +155,7 @@ public CorporateActionDateSD5 setDTCPosCaptrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewYorkCutOffDt() { @@ -156,7 +167,7 @@ public XMLGregorianCalendar getNewYorkCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setNewYorkCutOffDt(XMLGregorianCalendar value) { @@ -169,7 +180,7 @@ public CorporateActionDateSD5 setNewYorkCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCXtndedCutOffDt() { @@ -181,7 +192,7 @@ public XMLGregorianCalendar getDTCXtndedCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { @@ -194,7 +205,7 @@ public CorporateActionDateSD5 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDtByXchg() { @@ -206,7 +217,7 @@ public XMLGregorianCalendar getFctvDtByXchg() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setFctvDtByXchg(XMLGregorianCalendar value) { @@ -219,7 +230,7 @@ public CorporateActionDateSD5 setFctvDtByXchg(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtDclrdWrthls() { @@ -231,7 +242,7 @@ public XMLGregorianCalendar getDtDclrdWrthls() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDtDclrdWrthls(XMLGregorianCalendar value) { @@ -244,7 +255,7 @@ public CorporateActionDateSD5 setDtDclrdWrthls(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDelWrthlsSctyDt() { @@ -256,7 +267,7 @@ public XMLGregorianCalendar getDelWrthlsSctyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDelWrthlsSctyDt(XMLGregorianCalendar value) { @@ -269,7 +280,7 @@ public CorporateActionDateSD5 setDelWrthlsSctyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCExitDt() { @@ -281,7 +292,7 @@ public XMLGregorianCalendar getDTCExitDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setDTCExitDt(XMLGregorianCalendar value) { @@ -294,7 +305,7 @@ public CorporateActionDateSD5 setDTCExitDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSbcptBegnDt() { @@ -306,7 +317,7 @@ public XMLGregorianCalendar getSbcptBegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD5 setSbcptBegnDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD6.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD6.java index f7dbaf0ef..e24278740 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD6.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionDateSD6 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; @@ -62,7 +65,7 @@ public CorporateActionDateSD6 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD6 setLtryDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD7.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD7.java index 1fd92e4c4..643cafe73 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD7.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD7.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 +35,28 @@ public class CorporateActionDateSD7 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "ActlEarlyXprtnDt") + @XmlElement(name = "ActlEarlyXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar actlEarlyXprtnDt; - @XmlElement(name = "ActlPrtctXprtnDt") + @XmlElement(name = "ActlPrtctXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar actlPrtctXprtnDt; - @XmlElement(name = "ActlEarlyPrtctXprtnDt") + @XmlElement(name = "ActlEarlyPrtctXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar actlEarlyPrtctXprtnDt; - @XmlElement(name = "DTCEarlyPrtctXprtnDt") + @XmlElement(name = "DTCEarlyPrtctXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dtcEarlyPrtctXprtnDt; - @XmlElement(name = "ActlEarlyCoverPrtctXprtnDt") + @XmlElement(name = "ActlEarlyCoverPrtctXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar actlEarlyCoverPrtctXprtnDt; - @XmlElement(name = "DTCEarlyCoverPrtctXprtnDt") + @XmlElement(name = "DTCEarlyCoverPrtctXprtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dtcEarlyCoverPrtctXprtnDt; @@ -82,7 +90,7 @@ public CorporateActionDateSD7 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlEarlyXprtnDt() { @@ -94,7 +102,7 @@ public XMLGregorianCalendar getActlEarlyXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setActlEarlyXprtnDt(XMLGregorianCalendar value) { @@ -107,7 +115,7 @@ public CorporateActionDateSD7 setActlEarlyXprtnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlPrtctXprtnDt() { @@ -119,7 +127,7 @@ public XMLGregorianCalendar getActlPrtctXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setActlPrtctXprtnDt(XMLGregorianCalendar value) { @@ -132,7 +140,7 @@ public CorporateActionDateSD7 setActlPrtctXprtnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlEarlyPrtctXprtnDt() { @@ -144,7 +152,7 @@ public XMLGregorianCalendar getActlEarlyPrtctXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setActlEarlyPrtctXprtnDt(XMLGregorianCalendar value) { @@ -157,7 +165,7 @@ public CorporateActionDateSD7 setActlEarlyPrtctXprtnDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCEarlyPrtctXprtnDt() { @@ -169,7 +177,7 @@ public XMLGregorianCalendar getDTCEarlyPrtctXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setDTCEarlyPrtctXprtnDt(XMLGregorianCalendar value) { @@ -182,7 +190,7 @@ public CorporateActionDateSD7 setDTCEarlyPrtctXprtnDt(XMLGregorianCalendar value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlEarlyCoverPrtctXprtnDt() { @@ -194,7 +202,7 @@ public XMLGregorianCalendar getActlEarlyCoverPrtctXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setActlEarlyCoverPrtctXprtnDt(XMLGregorianCalendar value) { @@ -207,7 +215,7 @@ public CorporateActionDateSD7 setActlEarlyCoverPrtctXprtnDt(XMLGregorianCalendar * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCEarlyCoverPrtctXprtnDt() { @@ -219,7 +227,7 @@ public XMLGregorianCalendar getDTCEarlyCoverPrtctXprtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD7 setDTCEarlyCoverPrtctXprtnDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD8.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD8.java index f4f8a6127..72ef74cde 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD8.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionDateSD8.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,37 +40,48 @@ public class CorporateActionDateSD8 { @XmlElement(name = "PlcAndNm") protected String plcAndNm; - @XmlElement(name = "DTCLastDayForEarlyRed") + @XmlElement(name = "DTCLastDayForEarlyRed", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcLastDayForEarlyRed; - @XmlElement(name = "DTCPosCaptrDt") + @XmlElement(name = "DTCPosCaptrDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcPosCaptrDt; - @XmlElement(name = "NewYorkCutOffDt") + @XmlElement(name = "NewYorkCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newYorkCutOffDt; - @XmlElement(name = "DTCXtndedCutOffDt") + @XmlElement(name = "DTCXtndedCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcXtndedCutOffDt; - @XmlElement(name = "FctvDtByXchg") + @XmlElement(name = "FctvDtByXchg", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDtByXchg; - @XmlElement(name = "DtDclrdWrthls") + @XmlElement(name = "DtDclrdWrthls", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtDclrdWrthls; - @XmlElement(name = "DelWrthlsSctyDt") + @XmlElement(name = "DelWrthlsSctyDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar delWrthlsSctyDt; - @XmlElement(name = "DTCExitDt") + @XmlElement(name = "DTCExitDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtcExitDt; - @XmlElement(name = "SbcptBegnDt") + @XmlElement(name = "SbcptBegnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar sbcptBegnDt; - @XmlElement(name = "RghtsDstrbtnAsOfDt") + @XmlElement(name = "RghtsDstrbtnAsOfDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rghtsDstrbtnAsOfDt; - @XmlElement(name = "RghtsDstrbtnDt") + @XmlElement(name = "RghtsDstrbtnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rghtsDstrbtnDt; @@ -102,7 +115,7 @@ public CorporateActionDateSD8 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { @@ -114,7 +127,7 @@ public XMLGregorianCalendar getDTCLastDayForEarlyRed() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDTCLastDayForEarlyRed(XMLGregorianCalendar value) { @@ -127,7 +140,7 @@ public CorporateActionDateSD8 setDTCLastDayForEarlyRed(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCPosCaptrDt() { @@ -139,7 +152,7 @@ public XMLGregorianCalendar getDTCPosCaptrDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDTCPosCaptrDt(XMLGregorianCalendar value) { @@ -152,7 +165,7 @@ public CorporateActionDateSD8 setDTCPosCaptrDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewYorkCutOffDt() { @@ -164,7 +177,7 @@ public XMLGregorianCalendar getNewYorkCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setNewYorkCutOffDt(XMLGregorianCalendar value) { @@ -177,7 +190,7 @@ public CorporateActionDateSD8 setNewYorkCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCXtndedCutOffDt() { @@ -189,7 +202,7 @@ public XMLGregorianCalendar getDTCXtndedCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { @@ -202,7 +215,7 @@ public CorporateActionDateSD8 setDTCXtndedCutOffDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDtByXchg() { @@ -214,7 +227,7 @@ public XMLGregorianCalendar getFctvDtByXchg() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setFctvDtByXchg(XMLGregorianCalendar value) { @@ -227,7 +240,7 @@ public CorporateActionDateSD8 setFctvDtByXchg(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtDclrdWrthls() { @@ -239,7 +252,7 @@ public XMLGregorianCalendar getDtDclrdWrthls() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDtDclrdWrthls(XMLGregorianCalendar value) { @@ -252,7 +265,7 @@ public CorporateActionDateSD8 setDtDclrdWrthls(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDelWrthlsSctyDt() { @@ -264,7 +277,7 @@ public XMLGregorianCalendar getDelWrthlsSctyDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDelWrthlsSctyDt(XMLGregorianCalendar value) { @@ -277,7 +290,7 @@ public CorporateActionDateSD8 setDelWrthlsSctyDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDTCExitDt() { @@ -289,7 +302,7 @@ public XMLGregorianCalendar getDTCExitDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setDTCExitDt(XMLGregorianCalendar value) { @@ -302,7 +315,7 @@ public CorporateActionDateSD8 setDTCExitDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSbcptBegnDt() { @@ -314,7 +327,7 @@ public XMLGregorianCalendar getSbcptBegnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setSbcptBegnDt(XMLGregorianCalendar value) { @@ -327,7 +340,7 @@ public CorporateActionDateSD8 setSbcptBegnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRghtsDstrbtnAsOfDt() { @@ -339,7 +352,7 @@ public XMLGregorianCalendar getRghtsDstrbtnAsOfDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setRghtsDstrbtnAsOfDt(XMLGregorianCalendar value) { @@ -352,7 +365,7 @@ public CorporateActionDateSD8 setRghtsDstrbtnAsOfDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRghtsDstrbtnDt() { @@ -364,7 +377,7 @@ public XMLGregorianCalendar getRghtsDstrbtnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionDateSD8 setRghtsDstrbtnDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventReferenceSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventReferenceSD2.java index 241d10c27..1d573224a 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventReferenceSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionEventReferenceSD2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionEventReferenceSD2 { @XmlElement(name = "LkgTp", required = true) @XmlSchemaType(name = "string") protected DTCCLinkType1Code lkgTp; - @XmlElement(name = "LkAddedDt", required = true) + @XmlElement(name = "LkAddedDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkAddedDt; - @XmlElement(name = "LkModfdDt") + @XmlElement(name = "LkModfdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lkModfdDt; @@ -95,7 +99,7 @@ public CorporateActionEventReferenceSD2 setLkgTp(DTCCLinkType1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkAddedDt() { @@ -107,7 +111,7 @@ public XMLGregorianCalendar getLkAddedDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionEventReferenceSD2 setLkAddedDt(XMLGregorianCalendar value) { @@ -120,7 +124,7 @@ public CorporateActionEventReferenceSD2 setLkAddedDt(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLkModfdDt() { @@ -132,7 +136,7 @@ public XMLGregorianCalendar getLkModfdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionEventReferenceSD2 setLkModfdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD1.java index 338851b62..b227ba7e0 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionGeneralInformationSD1 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; @@ -62,7 +65,7 @@ public CorporateActionGeneralInformationSD1 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionGeneralInformationSD1 setRcrdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD3.java index 77a33498f..9a6461ed6 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionGeneralInformationSD3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionGeneralInformationSD3 { protected String plcAndNm; @XmlElement(name = "SctyId", required = true) protected SecurityIdentification15 sctyId; - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; @XmlElement(name = "PmtDt") @@ -98,7 +101,7 @@ public CorporateActionGeneralInformationSD3 setSctyId(SecurityIdentification15 v * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -110,7 +113,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionGeneralInformationSD3 setRcrdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD1.java index 1198d23ea..496d83a1f 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionInstructedBalanceOptionInstructionDetailsSD1 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxContraCUSIP") @@ -58,10 +61,12 @@ public class CorporateActionInstructedBalanceOptionInstructionDetailsSD1 { @XmlElement(name = "TxIdSts", required = true) @XmlSchemaType(name = "string") protected DTCInstructionStatus2Code txIdSts; - @XmlElement(name = "TxIdPrtctDt") + @XmlElement(name = "TxIdPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdPrtctDt; - @XmlElement(name = "TxIdCoverPrtctDt") + @XmlElement(name = "TxIdCoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdCoverPrtctDt; @XmlElement(name = "TxCondlQty") @@ -176,7 +181,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxSeqNb(St * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -188,7 +193,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxIdDt(XMLGregorianCalendar value) { @@ -301,7 +306,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxIdSts(DT * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdPrtctDt() { @@ -313,7 +318,7 @@ public XMLGregorianCalendar getTxIdPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxIdPrtctDt(XMLGregorianCalendar value) { @@ -326,7 +331,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxIdPrtctD * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdCoverPrtctDt() { @@ -338,7 +343,7 @@ public XMLGregorianCalendar getTxIdCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD1 setTxIdCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD2.java index 4ae4bc209..8c2ab5a3e 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionInstructionDetailsSD2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionInstructedBalanceOptionInstructionDetailsSD2 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxContraCUSIP") @@ -59,10 +62,12 @@ public class CorporateActionInstructedBalanceOptionInstructionDetailsSD2 { @XmlElement(name = "TxIdSts", required = true) @XmlSchemaType(name = "string") protected DTCInstructionStatus2Code txIdSts; - @XmlElement(name = "TxIdPrtctDt") + @XmlElement(name = "TxIdPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdPrtctDt; - @XmlElement(name = "TxIdCoverPrtctDt") + @XmlElement(name = "TxIdCoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdCoverPrtctDt; @XmlElement(name = "TxCondlQty") @@ -179,7 +184,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxSeqNb(St * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -191,7 +196,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxIdDt(XMLGregorianCalendar value) { @@ -304,7 +309,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxIdSts(DT * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdPrtctDt() { @@ -316,7 +321,7 @@ public XMLGregorianCalendar getTxIdPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxIdPrtctDt(XMLGregorianCalendar value) { @@ -329,7 +334,7 @@ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxIdPrtctD * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdCoverPrtctDt() { @@ -341,7 +346,7 @@ public XMLGregorianCalendar getTxIdCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionInstructionDetailsSD2 setTxIdCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1.java index 58fed5240..ae944be55 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 +47,12 @@ public class CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1 protected String prtctSeqNb; @XmlElement(name = "OptnNb", required = true) protected OptionNumber1Choice optnNb; - @XmlElement(name = "PrtctDt", required = true) + @XmlElement(name = "PrtctDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "PrtctIdQty", required = true) @@ -172,7 +176,7 @@ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1 setOpt * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -184,7 +188,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1 setPrtctDt(XMLGregorianCalendar value) { @@ -197,7 +201,7 @@ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1 setPrt * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -209,7 +213,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD1 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2.java index 463172b76..b18aa9fb4 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2 protected String prtctSfkpgAcct; @XmlElement(name = "PrtctSeqNb") protected String prtctSeqNb; - @XmlElement(name = "PrtctDt", required = true) + @XmlElement(name = "PrtctDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prtctDt; - @XmlElement(name = "CoverPrtctDt") + @XmlElement(name = "CoverPrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar coverPrtctDt; @XmlElement(name = "PrtctIdQty", required = true) @@ -203,7 +207,7 @@ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2 setPrt * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -215,7 +219,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2 setPrtctDt(XMLGregorianCalendar value) { @@ -228,7 +232,7 @@ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2 setPrt * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCoverPrtctDt() { @@ -240,7 +244,7 @@ public XMLGregorianCalendar getCoverPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionInstructedBalanceOptionProtectInstructionDetailsSD2 setCoverPrtctDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD2.java index e25cf3c29..5f21c328b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD2.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,10 +49,12 @@ public class CorporateActionNotificationSD2 { protected DerivativeWorkflowStatus1Code derivWorkflwSts; @XmlElement(name = "DerivXchg", required = true) protected String derivXchg; - @XmlElement(name = "DerivPblctnDt") + @XmlElement(name = "DerivPblctnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar derivPblctnDt; - @XmlElement(name = "DerivAdjstmntDt", required = true) + @XmlElement(name = "DerivAdjstmntDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar derivAdjstmntDt; @XmlElement(name = "DerivClctnMtd") @@ -154,7 +158,7 @@ public CorporateActionNotificationSD2 setDerivXchg(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDerivPblctnDt() { @@ -166,7 +170,7 @@ public XMLGregorianCalendar getDerivPblctnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD2 setDerivPblctnDt(XMLGregorianCalendar value) { @@ -179,7 +183,7 @@ public CorporateActionNotificationSD2 setDerivPblctnDt(XMLGregorianCalendar valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDerivAdjstmntDt() { @@ -191,7 +195,7 @@ public XMLGregorianCalendar getDerivAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD2 setDerivAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD3.java index b49fb94de..466b5a537 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionNotificationSD3 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "CretDtAndTm", required = true) + @XmlElement(name = "CretDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar cretDtAndTm; - @XmlElement(name = "UpdDtAndTm") + @XmlElement(name = "UpdDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updDtAndTm; @@ -66,7 +70,7 @@ public CorporateActionNotificationSD3 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCretDtAndTm() { @@ -78,7 +82,7 @@ public XMLGregorianCalendar getCretDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD3 setCretDtAndTm(XMLGregorianCalendar value) { @@ -91,7 +95,7 @@ public CorporateActionNotificationSD3 setCretDtAndTm(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDtAndTm() { @@ -103,7 +107,7 @@ public XMLGregorianCalendar getUpdDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD3 setUpdDtAndTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD4.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD4.java index 5cda90360..ec3dc24c8 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD4.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD4.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,13 +39,16 @@ public class CorporateActionNotificationSD4 { @XmlElement(name = "EvtSts") @XmlSchemaType(name = "string") protected EventWorkflowStatus1Code evtSts; - @XmlElement(name = "ApprvdDt") + @XmlElement(name = "ApprvdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar apprvdDt; - @XmlElement(name = "MtchDt") + @XmlElement(name = "MtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtchDt; - @XmlElement(name = "ActvUntilDt") + @XmlElement(name = "ActvUntilDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar actvUntilDt; @XmlElement(name = "SvcLvlAgrmtPrd") @@ -105,7 +111,7 @@ public CorporateActionNotificationSD4 setEvtSts(EventWorkflowStatus1Code value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getApprvdDt() { @@ -117,7 +123,7 @@ public XMLGregorianCalendar getApprvdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD4 setApprvdDt(XMLGregorianCalendar value) { @@ -130,7 +136,7 @@ public CorporateActionNotificationSD4 setApprvdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchDt() { @@ -142,7 +148,7 @@ public XMLGregorianCalendar getMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD4 setMtchDt(XMLGregorianCalendar value) { @@ -155,7 +161,7 @@ public CorporateActionNotificationSD4 setMtchDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActvUntilDt() { @@ -167,7 +173,7 @@ public XMLGregorianCalendar getActvUntilDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD4 setActvUntilDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD6.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD6.java index 83fba4ecb..cb6682ff0 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD6.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,13 +38,16 @@ public class CorporateActionNotificationSD6 { @XmlElement(name = "EvtSts") @XmlSchemaType(name = "string") protected EventWorkflowStatus1Code evtSts; - @XmlElement(name = "ApprvdDt") + @XmlElement(name = "ApprvdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar apprvdDt; - @XmlElement(name = "MtchDt") + @XmlElement(name = "MtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar mtchDt; - @XmlElement(name = "ActvUntilDt") + @XmlElement(name = "ActvUntilDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actvUntilDt; @XmlElement(name = "SvcLvlAgrmtPrd") @@ -105,7 +110,7 @@ public CorporateActionNotificationSD6 setEvtSts(EventWorkflowStatus1Code value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getApprvdDt() { @@ -117,7 +122,7 @@ public XMLGregorianCalendar getApprvdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD6 setApprvdDt(XMLGregorianCalendar value) { @@ -130,7 +135,7 @@ public CorporateActionNotificationSD6 setApprvdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getMtchDt() { @@ -142,7 +147,7 @@ public XMLGregorianCalendar getMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD6 setMtchDt(XMLGregorianCalendar value) { @@ -155,7 +160,7 @@ public CorporateActionNotificationSD6 setMtchDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActvUntilDt() { @@ -167,7 +172,7 @@ public XMLGregorianCalendar getActvUntilDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD6 setActvUntilDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD9.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD9.java index 921d259e6..677b19131 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD9.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionNotificationSD9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionNotificationSD9 { @XmlElement(name = "PlcAndNm") protected String plcAndNm; - @XmlElement(name = "CretDtAndTm", required = true) + @XmlElement(name = "CretDtAndTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar cretDtAndTm; - @XmlElement(name = "UpdDtAndTm") + @XmlElement(name = "UpdDtAndTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar updDtAndTm; @@ -66,7 +70,7 @@ public CorporateActionNotificationSD9 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCretDtAndTm() { @@ -78,7 +82,7 @@ public XMLGregorianCalendar getCretDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD9 setCretDtAndTm(XMLGregorianCalendar value) { @@ -91,7 +95,7 @@ public CorporateActionNotificationSD9 setCretDtAndTm(XMLGregorianCalendar value) * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getUpdDtAndTm() { @@ -103,7 +107,7 @@ public XMLGregorianCalendar getUpdDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionNotificationSD9 setUpdDtAndTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOptionSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOptionSD5.java index d44ea8418..cf0c4f1b7 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOptionSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionOptionSD5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionOptionSD5 { protected WorkflowStatus1Code optnSts; @XmlElement(name = "RandLotPrefFlg") protected Boolean randLotPrefFlg; - @XmlElement(name = "NewShrDsptchdDt") + @XmlElement(name = "NewShrDsptchdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar newShrDsptchdDt; @@ -119,7 +122,7 @@ public CorporateActionOptionSD5 setRandLotPrefFlg(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getNewShrDsptchdDt() { @@ -131,7 +134,7 @@ public XMLGregorianCalendar getNewShrDsptchdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionOptionSD5 setNewShrDsptchdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionQuantitySD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionQuantitySD3.java index a1f6e05d5..92bd09ed6 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionQuantitySD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionQuantitySD3.java @@ -12,7 +12,7 @@ /** - * Provides additional information regarding corporate action securities quantity details. + * Provides additional information regarding corporate action securities quantity details. * * * diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD10.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD10.java index 389f7aab9..e34d75767 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD10.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD10.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionSD10 { protected String plcAndNm; @XmlElement(name = "LtrySeqNb") protected String ltrySeqNb; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; @@ -90,7 +93,7 @@ public CorporateActionSD10 setLtrySeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD10 setLtryDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD16.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD16.java index cc7ec620c..dd16c4c5f 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD16.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD16.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionSD16 { protected String plcAndNm; @XmlElement(name = "LtrySeqNb") protected String ltrySeqNb; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; - @XmlElement(name = "PrcToDt") + @XmlElement(name = "PrcToDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prcToDt; @@ -94,7 +98,7 @@ public CorporateActionSD16 setLtrySeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -106,7 +110,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD16 setLtryDt(XMLGregorianCalendar value) { @@ -119,7 +123,7 @@ public CorporateActionSD16 setLtryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrcToDt() { @@ -131,7 +135,7 @@ public XMLGregorianCalendar getPrcToDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD16 setPrcToDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD19.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD19.java index d7e6b29fe..fb1fdf35a 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD19.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD19.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +33,14 @@ public class CorporateActionSD19 { @XmlElement(name = "PlcAndNm") protected String plcAndNm; - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; @XmlElement(name = "PmtDt") protected DateFormat48Choice pmtDt; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; @XmlElement(name = "LtryTp") @@ -73,7 +77,7 @@ public CorporateActionSD19 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -85,7 +89,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD19 setRcrdDt(XMLGregorianCalendar value) { @@ -123,7 +127,7 @@ public CorporateActionSD19 setPmtDt(DateFormat48Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD19 setLtryDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD20.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD20.java index 62b2ac5ab..52f58596d 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD20.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD20.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CorporateActionSD20 { protected String plcAndNm; @XmlElement(name = "LtrySeqNb") protected String ltrySeqNb; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; - @XmlElement(name = "PrcToDt") + @XmlElement(name = "PrcToDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prcToDt; @@ -94,7 +98,7 @@ public CorporateActionSD20 setLtrySeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -106,7 +110,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD20 setLtryDt(XMLGregorianCalendar value) { @@ -119,7 +123,7 @@ public CorporateActionSD20 setLtryDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrcToDt() { @@ -131,7 +135,7 @@ public XMLGregorianCalendar getPrcToDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD20 setPrcToDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD9.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD9.java index 0dbfa26f1..ef4c8c596 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD9.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorporateActionSD9.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +33,14 @@ public class CorporateActionSD9 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "RcrdDt") + @XmlElement(name = "RcrdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcrdDt; @XmlElement(name = "PmtDt") protected DateFormat28Choice pmtDt; - @XmlElement(name = "LtryDt") + @XmlElement(name = "LtryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar ltryDt; @XmlElement(name = "LtryTp") @@ -73,7 +77,7 @@ public CorporateActionSD9 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcrdDt() { @@ -85,7 +89,7 @@ public XMLGregorianCalendar getRcrdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD9 setRcrdDt(XMLGregorianCalendar value) { @@ -123,7 +127,7 @@ public CorporateActionSD9 setPmtDt(DateFormat28Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLtryDt() { @@ -135,7 +139,7 @@ public XMLGregorianCalendar getLtryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CorporateActionSD9 setLtryDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustodianOptionDateDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustodianOptionDateDetailsSD1.java index 30a57fce4..b7248870f 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustodianOptionDateDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustodianOptionDateDetailsSD1.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.IsoTimeAdapter; 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 CustodianOptionDateDetailsSD1 { @XmlElement(name = "PlcAndNm", required = true) protected String plcAndNm; - @XmlElement(name = "AgtDdlnDt") + @XmlElement(name = "AgtDdlnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar agtDdlnDt; - @XmlElement(name = "AgtDdlnTm") + @XmlElement(name = "AgtDdlnTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar agtDdlnTm; @@ -66,7 +71,7 @@ public CustodianOptionDateDetailsSD1 setPlcAndNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAgtDdlnDt() { @@ -78,7 +83,7 @@ public XMLGregorianCalendar getAgtDdlnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CustodianOptionDateDetailsSD1 setAgtDdlnDt(XMLGregorianCalendar value) { @@ -91,7 +96,7 @@ public CustodianOptionDateDetailsSD1 setAgtDdlnDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAgtDdlnTm() { @@ -103,7 +108,7 @@ public XMLGregorianCalendar getAgtDdlnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CustodianOptionDateDetailsSD1 setAgtDdlnTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1Code.java index f04ca0d62..4d44d0d4f 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CutOff1Code.java @@ -33,13 +33,13 @@ public enum CutOff1Code { AERL, /** - * Cut-off occurs before the DTCC (The Depository Trust and Clearing Corporation) standard settlement cut-off. Early cut-off usually 1: 30 Eastern Standard Time. + * Cut-off occurs before the DTCC (The Depository Trust and Clearing Corporation) standard settlement cutoff. Early cut-off usually 1:30 Eastern Standard Time. * */ EARL, /** - * Cut-off is after settlement at DTCC (The Depository Trust and Clearing Corporation). + * Cut-off is after settlement at DTCC (The Depository Trust and Clearing Corporation). * */ LATE; diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType4Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType4Code.java index 7992bf006..6cc4e643c 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType4Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType4Code.java @@ -165,27 +165,27 @@ public enum DTCAdjustmentPaymentType4Code { TJXD("TJXD"), /** - * Participant deposited a security within 10 days after a corporate action event has occurred. + * Participant deposited a security within 10 days after a corporate action event has occurred. * */ @XmlEnumValue("RRD1") RRD_1("RRD1"), /** - * Participant deposited a security 10 days after a corporate action event has occurred. + * Participant deposited a security 10 days after a corporate action event has occurred. * */ @XmlEnumValue("RRD2") RRD_2("RRD2"), /** - * Reversal related adjustment. + * Reversal related adjustment. * */ REVA("REVA"), /** - * Reversal of tax withholding related adjustment. + * Reversal of tax withholding related adjustment. * */ TJXR("TJXR"), diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType5Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType5Code.java index b20b614f4..aaf06614f 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType5Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAdjustmentPaymentType5Code.java @@ -57,14 +57,14 @@ public enum DTCAdjustmentPaymentType5Code { MISC("MISC"), /** - * Participant deposited a security within 10 days after a corporate action event has occurred. + * Participant deposited a security within 10 days after a corporate action event has occurred. * */ @XmlEnumValue("RRD1") RRD_1("RRD1"), /** - * Participant deposited a security 10 days after a corporate action event has occurred. + * Participant deposited a security 10 days after a corporate action event has occurred. * */ @XmlEnumValue("RRD2") diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAssetType3Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAssetType3Code.java index 1730fbbe9..a6b47b793 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAssetType3Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCAssetType3Code.java @@ -358,7 +358,7 @@ public enum DTCAssetType3Code { S_705("S705"), /** - * Asset is a equity unit. + * Asset is an equity unit. * */ @XmlEnumValue("S780") @@ -414,7 +414,7 @@ public enum DTCAssetType3Code { S_602("S602"), /** - * Asset is a institutional money market instrument mutual fund share. + * Asset is an institutional money market instrument mutual fund share. * */ @XmlEnumValue("S762") @@ -610,7 +610,7 @@ public enum DTCAssetType3Code { S_330("S330"), /** - * Asset is a municipal auction rate note (ARN). + * Asset is a municipal auction rate note (ARN). * */ @XmlEnumValue("S312") diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCEntitlementCalculationMethod1Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCEntitlementCalculationMethod1Code.java index b528f8ee1..7b3e6b3fe 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCEntitlementCalculationMethod1Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DTCEntitlementCalculationMethod1Code.java @@ -31,35 +31,35 @@ public enum DTCEntitlementCalculationMethod1Code { /** - * Per individual account X share holding per account X Cash Rate divided by the Stock Rate = Whole Shares + CIL of Fractions Example: 100 shares X.50 (Cash Rate) divided by $20.00 (Stock Rate)=2 whole shares and.500000 fractions Fractional Entitlement: If the price is $15.00 per share, you would calculate.500000 X $15.00 = $7.50 for CIL. + * Per individual account X share holding per account X Cash Rate divided by the Stock Rate = Whole Shares + CIL of Fractions Example: 100 shares X .50 (Cash Rate) divided by $20.00 (Stock Rate)=2 whole shares and .500000 fractions Fractional Entitlement: If the price is $15.00 per share, you would calculate .500000 X $15.00 = $7.50 for CIL. * */ @XmlEnumValue("SR15") SR_15("SR15"), /** - * Per individual account X share holding per account X Cash Rate = entitlement Example: 100 shares X.50 (Cash Rate) = $50.00 in cash. + * Per individual account X share holding per account X Cash Rate = entitlement Example: 100 shares X .50 (Cash Rate) = $50.00 in cash. * */ @XmlEnumValue("CR17") CR_17("CR17"), /** - * Per individual account X share holding per account X Stock Rate = whole shares + CIL of Fractions Example: 150 shares X 5% (Stock Rate) = 7 whole shares and.500000 fractions Fractional Entitlement: If the CIL price is $10.00 per share, you would calculate.500000 X $10.00 = $5.00 for CIL. + * Per individual account X share holding per account X Stock Rate = whole shares + CIL of Fractions Example: 150 shares X 5% (Stock Rate) = 7 whole shares and .500000 fractions Fractional Entitlement: If the CIL price is $10.00 per share, you would calculate .500000 X $10.00 = $5.00 for CIL. * */ @XmlEnumValue("SR18") SR_18("SR18"), /** - * Per individual account X share holding per account X Stock Rate = whole shares + Fractions Example: 150 shares X 5% (Stock Rate) = 7 whole shares and.500000 fractions. Cash Entitlement: If the CIL price is $10.00 per share, you would calculate 7.500000 shares X $10.00 = $75.00 in cash. + * Per individual account X share holding per account X Stock Rate = whole shares + Fractions Example: 150 shares X 5% (Stock Rate) = 7 whole shares and .500000 fractions. Cash Entitlement: If the CIL price is $10.00 per share, you would calculate 7.500000 shares X $10.00 = $75.00 in cash. * */ @XmlEnumValue("SC19") SC_19("SC19"), /** - * A) Per individual account X share holding per account X Stock Rate = Whole shares + CIL of Fractions (Note 1)Note 1- Then option is to buy fraction so as to round up to one (1) whole share B) Per individual account X (1 whole share-fractional issuable) = fractions to be bought X CIL Fraction Price= Cash to be charged to each individual account (Note 1) + 1 whole share to be added to the individual account (Note 2)Note 1- Appropriate cash adjustment decreasing a participants cash position will be transacted Note 2- Appropriate share adjustment increasing a participants share position will be transacted Special Note: The following two formulas relate to those situations whereby the option allows you to buy an additional fraction so as to round up to one (1) whole share. F/C 20-can be used for most fractions buy round ups. F/C 21-was once a mandatory fraction buy round up formula used by a agent. (The end result is the same if you use either F/C). + * A) Per individual account X share holding per account X Stock Rate = Whole shares + CIL of Fractions (Note 1)Note 1- Then option is to buy fraction so as to round up to one (1) whole share B) Per individual account X (1 whole share-fractional issuable) = fractions to be bought X CIL Fraction Price= Cash to be charged to each individual account (Note 1) + 1 whole share to be added to the individual account (Note 2)Note 1- Appropriate cash adjustment decreasing a participants cash position will be transacted Note 2- Appropriate share adjustment increasing a participants share position will be transacted Special Note: The following two formulas relate to those situations whereby the option allows you to buy an additional fraction so as to round up to one (1) whole share. F/C 20-can be used for most fractions buy round ups. F/C 21-was once a mandatory fraction buy round up formula used by a agent. (The end result is the same if you use either F/C). * */ @XmlEnumValue("SB20") diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeceasedStatusSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeceasedStatusSD1.java index 1fde9e2bb..b96f54fe2 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeceasedStatusSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DeceasedStatusSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DeceasedStatusSD1 { @XmlElement(name = "BnfclOwnrNm", required = true) protected String bnfclOwnrNm; - @XmlElement(name = "DthDt") + @XmlElement(name = "DthDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dthDt; @XmlElement(name = "DthCertSrlNb") @@ -68,7 +71,7 @@ public DeceasedStatusSD1 setBnfclOwnrNm(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDthDt() { @@ -80,7 +83,7 @@ public XMLGregorianCalendar getDthDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DeceasedStatusSD1 setDthDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedEventType6Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedEventType6Code.java index e71c7b6b6..d3043629b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedEventType6Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedEventType6Code.java @@ -28,7 +28,7 @@ public enum ExtendedEventType6Code { /** - * Security, usually a form of a derivative, for which the agent or issuer has decided to terminate the derivative based on a change to the underlying security(ies) or a change in strategy. Distinguishes from Mandatory Exchange, Exchange Offer event types mapped to the same ISO event type code. + * Security, usually a form of a derivative, for which the agent or issuer has decided to terminate the derivative based on a change to the underlying security(ies) or a change in strategy. Distinguishes from Mandatory Exchange, Exchange Offer event types mapped to the same ISO event type code. * */ TMTN, @@ -40,13 +40,13 @@ public enum ExtendedEventType6Code { FPAY, /** - * Feature of a security that allows an issuer to make a payment to the security holder. This event will be used for securities subject to redemptions other than those categorized as full and partial calls (for example early Certificate of Deposit redemptions). + * Feature of a security that allows an issuer to make a payment to the security holder. This event will be used for securities subject to redemptions other than those categorised as full and partial calls (for example early Certificate of Deposit redemptions). * */ CDRD, /** - * The event is a redemption of warrant. + * Event is a redemption of warrant. * */ REDW; diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedOptionFeature1Code.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedOptionFeature1Code.java index 9b32e30de..50d8f45fb 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedOptionFeature1Code.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendedOptionFeature1Code.java @@ -40,25 +40,25 @@ public enum ExtendedOptionFeature1Code { FORU, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for the Foreign Tax Relief service at DTC. An election into this option ensures the participant receives their payment at a favourable tax withholding rate. + * DTC (The Depository Trust Company) only option. The event and security are eligible for the Foreign Tax Relief service at DTC. An election into this option ensures the participant receives their payment at a favourable tax withholding rate. * */ FORF, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for the Foreign Tax Relief service at DTC. An election into this option ensures the participant is exempt from any tax withholding. + * DTC (The Depository Trust Company) only option. The event and security are eligible for the Foreign Tax Relief service at DTC. An election into this option ensures the participant is exempt from any tax withholding. * */ FORX, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Dividend Reinvestment and Foreign Tax services at DTC. Participants electing this option will receive additional shares and the tax withholding on those shares will be at the unfavourable tax rate. + * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Dividend Reinvestment and Foreign Tax services at DTC. Participants electing this option will receive additional shares and the tax withholding on those shares will be at the unfavourable tax rate. * */ DRPU, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Dividend Reinvestment and Foreign Tax Relief services at DTC. Participants electing this option will receive additional shares and the tax withholding on those shares will be at the favourable tax rate. + * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Dividend Reinvestment and Foreign Tax Relief services at DTC. Participants electing this option will receive additional shares and the tax withholding on those shares will be at the favourable tax rate. * */ DRPF, @@ -70,25 +70,25 @@ public enum ExtendedOptionFeature1Code { DRPX, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for Foreign Currency Payment service at DTC. Participants electing this option will receive their distribution in the foreign currency instructed. + * DTC (The Depository Trust Company) only option. The event and security are eligible for Foreign Currency Payment service at DTC. Participants electing this option will receive their distribution in the foreign currency instructed. * */ FCPP, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing this option will receive their distribution in a foreign currency and the tax withholding on that distribution will be subject to unfavourable tax withholding. + * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing this option will receive their distribution in a foreign currency and the tax withholding on that distribution will be subject to unfavourable tax withholding. * */ FCPU, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing the option will receive their distribution in foreign currency and the tax withholding on that distribution will be subject to favourable tax withholding. + * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing the option will receive their distribution in foreign currency and the tax withholding on that distribution will be subject to favourable tax withholding. * */ FCPF, /** - * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing this option will receive their distribution in a foreign currency and will be exempt from any tax withholding. + * DTC (The Depository Trust Company) only option. The event and security are eligible for both the Foreign Currency and Foreign Tax services at DTC. Participants electing this option will receive their distribution in a foreign currency and will be exempt from any tax withholding. * */ FCPX; diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InformationResponseSD1V01.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InformationResponseSD1V01.java index 0712f9e9f..a599a624b 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InformationResponseSD1V01.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InformationResponseSD1V01.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InformationResponseSD1V01 { @XmlElement(name = "InvstgtnId", required = true) protected String invstgtnId; - @XmlElement(name = "CreDtTm", required = true) + @XmlElement(name = "CreDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar creDtTm; @XmlElement(name = "AcctSvcrId", required = true) @@ -70,7 +73,7 @@ public InformationResponseSD1V01 setInvstgtnId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InformationResponseSD1V01 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD1.java index 388054d8f..50f417346 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionDetailsSD1 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -136,7 +139,7 @@ public OptionTransactionDetailsSD1 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -148,7 +151,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionDetailsSD1 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD2.java index 846366587..5f08f5955 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionDetailsSD2 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -160,7 +163,7 @@ public OptionTransactionDetailsSD2 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -172,7 +175,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionDetailsSD2 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD3.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD3.java index 1d8bba3b6..9de9b0dd4 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD3.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionDetailsSD3 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -136,7 +139,7 @@ public OptionTransactionDetailsSD3 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -148,7 +151,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionDetailsSD3 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD4.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD4.java index 12374d52f..86ace3ba8 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD4.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionDetailsSD4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionDetailsSD4 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -166,7 +169,7 @@ public OptionTransactionDetailsSD4 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -178,7 +181,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionDetailsSD4 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD5.java index 758cd88a9..476f44f3a 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionSD5 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -157,7 +160,7 @@ public OptionTransactionSD5 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -169,7 +172,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionSD5 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD6.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD6.java index 2acd3a6d9..533691b71 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD6.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionTransactionSD6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionTransactionSD6 { protected String txId; @XmlElement(name = "TxSeqNb") protected String txSeqNb; - @XmlElement(name = "TxIdDt", required = true) + @XmlElement(name = "TxIdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar txIdDt; @XmlElement(name = "TxIdQty", required = true) @@ -163,7 +166,7 @@ public OptionTransactionSD6 setTxSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTxIdDt() { @@ -175,7 +178,7 @@ public XMLGregorianCalendar getTxIdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OptionTransactionSD6 setTxIdDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentificationSD5.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentificationSD5.java index 2a36f04c9..b0c3f97e4 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentificationSD5.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentificationSD5.java @@ -13,7 +13,7 @@ /** - * Provides additional information regarding the new agent component. + * Provides additional information regarding the new agent component. * * * diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedCustodianMessageDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedCustodianMessageDetailsSD1.java index 4ce60bc7f..f73a630b6 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedCustodianMessageDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedCustodianMessageDetailsSD1.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.IsoTimeAdapter; 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 RelatedCustodianMessageDetailsSD1 { protected String rcvdMndtryVlntryEvtTp; @XmlElement(name = "RcvdCorpActnEvtId", required = true) protected String rcvdCorpActnEvtId; - @XmlElement(name = "RcvdDt", required = true) + @XmlElement(name = "RcvdDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rcvdDt; - @XmlElement(name = "RcvdTm") + @XmlElement(name = "RcvdTm", type = String.class) + @XmlJavaTypeAdapter(IsoTimeAdapter.class) @XmlSchemaType(name = "time") protected XMLGregorianCalendar rcvdTm; @XmlElement(name = "InbndISOMT", required = true) @@ -137,7 +142,7 @@ public RelatedCustodianMessageDetailsSD1 setRcvdCorpActnEvtId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdDt() { @@ -149,7 +154,7 @@ public XMLGregorianCalendar getRcvdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RelatedCustodianMessageDetailsSD1 setRcvdDt(XMLGregorianCalendar value) { @@ -162,7 +167,7 @@ public RelatedCustodianMessageDetailsSD1 setRcvdDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRcvdTm() { @@ -174,7 +179,7 @@ public XMLGregorianCalendar getRcvdTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RelatedCustodianMessageDetailsSD1 setRcvdTm(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD1.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD1.java index f570e7f74..6f73b8192 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD1.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReorganisationInstructionDetailsSD1 { protected String prtctId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt") + @XmlElement(name = "PrtctDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "SctiesQtyDtls") @@ -264,7 +267,7 @@ public ReorganisationInstructionDetailsSD1 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -276,7 +279,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReorganisationInstructionDetailsSD1 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD2.java b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD2.java index 8c7b8c8d6..bd2feed01 100644 --- a/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD2.java +++ b/model-supl-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReorganisationInstructionDetailsSD2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,7 +73,8 @@ public class ReorganisationInstructionDetailsSD2 { protected String prtctId; @XmlElement(name = "PrtctSfkpgAcct") protected String prtctSfkpgAcct; - @XmlElement(name = "PrtctDt", required = true) + @XmlElement(name = "PrtctDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar prtctDt; @XmlElement(name = "SctiesQtyDtls") @@ -354,7 +357,7 @@ public ReorganisationInstructionDetailsSD2 setPrtctSfkpgAcct(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrtctDt() { @@ -366,7 +369,7 @@ public XMLGregorianCalendar getPrtctDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReorganisationInstructionDetailsSD2 setPrtctDt(XMLGregorianCalendar value) { diff --git a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00100102.java b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00100102.java index ea489ae5f..0865723b6 100644 --- a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00100102.java +++ b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrck00100102 parse(String xml) { - return ((MxTrck00100102) MxReadImpl.parse(MxTrck00100102 .class, xml, _classes)); + return ((MxTrck00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrck00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrck00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00200101.java b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00200101.java index bc8d6002a..f6982b0cb 100644 --- a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00200101.java +++ b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrck00200101 parse(String xml) { - return ((MxTrck00200101) MxReadImpl.parse(MxTrck00200101 .class, xml, _classes)); + return ((MxTrck00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrck00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrck00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00300102.java b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00300102.java index 47641b7d6..073a23a35 100644 --- a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00300102.java +++ b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrck00300102 parse(String xml) { - return ((MxTrck00300102) MxReadImpl.parse(MxTrck00300102 .class, xml, _classes)); + return ((MxTrck00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrck00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrck00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00400101.java b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00400101.java index 6ef110170..4a87eb9dd 100644 --- a/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00400101.java +++ b/model-trck-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrck00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrck00400101 parse(String xml) { - return ((MxTrck00400101) MxReadImpl.parse(MxTrck00400101 .class, xml, _classes)); + return ((MxTrck00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrck00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrck00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrck00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction4.java b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction4.java index 92a6e919f..e33a66c42 100644 --- a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction4.java +++ b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalBusinessInstruction4 { 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 OriginalBusinessInstruction4 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 OriginalBusinessInstruction4 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader5.java b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader5.java index ae925441d..5a1d8a67e 100644 --- a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader5.java +++ b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TrackerHeader5 { @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 = "NbOfTxs") @@ -77,7 +80,7 @@ public TrackerHeader5 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 TrackerHeader5 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader6.java b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader6.java index 0400b1df7..426390095 100644 --- a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader6.java +++ b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerHeader6.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TrackerHeader6 { @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 = "NbOfTxs") @@ -74,7 +77,7 @@ public TrackerHeader6 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 TrackerHeader6 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerPaymentTransaction10.java b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerPaymentTransaction10.java index 887a23af1..c0ba9acb5 100644 --- a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerPaymentTransaction10.java +++ b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerPaymentTransaction10.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; @@ -101,7 +104,8 @@ public class TrackerPaymentTransaction10 { protected BranchAndFinancialInstitutionIdentification6 instdAgt; @XmlElement(name = "IntrBkSttlmAmt") protected ActiveCurrencyAndAmount intrBkSttlmAmt; - @XmlElement(name = "IntrBkSttlmDt") + @XmlElement(name = "IntrBkSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar intrBkSttlmDt; @XmlElement(name = "SttlmPrty") @@ -111,10 +115,12 @@ public class TrackerPaymentTransaction10 { 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") @@ -452,7 +458,7 @@ public TrackerPaymentTransaction10 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIntrBkSttlmDt() { @@ -464,7 +470,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TrackerPaymentTransaction10 setIntrBkSttlmDt(XMLGregorianCalendar value) { @@ -552,7 +558,7 @@ public TrackerPaymentTransaction10 setSttlmTmReq(SettlementTimeRequest2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAccptncDtTm() { @@ -564,7 +570,7 @@ public XMLGregorianCalendar getAccptncDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TrackerPaymentTransaction10 setAccptncDtTm(XMLGregorianCalendar value) { @@ -577,7 +583,7 @@ public TrackerPaymentTransaction10 setAccptncDtTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPoolgAdjstmntDt() { @@ -589,7 +595,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TrackerPaymentTransaction10 setPoolgAdjstmntDt(XMLGregorianCalendar value) { diff --git a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerRecord4.java b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerRecord4.java index 6d2ff45bb..0e9c09ff5 100644 --- a/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerRecord4.java +++ b/model-trck-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TrackerRecord4.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TrackerRecord4 { protected ActiveCurrencyAndAmount chrgsAmt; @XmlElement(name = "XchgRateData") protected CurrencyExchange13 xchgRateData; - @XmlElement(name = "PrcgDtTm") + @XmlElement(name = "PrcgDtTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prcgDtTm; @@ -147,7 +150,7 @@ public TrackerRecord4 setXchgRateData(CurrencyExchange13 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrcgDtTm() { @@ -159,7 +162,7 @@ public XMLGregorianCalendar getPrcgDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TrackerRecord4 setPrcgDtTm(XMLGregorianCalendar value) { diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100101.java index 8450e289f..d37f4b851 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00100101 parse(String xml) { - return ((MxTrea00100101) MxReadImpl.parse(MxTrea00100101 .class, xml, _classes)); + return ((MxTrea00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100102.java index 61a951ec4..a2869c3d1 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00100102 parse(String xml) { - return ((MxTrea00100102) MxReadImpl.parse(MxTrea00100102 .class, xml, _classes)); + return ((MxTrea00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200101.java index bc3079c8c..6f826e1cd 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00200101 parse(String xml) { - return ((MxTrea00200101) MxReadImpl.parse(MxTrea00200101 .class, xml, _classes)); + return ((MxTrea00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200102.java index fbf918bf4..561d0f446 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00200102 parse(String xml) { - return ((MxTrea00200102) MxReadImpl.parse(MxTrea00200102 .class, xml, _classes)); + return ((MxTrea00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300101.java index 90c33a298..5e1f01611 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00300101 parse(String xml) { - return ((MxTrea00300101) MxReadImpl.parse(MxTrea00300101 .class, xml, _classes)); + return ((MxTrea00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300102.java index 5f2693512..29928804e 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00300102 parse(String xml) { - return ((MxTrea00300102) MxReadImpl.parse(MxTrea00300102 .class, xml, _classes)); + return ((MxTrea00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400101.java index 31b7c8287..28f9c1e77 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00400101 parse(String xml) { - return ((MxTrea00400101) MxReadImpl.parse(MxTrea00400101 .class, xml, _classes)); + return ((MxTrea00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400102.java index f81f13dd4..ec9773bc4 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00400102 parse(String xml) { - return ((MxTrea00400102) MxReadImpl.parse(MxTrea00400102 .class, xml, _classes)); + return ((MxTrea00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500101.java index 717233943..cf343d490 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00500101 parse(String xml) { - return ((MxTrea00500101) MxReadImpl.parse(MxTrea00500101 .class, xml, _classes)); + return ((MxTrea00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500102.java index b67fc74a1..801465697 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00500102 parse(String xml) { - return ((MxTrea00500102) MxReadImpl.parse(MxTrea00500102 .class, xml, _classes)); + return ((MxTrea00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600101.java index 30d608673..9412975c1 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00600101 parse(String xml) { - return ((MxTrea00600101) MxReadImpl.parse(MxTrea00600101 .class, xml, _classes)); + return ((MxTrea00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600102.java index 1e671a4cf..196505c00 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00600102 parse(String xml) { - return ((MxTrea00600102) MxReadImpl.parse(MxTrea00600102 .class, xml, _classes)); + return ((MxTrea00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700101.java index 5c7fc4530..1964cc62b 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00700101 parse(String xml) { - return ((MxTrea00700101) MxReadImpl.parse(MxTrea00700101 .class, xml, _classes)); + return ((MxTrea00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700102.java index 87b2bc4cd..db551d8b7 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00700102 parse(String xml) { - return ((MxTrea00700102) MxReadImpl.parse(MxTrea00700102 .class, xml, _classes)); + return ((MxTrea00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800101.java index b0143ac5a..465bbeee8 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00800101 parse(String xml) { - return ((MxTrea00800101) MxReadImpl.parse(MxTrea00800101 .class, xml, _classes)); + return ((MxTrea00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800102.java index 3e172b136..d20f5a60f 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00800102 parse(String xml) { - return ((MxTrea00800102) MxReadImpl.parse(MxTrea00800102 .class, xml, _classes)); + return ((MxTrea00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900101.java index 9d00bf704..ed2b81bd6 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00900101 parse(String xml) { - return ((MxTrea00900101) MxReadImpl.parse(MxTrea00900101 .class, xml, _classes)); + return ((MxTrea00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900102.java index 48b3736a8..a88c6fbf6 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00900102 parse(String xml) { - return ((MxTrea00900102) MxReadImpl.parse(MxTrea00900102 .class, xml, _classes)); + return ((MxTrea00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900103.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900103.java index 48fe02e42..9078625ad 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900103.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea00900103 parse(String xml) { - return ((MxTrea00900103) MxReadImpl.parse(MxTrea00900103 .class, xml, _classes)); + return ((MxTrea00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000101.java index 40eed70fa..1cd97b528 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01000101 parse(String xml) { - return ((MxTrea01000101) MxReadImpl.parse(MxTrea01000101 .class, xml, _classes)); + return ((MxTrea01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000102.java index 5cf579dc9..d561f5c6b 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01000102 parse(String xml) { - return ((MxTrea01000102) MxReadImpl.parse(MxTrea01000102 .class, xml, _classes)); + return ((MxTrea01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000103.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000103.java index c8881ed1c..ddd00e67e 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000103.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01000103 parse(String xml) { - return ((MxTrea01000103) MxReadImpl.parse(MxTrea01000103 .class, xml, _classes)); + return ((MxTrea01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100101.java index 2bd031404..54fea3b91 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01100101 parse(String xml) { - return ((MxTrea01100101) MxReadImpl.parse(MxTrea01100101 .class, xml, _classes)); + return ((MxTrea01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100102.java index 20e77986d..dc2099d6e 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01100102 parse(String xml) { - return ((MxTrea01100102) MxReadImpl.parse(MxTrea01100102 .class, xml, _classes)); + return ((MxTrea01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100103.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100103.java index 0ff2626e2..8dd6b0b81 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100103.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01100103 parse(String xml) { - return ((MxTrea01100103) MxReadImpl.parse(MxTrea01100103 .class, xml, _classes)); + return ((MxTrea01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200102.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200102.java index daa22dae8..e53d8d65e 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200102.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01200102 parse(String xml) { - return ((MxTrea01200102) MxReadImpl.parse(MxTrea01200102 .class, xml, _classes)); + return ((MxTrea01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200103.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200103.java index 02415ea64..f626b875c 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200103.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01200103 parse(String xml) { - return ((MxTrea01200103) MxReadImpl.parse(MxTrea01200103 .class, xml, _classes)); + return ((MxTrea01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01200103 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200104.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200104.java index 592505f23..f5ed83e2b 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200104.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01200104 parse(String xml) { - return ((MxTrea01200104) MxReadImpl.parse(MxTrea01200104 .class, xml, _classes)); + return ((MxTrea01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01200104 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01300101.java b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01300101.java index bb192e43e..4f4b28fa4 100644 --- a/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01300101.java +++ b/model-trea-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTrea01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTrea01300101 parse(String xml) { - return ((MxTrea01300101) MxReadImpl.parse(MxTrea01300101 .class, xml, _classes)); + return ((MxTrea01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTrea01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTrea01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTrea01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate2.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate2.java index 3dc0d1521..98f01b048 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate2.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AmountsAndValueDate2 { protected ActiveOrHistoricCurrencyAndAmount callAmt; @XmlElement(name = "PutAmt", required = true) protected ActiveOrHistoricCurrencyAndAmount putAmt; - @XmlElement(name = "FnlSttlmDt", required = true) + @XmlElement(name = "FnlSttlmDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fnlSttlmDt; @@ -90,7 +93,7 @@ public AmountsAndValueDate2 setPutAmt(ActiveOrHistoricCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlSttlmDt() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getFnlSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmountsAndValueDate2 setFnlSttlmDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate3.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate3.java index 1029acace..4a5523225 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate3.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AmountsAndValueDate3 { protected ActiveOrHistoricCurrencyAndAmount callAmt; @XmlElement(name = "PutAmt", required = true) protected ActiveOrHistoricCurrencyAndAmount putAmt; - @XmlElement(name = "FnlSttlmDt") + @XmlElement(name = "FnlSttlmDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fnlSttlmDt; @@ -90,7 +93,7 @@ public AmountsAndValueDate3 setPutAmt(ActiveOrHistoricCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFnlSttlmDt() { @@ -102,7 +105,7 @@ public XMLGregorianCalendar getFnlSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmountsAndValueDate3 setFnlSttlmDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData1.java index 9dfe60204..e1ac1b0ad 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ClosingData1 { - @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 ClosingData1 { * * @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 ClosingData1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions1.java index b981e2425..2c571a1e2 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 NonDeliverableForwardValuationConditions1 { @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 NonDeliverableForwardValuationConditions1 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 NonDeliverableForwardValuationConditions1 setValtnDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData1.java index 144f8ed03..37f398f2d 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OpeningData1 { - @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 OpeningData1 { * * @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 OpeningData1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option2.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option2.java index 734fc6792..1b3a929bf 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option2.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option2.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,10 +45,12 @@ public class Option2 { @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) @@ -161,7 +166,7 @@ public Option2 setExrcStyle(OptionStyle2Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEarlstExrcDt() { @@ -173,7 +178,7 @@ public XMLGregorianCalendar getEarlstExrcDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Option2 setEarlstExrcDt(XMLGregorianCalendar value) { @@ -186,7 +191,7 @@ public Option2 setEarlstExrcDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDtAndTm() { @@ -198,7 +203,7 @@ public XMLGregorianCalendar getXpryDtAndTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Option2 setXpryDtAndTm(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option3.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option3.java index d4b0780c9..de4955c19 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option3.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option3.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 Option3 { @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 Option3 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 Option3 setEarlstExrcDt(XMLGregorianCalendar value) { @@ -161,7 +166,7 @@ public Option3 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 Option3 setXpryDtAndTm(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option4.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option4.java index 04b2cff81..3563a27ec 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option4.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option4.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 Option4 { @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 Option4 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 Option4 setEarlstExrcDt(XMLGregorianCalendar value) { @@ -161,7 +166,7 @@ public Option4 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 Option4 setXpryDtAndTm(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option5.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option5.java index 63dfb7f6a..0bdf20b21 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option5.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option5.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 Option5 { @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 Option5 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 Option5 setEarlstExrcDt(XMLGregorianCalendar value) { @@ -161,7 +166,7 @@ public Option5 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 Option5 setXpryDtAndTm(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData2.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData2.java index 10f7e63fc..0ca56c94b 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData2.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionData2 { - @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 OptionData2 { * * @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 OptionData2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData3.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData3.java index 462926242..e17c61242 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData3.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OptionData3 { - @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 OptionData3 { * * @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 OptionData3 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount1.java index 14c6ebf26..ce179761b 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PremiumAmount1 { protected ActiveOrHistoricCurrencyAndAmount amt; @XmlElement(name = "PrmQt", required = true) protected PremiumQuote1Choice prmQt; - @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") @@ -94,7 +97,7 @@ public PremiumAmount1 setPrmQt(PremiumQuote1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSttlmDt() { @@ -106,7 +109,7 @@ public XMLGregorianCalendar getSttlmDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PremiumAmount1 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData1.java index c717aebf1..f38fbdebd 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SettlementData1 { protected PartyIdentification7Choice pngPty; @XmlElement(name = "RcvgPty", required = true) protected PartyIdentification7Choice 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 SettlementData1 setRcvgPty(PartyIdentification7Choice 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 SettlementData1 setSttlmDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement1.java index b52b6ebd5..280caa2ec 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeAgreement1 { - @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) @@ -40,7 +43,7 @@ public class TradeAgreement1 { * * @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 TradeAgreement1 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement2.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement2.java index dad75eb01..2b700f11a 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement2.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeAgreement2 { - @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 TradeAgreement2 { * * @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 TradeAgreement2 setTradDt(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData1.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData1.java index e339a3820..975b6a9f6 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData1.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeData1 { protected String xtndedCurSts; @XmlElement(name = "CurStsSubTp") protected String curStsSubTp; - @XmlElement(name = "CurStsTm") + @XmlElement(name = "CurStsTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar curStsTm; @XmlElement(name = "PrvsSts") @@ -59,7 +62,8 @@ public class TradeData1 { protected String xtndedPrvsSts; @XmlElement(name = "PrvsStsSubTp") protected String prvsStsSubTp; - @XmlElement(name = "PrvsStsTm") + @XmlElement(name = "PrvsStsTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prvsStsTm; @XmlElement(name = "PdctTp") @@ -220,7 +224,7 @@ public TradeData1 setCurStsSubTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCurStsTm() { @@ -232,7 +236,7 @@ public XMLGregorianCalendar getCurStsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeData1 setCurStsTm(XMLGregorianCalendar value) { @@ -320,7 +324,7 @@ public TradeData1 setPrvsStsSubTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrvsStsTm() { @@ -332,7 +336,7 @@ public XMLGregorianCalendar getPrvsStsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeData1 setPrvsStsTm(XMLGregorianCalendar value) { diff --git a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData2.java b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData2.java index 92c987680..af23f50c1 100644 --- a/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData2.java +++ b/model-trea-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TradeData2 { protected String xtndedCurSts; @XmlElement(name = "CurStsSubTp") protected String curStsSubTp; - @XmlElement(name = "CurStsTm") + @XmlElement(name = "CurStsTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar curStsTm; @XmlElement(name = "PrvsSts") @@ -58,7 +61,8 @@ public class TradeData2 { protected String xtndedPrvsSts; @XmlElement(name = "PrvsStsSubTp") protected String prvsStsSubTp; - @XmlElement(name = "PrvsStsTm") + @XmlElement(name = "PrvsStsTm", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar prvsStsTm; @@ -217,7 +221,7 @@ public TradeData2 setCurStsSubTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCurStsTm() { @@ -229,7 +233,7 @@ public XMLGregorianCalendar getCurStsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeData2 setCurStsTm(XMLGregorianCalendar value) { @@ -317,7 +321,7 @@ public TradeData2 setPrvsStsSubTp(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPrvsStsTm() { @@ -329,7 +333,7 @@ public XMLGregorianCalendar getPrvsStsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TradeData2 setPrvsStsTm(XMLGregorianCalendar value) { diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00100101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00100101.java index de10b130f..3605a4da8 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00100101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00100101 parse(String xml) { - return ((MxTsin00100101) MxReadImpl.parse(MxTsin00100101 .class, xml, _classes)); + return ((MxTsin00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00200101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00200101.java index 19e94a29a..13062765c 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00200101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00200101 parse(String xml) { - return ((MxTsin00200101) MxReadImpl.parse(MxTsin00200101 .class, xml, _classes)); + return ((MxTsin00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00300101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00300101.java index 5c0b4a91e..1f20a86de 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00300101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00300101 parse(String xml) { - return ((MxTsin00300101) MxReadImpl.parse(MxTsin00300101 .class, xml, _classes)); + return ((MxTsin00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00400101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00400101.java index 5e8f66056..1796180c4 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00400101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00400101 parse(String xml) { - return ((MxTsin00400101) MxReadImpl.parse(MxTsin00400101 .class, xml, _classes)); + return ((MxTsin00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00500101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00500101.java index 3f10ac2bb..8bdf699cd 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00500101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00500101 parse(String xml) { - return ((MxTsin00500101) MxReadImpl.parse(MxTsin00500101 .class, xml, _classes)); + return ((MxTsin00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00600101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00600101.java index c73daa61f..ff33b4828 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00600101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00600101 parse(String xml) { - return ((MxTsin00600101) MxReadImpl.parse(MxTsin00600101 .class, xml, _classes)); + return ((MxTsin00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00700101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00700101.java index a71ac74c2..c34232fa1 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00700101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00700101 parse(String xml) { - return ((MxTsin00700101) MxReadImpl.parse(MxTsin00700101 .class, xml, _classes)); + return ((MxTsin00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00800101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00800101.java index c89313fed..347ee7ef8 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00800101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00800101 parse(String xml) { - return ((MxTsin00800101) MxReadImpl.parse(MxTsin00800101 .class, xml, _classes)); + return ((MxTsin00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00900101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00900101.java index 9a0572445..e3c920bce 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00900101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin00900101 parse(String xml) { - return ((MxTsin00900101) MxReadImpl.parse(MxTsin00900101 .class, xml, _classes)); + return ((MxTsin00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01000101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01000101.java index 67d63ae02..fffcff663 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01000101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin01000101 parse(String xml) { - return ((MxTsin01000101) MxReadImpl.parse(MxTsin01000101 .class, xml, _classes)); + return ((MxTsin01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01100101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01100101.java index 6b9414b44..d5607bc67 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01100101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin01100101 parse(String xml) { - return ((MxTsin01100101) MxReadImpl.parse(MxTsin01100101 .class, xml, _classes)); + return ((MxTsin01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01200101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01200101.java index 1028598c4..0ed405d22 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01200101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin01200101 parse(String xml) { - return ((MxTsin01200101) MxReadImpl.parse(MxTsin01200101 .class, xml, _classes)); + return ((MxTsin01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01300101.java b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01300101.java index 86313a107..a113cedd5 100644 --- a/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01300101.java +++ b/model-tsin-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsin01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsin01300101 parse(String xml) { - return ((MxTsin01300101) MxReadImpl.parse(MxTsin01300101 .class, xml, _classes)); + return ((MxTsin01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsin01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsin01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsin01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndPeriod1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndPeriod1.java index 8c33fb955..ae03891f5 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndPeriod1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndPeriod1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AmountAndPeriod1 { @XmlElement(name = "Amt", required = true) protected ActiveCurrencyAndAmount 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; @@ -66,7 +70,7 @@ public AmountAndPeriod1 setAmt(ActiveCurrencyAndAmount value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStartDt() { @@ -78,7 +82,7 @@ public XMLGregorianCalendar getStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmountAndPeriod1 setStartDt(XMLGregorianCalendar value) { @@ -91,7 +95,7 @@ public AmountAndPeriod1 setStartDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEndDt() { @@ -103,7 +107,7 @@ public XMLGregorianCalendar getEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AmountAndPeriod1 setEndDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRequestInformation1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRequestInformation1.java index 12ad62984..6c1968119 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRequestInformation1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CancellationRequestInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CancellationRequestInformation1 { @XmlElement(name = "OrgnlGrpId", required = true) protected String orgnlGrpId; - @XmlElement(name = "OrgnlCreDtTm", required = true) + @XmlElement(name = "OrgnlCreDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar orgnlCreDtTm; @XmlElement(name = "NbOfInvcReqs") @@ -80,7 +83,7 @@ public CancellationRequestInformation1 setOrgnlGrpId(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 CancellationRequestInformation1 setOrgnlCreDtTm(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation1.java index c511dcdbd..7a2917f4d 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 DocumentGeneralInformation1 { protected String docNb; @XmlElement(name = "SndrRcvrSeqId") protected String sndrRcvrSeqId; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElement(name = "URL") @@ -122,7 +125,7 @@ public DocumentGeneralInformation1 setSndrRcvrSeqId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -134,7 +137,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public DocumentGeneralInformation1 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00600101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00600101.java index f8451dc29..b92501210 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00600101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00600101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin00600101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.006.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin00600101 setIdr(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 FinancialItemParameters1Tsin00600101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00700101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00700101.java index a3d7c3298..e023b741f 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00700101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00700101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin00700101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.007.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin00700101 setIdr(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 FinancialItemParameters1Tsin00700101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00800101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00800101.java index be8ad385c..f38b49afb 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00800101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00800101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin00800101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.008.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin00800101 setIdr(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 FinancialItemParameters1Tsin00800101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00900101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00900101.java index 4cf3b4e00..7a5b0665d 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00900101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin00900101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin00900101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.009.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin00900101 setIdr(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 FinancialItemParameters1Tsin00900101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01000101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01000101.java index 4a0a96994..7e7ec3570 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01000101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01000101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin01000101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.010.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin01000101 setIdr(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 FinancialItemParameters1Tsin01000101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01100101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01100101.java index 795500acc..460736246 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01100101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01100101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin01100101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.011.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin01100101 setIdr(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 FinancialItemParameters1Tsin01100101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01200101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01200101.java index 7faa66c31..4cec84380 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01200101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01200101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin01200101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.012.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin01200101 setIdr(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 FinancialItemParameters1Tsin01200101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01300101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01300101.java index 771804dd4..c3bedbdb1 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01300101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsin01300101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsin01300101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.013.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsin01300101 setIdr(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 FinancialItemParameters1Tsin01300101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1.java index 20f76cb53..0b3d16d30 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancingAgreementList1 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.011.001.01", type = JAXBElement.class, required = false) @@ -114,7 +117,7 @@ public FinancingAgreementList1 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -126,7 +129,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingAgreementList1 setDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin00900101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin00900101.java index 580856b7d..da50835c9 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin00900101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin00900101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancingAgreementList1Tsin00900101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.009.001.01", type = JAXBElement.class, required = false) @@ -114,7 +117,7 @@ public FinancingAgreementList1Tsin00900101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -126,7 +129,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingAgreementList1Tsin00900101 setDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01000101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01000101.java index ddc7e0d97..97c72c4cf 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01000101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01000101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancingAgreementList1Tsin01000101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.010.001.01", type = JAXBElement.class, required = false) @@ -114,7 +117,7 @@ public FinancingAgreementList1Tsin01000101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -126,7 +129,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingAgreementList1Tsin01000101 setDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01200101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01200101.java index 146e61469..cf3706c85 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01200101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingAgreementList1Tsin01200101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancingAgreementList1Tsin01200101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.012.001.01", type = JAXBElement.class, required = false) @@ -114,7 +117,7 @@ public FinancingAgreementList1Tsin01200101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -126,7 +129,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingAgreementList1Tsin01200101 setDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1.java index 7c5e5b35c..4623e8974 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +51,14 @@ public class FinancingItemList1 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.006.001.01", type = JAXBElement.class, required = false) protected List> rltdDoc; - @XmlElement(name = "AmtCutOffDt") + @XmlElement(name = "AmtCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar amtCutOffDt; @XmlElement(name = "Assgne", required = true) @@ -118,7 +122,7 @@ public FinancingItemList1 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -130,7 +134,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1 setIsseDt(XMLGregorianCalendar value) { @@ -172,7 +176,7 @@ public List> getRltdDoc() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAmtCutOffDt() { @@ -184,7 +188,7 @@ public XMLGregorianCalendar getAmtCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1 setAmtCutOffDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00700101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00700101.java index d57897db3..de9ab4037 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00700101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00700101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +51,14 @@ public class FinancingItemList1Tsin00700101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.007.001.01", type = JAXBElement.class, required = false) protected List> rltdDoc; - @XmlElement(name = "AmtCutOffDt") + @XmlElement(name = "AmtCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar amtCutOffDt; @XmlElement(name = "Assgne", required = true) @@ -118,7 +122,7 @@ public FinancingItemList1Tsin00700101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -130,7 +134,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin00700101 setIsseDt(XMLGregorianCalendar value) { @@ -172,7 +176,7 @@ public List> getRltdDoc() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAmtCutOffDt() { @@ -184,7 +188,7 @@ public XMLGregorianCalendar getAmtCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin00700101 setAmtCutOffDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00800101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00800101.java index 0a169e4af..973d78592 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00800101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin00800101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +51,14 @@ public class FinancingItemList1Tsin00800101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.008.001.01", type = JAXBElement.class, required = false) protected List> rltdDoc; - @XmlElement(name = "AmtCutOffDt") + @XmlElement(name = "AmtCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar amtCutOffDt; @XmlElement(name = "Assgne", required = true) @@ -118,7 +122,7 @@ public FinancingItemList1Tsin00800101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -130,7 +134,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin00800101 setIsseDt(XMLGregorianCalendar value) { @@ -172,7 +176,7 @@ public List> getRltdDoc() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAmtCutOffDt() { @@ -184,7 +188,7 @@ public XMLGregorianCalendar getAmtCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin00800101 setAmtCutOffDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin01300101.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin01300101.java index 8150ed763..2ffdef4b6 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin01300101.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingItemList1Tsin01300101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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,12 +51,14 @@ public class FinancingItemList1Tsin01300101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsin.013.001.01", type = JAXBElement.class, required = false) protected List> rltdDoc; - @XmlElement(name = "AmtCutOffDt") + @XmlElement(name = "AmtCutOffDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar amtCutOffDt; @XmlElement(name = "Assgne", required = true) @@ -118,7 +122,7 @@ public FinancingItemList1Tsin01300101 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -130,7 +134,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin01300101 setIsseDt(XMLGregorianCalendar value) { @@ -172,7 +176,7 @@ public List> getRltdDoc() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getAmtCutOffDt() { @@ -184,7 +188,7 @@ public XMLGregorianCalendar getAmtCutOffDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public FinancingItemList1Tsin01300101 setAmtCutOffDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment1.java index 65486bf55..37dd9ac1d 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Instalment1 { @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) @@ -65,7 +68,7 @@ public Instalment1 setSeqId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDueDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getPmtDueDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Instalment1 setPmtDueDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalRequestInformation1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalRequestInformation1.java index 7f5c10585..e9839b7fe 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalRequestInformation1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalRequestInformation1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OriginalRequestInformation1 { @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; @XmlElement(name = "FincgRqstr") @@ -77,7 +80,7 @@ public OriginalRequestInformation1 setId(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 OriginalRequestInformation1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms3.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms3.java index 5228984aa..584867af9 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms3.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms3.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 PaymentTerms3 { - @XmlElement(name = "DueDt") + @XmlElement(name = "DueDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dueDt; @XmlElement(name = "PmtPrd") @@ -67,7 +70,7 @@ public class PaymentTerms3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDueDt() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getDueDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTerms3 setDueDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PercentageAndPeriod1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PercentageAndPeriod1.java index d4c097b94..98842ead5 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PercentageAndPeriod1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PercentageAndPeriod1.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 PercentageAndPeriod1 { @XmlElement(name = "Pctg", required = true) protected BigDecimal pctg; - @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; @@ -67,7 +71,7 @@ public PercentageAndPeriod1 setPctg(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getStartDt() { @@ -79,7 +83,7 @@ public XMLGregorianCalendar getStartDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PercentageAndPeriod1 setStartDt(XMLGregorianCalendar value) { @@ -92,7 +96,7 @@ public PercentageAndPeriod1 setStartDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getEndDt() { @@ -104,7 +108,7 @@ public XMLGregorianCalendar getEndDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PercentageAndPeriod1 setEndDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation2.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation2.java index fa4b0d7a3..aa2954962 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation2.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReferredDocumentInformation2 { protected ReferredDocumentType1 tp; @XmlElement(name = "DocNb") protected String docNb; - @XmlElement(name = "RltdDt") + @XmlElement(name = "RltdDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar rltdDt; @XmlElement(name = "DocAmt") @@ -93,7 +96,7 @@ public ReferredDocumentInformation2 setDocNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getRltdDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getRltdDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReferredDocumentInformation2 setRltdDt(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestGroupInformation1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestGroupInformation1.java index ef7d8ff93..8aea82a09 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestGroupInformation1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestGroupInformation1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RequestGroupInformation1 { @XmlElement(name = "GrpId", required = true) protected String grpId; - @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") @@ -94,7 +97,7 @@ public RequestGroupInformation1 setGrpId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getCreDtTm() { @@ -106,7 +109,7 @@ public XMLGregorianCalendar getCreDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RequestGroupInformation1 setCreDtTm(XMLGregorianCalendar value) { diff --git a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTax1.java b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTax1.java index cf5b49c3a..166e6a097 100644 --- a/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTax1.java +++ b/model-tsin-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTax1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 SettlementTax1 { protected List clctdAmt; @XmlElement(name = "BsisAmt") protected List bsisAmt; - @XmlElement(name = "TaxPtDt") + @XmlElement(name = "TaxPtDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar taxPtDt; @@ -128,7 +131,7 @@ public List getBsisAmt() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getTaxPtDt() { @@ -140,7 +143,7 @@ public XMLGregorianCalendar getTaxPtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public SettlementTax1 setTaxPtDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100102.java index 1bafd10bf..8f1bed329 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00100102 parse(String xml) { - return ((MxTsmt00100102) MxReadImpl.parse(MxTsmt00100102 .class, xml, _classes)); + return ((MxTsmt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100103.java index 14ae526e0..06cfaada5 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00100103 parse(String xml) { - return ((MxTsmt00100103) MxReadImpl.parse(MxTsmt00100103 .class, xml, _classes)); + return ((MxTsmt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200102.java index 67e327dbc..ee8938a2b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00200102 parse(String xml) { - return ((MxTsmt00200102) MxReadImpl.parse(MxTsmt00200102 .class, xml, _classes)); + return ((MxTsmt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200103.java index 4f57ed15e..c883744fb 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00200103 parse(String xml) { - return ((MxTsmt00200103) MxReadImpl.parse(MxTsmt00200103 .class, xml, _classes)); + return ((MxTsmt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00200103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200104.java index ac9e76909..d6283f943 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00200104 parse(String xml) { - return ((MxTsmt00200104) MxReadImpl.parse(MxTsmt00200104 .class, xml, _classes)); + return ((MxTsmt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00200104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300102.java index 1f28ecc3a..c0946c020 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00300102 parse(String xml) { - return ((MxTsmt00300102) MxReadImpl.parse(MxTsmt00300102 .class, xml, _classes)); + return ((MxTsmt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300103.java index e0f02b514..88d051060 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00300103 parse(String xml) { - return ((MxTsmt00300103) MxReadImpl.parse(MxTsmt00300103 .class, xml, _classes)); + return ((MxTsmt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00300103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400101.java index a93243e8d..730e67bff 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00400101 parse(String xml) { - return ((MxTsmt00400101) MxReadImpl.parse(MxTsmt00400101 .class, xml, _classes)); + return ((MxTsmt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400102.java index c31cd4792..58a16b966 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00400102 parse(String xml) { - return ((MxTsmt00400102) MxReadImpl.parse(MxTsmt00400102 .class, xml, _classes)); + return ((MxTsmt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00400102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500101.java index 136b25412..0b2c549ce 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00500101 parse(String xml) { - return ((MxTsmt00500101) MxReadImpl.parse(MxTsmt00500101 .class, xml, _classes)); + return ((MxTsmt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500102.java index 32ceb829b..24312bef8 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00500102 parse(String xml) { - return ((MxTsmt00500102) MxReadImpl.parse(MxTsmt00500102 .class, xml, _classes)); + return ((MxTsmt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600102.java index 27a621df0..b3c91e85d 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00600102 parse(String xml) { - return ((MxTsmt00600102) MxReadImpl.parse(MxTsmt00600102 .class, xml, _classes)); + return ((MxTsmt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00600102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600103.java index 5004da5df..a81b5f25c 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00600103 parse(String xml) { - return ((MxTsmt00600103) MxReadImpl.parse(MxTsmt00600103 .class, xml, _classes)); + return ((MxTsmt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00600103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700101.java index 41ed2c6c1..f580c2864 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00700101 parse(String xml) { - return ((MxTsmt00700101) MxReadImpl.parse(MxTsmt00700101 .class, xml, _classes)); + return ((MxTsmt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700102.java index 0389b49fe..51ce7cfdc 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00700102 parse(String xml) { - return ((MxTsmt00700102) MxReadImpl.parse(MxTsmt00700102 .class, xml, _classes)); + return ((MxTsmt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00700102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800102.java index ba64f90af..a19381e4b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00800102 parse(String xml) { - return ((MxTsmt00800102) MxReadImpl.parse(MxTsmt00800102 .class, xml, _classes)); + return ((MxTsmt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800103.java index 8202e6151..91eb3b628 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00800103 parse(String xml) { - return ((MxTsmt00800103) MxReadImpl.parse(MxTsmt00800103 .class, xml, _classes)); + return ((MxTsmt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00800103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900102.java index 7099c22df..2c9ba7ee9 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00900102 parse(String xml) { - return ((MxTsmt00900102) MxReadImpl.parse(MxTsmt00900102 .class, xml, _classes)); + return ((MxTsmt00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900103.java index 33004005c..7446f9d0a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00900103 parse(String xml) { - return ((MxTsmt00900103) MxReadImpl.parse(MxTsmt00900103 .class, xml, _classes)); + return ((MxTsmt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00900103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900104.java index b5e4f3e2c..a4ca8f0dc 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00900104 parse(String xml) { - return ((MxTsmt00900104) MxReadImpl.parse(MxTsmt00900104 .class, xml, _classes)); + return ((MxTsmt00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00900104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900105.java index 1b2c4683b..166420916 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt00900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt00900105 parse(String xml) { - return ((MxTsmt00900105) MxReadImpl.parse(MxTsmt00900105 .class, xml, _classes)); + return ((MxTsmt00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt00900105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000102.java index 3b3646033..f9c52ab7a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01000102 parse(String xml) { - return ((MxTsmt01000102) MxReadImpl.parse(MxTsmt01000102 .class, xml, _classes)); + return ((MxTsmt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000103.java index b187b3ef7..6b1e5794a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01000103 parse(String xml) { - return ((MxTsmt01000103) MxReadImpl.parse(MxTsmt01000103 .class, xml, _classes)); + return ((MxTsmt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01000103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100102.java index 3548023f5..d71d23102 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01100102 parse(String xml) { - return ((MxTsmt01100102) MxReadImpl.parse(MxTsmt01100102 .class, xml, _classes)); + return ((MxTsmt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100103.java index bd57e3a89..da2440720 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01100103 parse(String xml) { - return ((MxTsmt01100103) MxReadImpl.parse(MxTsmt01100103 .class, xml, _classes)); + return ((MxTsmt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100104.java index 4d8e2ad6e..d626b49f8 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01100104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01100104 parse(String xml) { - return ((MxTsmt01100104) MxReadImpl.parse(MxTsmt01100104 .class, xml, _classes)); + return ((MxTsmt01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01100104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200102.java index 53aa260ba..02a9ab987 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01200102 parse(String xml) { - return ((MxTsmt01200102) MxReadImpl.parse(MxTsmt01200102 .class, xml, _classes)); + return ((MxTsmt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200103.java index 6949acc5d..a0945bd13 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01200103 parse(String xml) { - return ((MxTsmt01200103) MxReadImpl.parse(MxTsmt01200103 .class, xml, _classes)); + return ((MxTsmt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01200103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200104.java index 4dc27788c..9030de60a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01200104 parse(String xml) { - return ((MxTsmt01200104) MxReadImpl.parse(MxTsmt01200104 .class, xml, _classes)); + return ((MxTsmt01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01200104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200105.java index 66d853775..f9ef9b9e2 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01200105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01200105 parse(String xml) { - return ((MxTsmt01200105) MxReadImpl.parse(MxTsmt01200105 .class, xml, _classes)); + return ((MxTsmt01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01200105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300102.java index 803b1a0d6..088cd24fa 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01300102 parse(String xml) { - return ((MxTsmt01300102) MxReadImpl.parse(MxTsmt01300102 .class, xml, _classes)); + return ((MxTsmt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300103.java index 8d401ae4b..4c9f94222 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01300103 parse(String xml) { - return ((MxTsmt01300103) MxReadImpl.parse(MxTsmt01300103 .class, xml, _classes)); + return ((MxTsmt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01300103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400102.java index 7ec843d28..35bdf057d 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01400102 parse(String xml) { - return ((MxTsmt01400102) MxReadImpl.parse(MxTsmt01400102 .class, xml, _classes)); + return ((MxTsmt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01400102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400103.java index 131584788..38f0cdbc1 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01400103 parse(String xml) { - return ((MxTsmt01400103) MxReadImpl.parse(MxTsmt01400103 .class, xml, _classes)); + return ((MxTsmt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01400103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400104.java index d7f9c4648..a213cd989 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01400104 parse(String xml) { - return ((MxTsmt01400104) MxReadImpl.parse(MxTsmt01400104 .class, xml, _classes)); + return ((MxTsmt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01400104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400105.java index 061512e2e..12dda877b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01400105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01400105 parse(String xml) { - return ((MxTsmt01400105) MxReadImpl.parse(MxTsmt01400105 .class, xml, _classes)); + return ((MxTsmt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01400105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500102.java index f62ba97a7..429f1b41e 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01500102 parse(String xml) { - return ((MxTsmt01500102) MxReadImpl.parse(MxTsmt01500102 .class, xml, _classes)); + return ((MxTsmt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500103.java index 8b77b1ee1..f3a249353 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01500103 parse(String xml) { - return ((MxTsmt01500103) MxReadImpl.parse(MxTsmt01500103 .class, xml, _classes)); + return ((MxTsmt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01500103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600102.java index 3f0718e5a..0751e529c 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01600102 parse(String xml) { - return ((MxTsmt01600102) MxReadImpl.parse(MxTsmt01600102 .class, xml, _classes)); + return ((MxTsmt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01600102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600103.java index d7cfdb178..785307da4 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01600103 parse(String xml) { - return ((MxTsmt01600103) MxReadImpl.parse(MxTsmt01600103 .class, xml, _classes)); + return ((MxTsmt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01600103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700102.java index 60aba292d..9dc021051 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01700102 parse(String xml) { - return ((MxTsmt01700102) MxReadImpl.parse(MxTsmt01700102 .class, xml, _classes)); + return ((MxTsmt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01700102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700103.java index 7975cf779..7c084ab99 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01700103 parse(String xml) { - return ((MxTsmt01700103) MxReadImpl.parse(MxTsmt01700103 .class, xml, _classes)); + return ((MxTsmt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01700103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700104.java index c70274fe2..b796e250b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01700104 parse(String xml) { - return ((MxTsmt01700104) MxReadImpl.parse(MxTsmt01700104 .class, xml, _classes)); + return ((MxTsmt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01700104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700105.java index 79277603a..a9f49fdea 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01700105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01700105 parse(String xml) { - return ((MxTsmt01700105) MxReadImpl.parse(MxTsmt01700105 .class, xml, _classes)); + return ((MxTsmt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01700105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800102.java index 563e9f89d..5a2d5d51e 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01800102 parse(String xml) { - return ((MxTsmt01800102) MxReadImpl.parse(MxTsmt01800102 .class, xml, _classes)); + return ((MxTsmt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01800102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800103.java index 6ef1751ec..1ccb97d04 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01800103 parse(String xml) { - return ((MxTsmt01800103) MxReadImpl.parse(MxTsmt01800103 .class, xml, _classes)); + return ((MxTsmt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01800103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800104.java index 9a5157e99..3b86f83a9 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01800104 parse(String xml) { - return ((MxTsmt01800104) MxReadImpl.parse(MxTsmt01800104 .class, xml, _classes)); + return ((MxTsmt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01800104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800105.java index 77a0574d7..f0a2630fb 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01800105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01800105 parse(String xml) { - return ((MxTsmt01800105) MxReadImpl.parse(MxTsmt01800105 .class, xml, _classes)); + return ((MxTsmt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01800105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900102.java index 81d8befe5..768122c09 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01900102 parse(String xml) { - return ((MxTsmt01900102) MxReadImpl.parse(MxTsmt01900102 .class, xml, _classes)); + return ((MxTsmt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01900102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900103.java index 7272d8310..1de460308 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01900103 parse(String xml) { - return ((MxTsmt01900103) MxReadImpl.parse(MxTsmt01900103 .class, xml, _classes)); + return ((MxTsmt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01900103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900104.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900104.java index df146610d..6c5dc4527 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900104.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900104.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01900104 parse(String xml) { - return ((MxTsmt01900104) MxReadImpl.parse(MxTsmt01900104 .class, xml, _classes)); + return ((MxTsmt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01900104 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900105.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900105.java index d1c0ac6f4..a322a41bf 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900105.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt01900105.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt01900105 parse(String xml) { - return ((MxTsmt01900105) MxReadImpl.parse(MxTsmt01900105 .class, xml, _classes)); + return ((MxTsmt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt01900105 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000101.java index 9c6af1c03..6419f039f 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02000101 parse(String xml) { - return ((MxTsmt02000101) MxReadImpl.parse(MxTsmt02000101 .class, xml, _classes)); + return ((MxTsmt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02000101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000102.java index 9df2f831d..9321c943b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02000102 parse(String xml) { - return ((MxTsmt02000102) MxReadImpl.parse(MxTsmt02000102 .class, xml, _classes)); + return ((MxTsmt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02000102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100102.java index 5d3679a0f..3cb692e9d 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02100102 parse(String xml) { - return ((MxTsmt02100102) MxReadImpl.parse(MxTsmt02100102 .class, xml, _classes)); + return ((MxTsmt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100103.java index c5963386a..39078d021 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02100103 parse(String xml) { - return ((MxTsmt02100103) MxReadImpl.parse(MxTsmt02100103 .class, xml, _classes)); + return ((MxTsmt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200101.java index 2ebb73492..c3acadf30 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02200101 parse(String xml) { - return ((MxTsmt02200101) MxReadImpl.parse(MxTsmt02200101 .class, xml, _classes)); + return ((MxTsmt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200102.java index a90ce16f1..0ef7f11ce 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02200102 parse(String xml) { - return ((MxTsmt02200102) MxReadImpl.parse(MxTsmt02200102 .class, xml, _classes)); + return ((MxTsmt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300102.java index a3619dcb8..6615ccd03 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02300102 parse(String xml) { - return ((MxTsmt02300102) MxReadImpl.parse(MxTsmt02300102 .class, xml, _classes)); + return ((MxTsmt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300103.java index 370393afc..58a03b145 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02300103 parse(String xml) { - return ((MxTsmt02300103) MxReadImpl.parse(MxTsmt02300103 .class, xml, _classes)); + return ((MxTsmt02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02300103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02400103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02400103.java index 8b8355d06..6a06e92e8 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02400103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02400103 parse(String xml) { - return ((MxTsmt02400103) MxReadImpl.parse(MxTsmt02400103 .class, xml, _classes)); + return ((MxTsmt02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02400103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500102.java index 84e5f3166..0adccd562 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02500102 parse(String xml) { - return ((MxTsmt02500102) MxReadImpl.parse(MxTsmt02500102 .class, xml, _classes)); + return ((MxTsmt02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500103.java index c0746e143..d67748118 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02500103 parse(String xml) { - return ((MxTsmt02500103) MxReadImpl.parse(MxTsmt02500103 .class, xml, _classes)); + return ((MxTsmt02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02500103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600101.java index 997cc22b0..412ee2cac 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02600101 parse(String xml) { - return ((MxTsmt02600101) MxReadImpl.parse(MxTsmt02600101 .class, xml, _classes)); + return ((MxTsmt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600102.java index b3a09c384..f01d7b741 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02600102 parse(String xml) { - return ((MxTsmt02600102) MxReadImpl.parse(MxTsmt02600102 .class, xml, _classes)); + return ((MxTsmt02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02600102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700101.java index a31746e8f..9e7d88938 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02700101 parse(String xml) { - return ((MxTsmt02700101) MxReadImpl.parse(MxTsmt02700101 .class, xml, _classes)); + return ((MxTsmt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700102.java index af1385e00..aa159d8a2 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02700102 parse(String xml) { - return ((MxTsmt02700102) MxReadImpl.parse(MxTsmt02700102 .class, xml, _classes)); + return ((MxTsmt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02700102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800102.java index 038adbf65..a4ecb042d 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02800102 parse(String xml) { - return ((MxTsmt02800102) MxReadImpl.parse(MxTsmt02800102 .class, xml, _classes)); + return ((MxTsmt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02800102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800103.java index 100bd8857..254a255fc 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02800103 parse(String xml) { - return ((MxTsmt02800103) MxReadImpl.parse(MxTsmt02800103 .class, xml, _classes)); + return ((MxTsmt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02800103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900101.java index d0ca0e473..63bf99913 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02900101 parse(String xml) { - return ((MxTsmt02900101) MxReadImpl.parse(MxTsmt02900101 .class, xml, _classes)); + return ((MxTsmt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900102.java index d3bba44a6..be80f3684 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt02900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt02900102 parse(String xml) { - return ((MxTsmt02900102) MxReadImpl.parse(MxTsmt02900102 .class, xml, _classes)); + return ((MxTsmt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt02900102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000102.java index 9124b509c..4db7d5623 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03000102 parse(String xml) { - return ((MxTsmt03000102) MxReadImpl.parse(MxTsmt03000102 .class, xml, _classes)); + return ((MxTsmt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03000102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000103.java index 63497bb9c..8bb250d08 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03000103 parse(String xml) { - return ((MxTsmt03000103) MxReadImpl.parse(MxTsmt03000103 .class, xml, _classes)); + return ((MxTsmt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03000103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03100103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03100103.java index b13a56fcd..b67d592b9 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03100103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03100103 parse(String xml) { - return ((MxTsmt03100103) MxReadImpl.parse(MxTsmt03100103 .class, xml, _classes)); + return ((MxTsmt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200102.java index ef908e27a..78716300b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03200102 parse(String xml) { - return ((MxTsmt03200102) MxReadImpl.parse(MxTsmt03200102 .class, xml, _classes)); + return ((MxTsmt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200103.java index f2682da8f..683455b2a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03200103 parse(String xml) { - return ((MxTsmt03200103) MxReadImpl.parse(MxTsmt03200103 .class, xml, _classes)); + return ((MxTsmt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03200103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300102.java index 0cd33344a..6467aee65 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03300102 parse(String xml) { - return ((MxTsmt03300102) MxReadImpl.parse(MxTsmt03300102 .class, xml, _classes)); + return ((MxTsmt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03300102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300103.java index 52767bcc5..dab36cd07 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03300103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03300103 parse(String xml) { - return ((MxTsmt03300103) MxReadImpl.parse(MxTsmt03300103 .class, xml, _classes)); + return ((MxTsmt03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03300103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400102.java index d498c601d..42492cb40 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03400102 parse(String xml) { - return ((MxTsmt03400102) MxReadImpl.parse(MxTsmt03400102 .class, xml, _classes)); + return ((MxTsmt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03400102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400103.java index fa6d3db8f..3e3c07dc2 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03400103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03400103 parse(String xml) { - return ((MxTsmt03400103) MxReadImpl.parse(MxTsmt03400103 .class, xml, _classes)); + return ((MxTsmt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03400103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500102.java index 154a58df3..8b9fc3e5e 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03500102 parse(String xml) { - return ((MxTsmt03500102) MxReadImpl.parse(MxTsmt03500102 .class, xml, _classes)); + return ((MxTsmt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500103.java index c15e2e7d3..5ac44d20a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03500103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03500103 parse(String xml) { - return ((MxTsmt03500103) MxReadImpl.parse(MxTsmt03500103 .class, xml, _classes)); + return ((MxTsmt03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03500103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600102.java index 633f335c7..95644991a 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03600102 parse(String xml) { - return ((MxTsmt03600102) MxReadImpl.parse(MxTsmt03600102 .class, xml, _classes)); + return ((MxTsmt03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03600102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600103.java index 8214a73ef..9b04d6f85 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03600103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03600103 parse(String xml) { - return ((MxTsmt03600103) MxReadImpl.parse(MxTsmt03600103 .class, xml, _classes)); + return ((MxTsmt03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03600103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700102.java index 4e67108b6..dbfdb5995 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03700102 parse(String xml) { - return ((MxTsmt03700102) MxReadImpl.parse(MxTsmt03700102 .class, xml, _classes)); + return ((MxTsmt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03700102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700103.java index 5bc98951a..4b6ffce74 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03700103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03700103 parse(String xml) { - return ((MxTsmt03700103) MxReadImpl.parse(MxTsmt03700103 .class, xml, _classes)); + return ((MxTsmt03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03700103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800102.java index 89676e3f2..a62fb913b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03800102 parse(String xml) { - return ((MxTsmt03800102) MxReadImpl.parse(MxTsmt03800102 .class, xml, _classes)); + return ((MxTsmt03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03800102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800103.java index 0e8237ba1..178e364af 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03800103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03800103 parse(String xml) { - return ((MxTsmt03800103) MxReadImpl.parse(MxTsmt03800103 .class, xml, _classes)); + return ((MxTsmt03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03800103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03900102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03900102.java index cc774af7c..438e9cda4 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03900102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt03900102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt03900102 parse(String xml) { - return ((MxTsmt03900102) MxReadImpl.parse(MxTsmt03900102 .class, xml, _classes)); + return ((MxTsmt03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt03900102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000102.java index 13dd5a60b..bcf1b7aea 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04000102 parse(String xml) { - return ((MxTsmt04000102) MxReadImpl.parse(MxTsmt04000102 .class, xml, _classes)); + return ((MxTsmt04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04000102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000103.java index 7dea72921..f2ff14637 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04000103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04000103 parse(String xml) { - return ((MxTsmt04000103) MxReadImpl.parse(MxTsmt04000103 .class, xml, _classes)); + return ((MxTsmt04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04000103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100102.java index 4c133c176..e5dec0cf2 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04100102 parse(String xml) { - return ((MxTsmt04100102) MxReadImpl.parse(MxTsmt04100102 .class, xml, _classes)); + return ((MxTsmt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04100102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100103.java index 491c9f472..8acb8cb6b 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04100103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04100103 parse(String xml) { - return ((MxTsmt04100103) MxReadImpl.parse(MxTsmt04100103 .class, xml, _classes)); + return ((MxTsmt04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04100103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200102.java index 349430825..00ef8eabb 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04200102 parse(String xml) { - return ((MxTsmt04200102) MxReadImpl.parse(MxTsmt04200102 .class, xml, _classes)); + return ((MxTsmt04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04200102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200103.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200103.java index 2f6548dbd..a7c7588ca 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200103.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04200103.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04200103 parse(String xml) { - return ((MxTsmt04200103) MxReadImpl.parse(MxTsmt04200103 .class, xml, _classes)); + return ((MxTsmt04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04200103 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400101.java index 3252e642f..c7cc9641c 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04400101 parse(String xml) { - return ((MxTsmt04400101) MxReadImpl.parse(MxTsmt04400101 .class, xml, _classes)); + return ((MxTsmt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400102.java index 7216ef2d3..7d4e66d6f 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04400102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04400102 parse(String xml) { - return ((MxTsmt04400102) MxReadImpl.parse(MxTsmt04400102 .class, xml, _classes)); + return ((MxTsmt04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04400102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500101.java index 244e0497e..304929888 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04500101 parse(String xml) { - return ((MxTsmt04500101) MxReadImpl.parse(MxTsmt04500101 .class, xml, _classes)); + return ((MxTsmt04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500102.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500102.java index 1fee9a66c..e2eb20635 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500102.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04500102.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04500102 parse(String xml) { - return ((MxTsmt04500102) MxReadImpl.parse(MxTsmt04500102 .class, xml, _classes)); + return ((MxTsmt04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04500102 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04600101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04600101.java index a735ef32a..854c438f2 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04600101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04600101 parse(String xml) { - return ((MxTsmt04600101) MxReadImpl.parse(MxTsmt04600101 .class, xml, _classes)); + return ((MxTsmt04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04700101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04700101.java index b22a1771b..f7b046c48 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04700101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04700101 parse(String xml) { - return ((MxTsmt04700101) MxReadImpl.parse(MxTsmt04700101 .class, xml, _classes)); + return ((MxTsmt04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04800101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04800101.java index dcf984430..9ae4b544c 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04800101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04800101 parse(String xml) { - return ((MxTsmt04800101) MxReadImpl.parse(MxTsmt04800101 .class, xml, _classes)); + return ((MxTsmt04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04800101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04900101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04900101.java index f961c3b48..9bcd177f1 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04900101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt04900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt04900101 parse(String xml) { - return ((MxTsmt04900101) MxReadImpl.parse(MxTsmt04900101 .class, xml, _classes)); + return ((MxTsmt04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt04900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05000101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05000101.java index 82cd9b25c..9d1e73680 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05000101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05000101 parse(String xml) { - return ((MxTsmt05000101) MxReadImpl.parse(MxTsmt05000101 .class, xml, _classes)); + return ((MxTsmt05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05000101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05100101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05100101.java index 561956ef0..7f4d41e3d 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05100101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05100101 parse(String xml) { - return ((MxTsmt05100101) MxReadImpl.parse(MxTsmt05100101 .class, xml, _classes)); + return ((MxTsmt05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05200101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05200101.java index c883a4ea6..645c351e5 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05200101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05200101 parse(String xml) { - return ((MxTsmt05200101) MxReadImpl.parse(MxTsmt05200101 .class, xml, _classes)); + return ((MxTsmt05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05300101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05300101.java index 90fe8cd19..bed32b676 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05300101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05300101 parse(String xml) { - return ((MxTsmt05300101) MxReadImpl.parse(MxTsmt05300101 .class, xml, _classes)); + return ((MxTsmt05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05400101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05400101.java index c855fd4c6..e5c475640 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05400101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05400101 parse(String xml) { - return ((MxTsmt05400101) MxReadImpl.parse(MxTsmt05400101 .class, xml, _classes)); + return ((MxTsmt05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05500101.java b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05500101.java index 86c8f0e77..dc71f4600 100644 --- a/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05500101.java +++ b/model-tsmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsmt05500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsmt05500101 parse(String xml) { - return ((MxTsmt05500101) MxReadImpl.parse(MxTsmt05500101 .class, xml, _classes)); + return ((MxTsmt05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsmt05500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsmt05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsmt05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ActivityDetails1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ActivityDetails1.java index b7cf129d6..dcceab563 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ActivityDetails1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ActivityDetails1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ActivityDetails1 { - @XmlElement(name = "DtTm", required = true) + @XmlElement(name = "DtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dtTm; @XmlElement(name = "Actvty", required = true) @@ -40,7 +43,7 @@ public class ActivityDetails1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtTm() { @@ -52,7 +55,7 @@ public XMLGregorianCalendar getDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ActivityDetails1 setDtTm(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline3.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline3.java index 76e7cecc7..c11b35ac8 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline3.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,7 +84,8 @@ public class Baseline3 { protected SettlementTerms2 sttlmTerms; @XmlElement(name = "PmtOblgtn") protected List pmtOblgtn; - @XmlElement(name = "LatstMtchDt") + @XmlElement(name = "LatstMtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstMtchDt; @XmlElement(name = "ComrclDataSetReqrd", required = true) @@ -519,7 +522,7 @@ public List getPmtOblgtn() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstMtchDt() { @@ -531,7 +534,7 @@ public XMLGregorianCalendar getLatstMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Baseline3 setLatstMtchDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline4.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline4.java index 3f4518829..2f7082dfc 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline4.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,7 +84,8 @@ public class Baseline4 { protected SettlementTerms3 sttlmTerms; @XmlElement(name = "PmtOblgtn") protected List pmtOblgtn; - @XmlElement(name = "LatstMtchDt") + @XmlElement(name = "LatstMtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstMtchDt; @XmlElement(name = "ComrclDataSetReqrd", required = true) @@ -519,7 +522,7 @@ public List getPmtOblgtn() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstMtchDt() { @@ -531,7 +534,7 @@ public XMLGregorianCalendar getLatstMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Baseline4 setLatstMtchDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline5.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline5.java index 19a702cc5..7f7af1025 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline5.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Baseline5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -82,7 +84,8 @@ public class Baseline5 { protected SettlementTerms3 sttlmTerms; @XmlElement(name = "PmtOblgtn") protected List pmtOblgtn; - @XmlElement(name = "LatstMtchDt") + @XmlElement(name = "LatstMtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstMtchDt; @XmlElement(name = "ComrclDataSetReqrd", required = true) @@ -519,7 +522,7 @@ public List getPmtOblgtn() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstMtchDt() { @@ -531,7 +534,7 @@ public XMLGregorianCalendar getLatstMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Baseline5 setLatstMtchDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet1.java index 50ad3aa75..eefc708d5 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CertificateDataSet1 { protected List lineItm; @XmlElement(name = "CertfdChrtcs", required = true) protected CertifiedCharacteristics1Choice certfdChrtcs; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElement(name = "PlcOfIsse") @@ -186,7 +189,7 @@ public CertificateDataSet1 setCertfdChrtcs(CertifiedCharacteristics1Choice value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -198,7 +201,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CertificateDataSet1 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet2.java index a74c76f41..7264ac2f1 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateDataSet2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 CertificateDataSet2 { protected List lineItm; @XmlElement(name = "CertfdChrtcs", required = true) protected CertifiedCharacteristics2Choice certfdChrtcs; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElement(name = "PlcOfIsse") @@ -186,7 +189,7 @@ public CertificateDataSet2 setCertfdChrtcs(CertifiedCharacteristics2Choice value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -198,7 +201,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public CertificateDataSet2 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventDescription1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventDescription1.java index fbc6bc251..507590bd0 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventDescription1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventDescription1.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 EventDescription1 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "Dt") + @XmlElement(name = "Dt", type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dt; @XmlElement(name = "Rcpt", required = true) @@ -106,7 +109,7 @@ public EventDescription1 setIdr(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -118,7 +121,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public EventDescription1 setDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1.java index 1f1a74bfa..f842105a7 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsmt.053.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1 setIdr(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 FinancialItemParameters1 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsmt05400101.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsmt05400101.java index a603b62cc..43fe3f934 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsmt05400101.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialItemParameters1Tsmt05400101.java @@ -11,7 +11,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 FinancialItemParameters1Tsmt05400101 { @XmlElement(name = "Idr", required = true) protected String idr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElementRef(name = "RltdItm", namespace = "urn:iso:std:iso:20022:tech:xsd:tsmt.054.001.01", type = JAXBElement.class, required = false) @@ -126,7 +129,7 @@ public FinancialItemParameters1Tsmt05400101 setIdr(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 FinancialItemParameters1Tsmt05400101 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceDataSet1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceDataSet1.java index ae67733e1..a4dac666f 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceDataSet1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceDataSet1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InsuranceDataSet1 { protected DocumentIdentification1 dataSetId; @XmlElement(name = "Issr", required = true) protected PartyIdentification26 issr; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; - @XmlElement(name = "FctvDt") + @XmlElement(name = "FctvDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDt; @XmlElement(name = "PlcOfIsse") @@ -127,7 +131,7 @@ public InsuranceDataSet1 setIssr(PartyIdentification26 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -139,7 +143,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InsuranceDataSet1 setIsseDt(XMLGregorianCalendar value) { @@ -152,7 +156,7 @@ public InsuranceDataSet1 setIsseDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDt() { @@ -164,7 +168,7 @@ public XMLGregorianCalendar getFctvDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InsuranceDataSet1 setFctvDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay1.java index 1da8af2e3..f2cf47bb0 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntentToPay1 { protected ReportLine3 byPurchsOrdr; @XmlElement(name = "ByComrclInvc") protected ReportLine4 byComrclInvc; - @XmlElement(name = "XpctdPmtDt", required = true) + @XmlElement(name = "XpctdPmtDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdPmtDt; @XmlElement(name = "SttlmTerms") @@ -93,7 +96,7 @@ public IntentToPay1 setByComrclInvc(ReportLine4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdPmtDt() { @@ -105,7 +108,7 @@ public XMLGregorianCalendar getXpctdPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntentToPay1 setXpctdPmtDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay2.java index 2bae29171..457dd0bd5 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntentToPay2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 IntentToPay2 { @XmlElement(name = "Brkdwn", required = true) protected BreakDown1Choice brkdwn; - @XmlElement(name = "XpctdPmtDt", required = true) + @XmlElement(name = "XpctdPmtDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpctdPmtDt; @XmlElement(name = "SttlmTerms") @@ -65,7 +68,7 @@ public IntentToPay2 setBrkdwn(BreakDown1Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpctdPmtDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getXpctdPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public IntentToPay2 setXpctdPmtDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceIdentification1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceIdentification1.java index dc3d98890..d2f70e4f2 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceIdentification1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceIdentification1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InvoiceIdentification1 { @XmlElement(name = "InvcNb", required = true) protected String invcNb; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @@ -62,7 +65,7 @@ public InvoiceIdentification1 setInvcNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getIsseDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getIsseDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InvoiceIdentification1 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem5.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem5.java index ed2975a0c..d057ed94a 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem5.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem5.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 LineItem5 { protected boolean prtlShipmnt; @XmlElement(name = "TrnsShipmnt") protected Boolean trnsShipmnt; - @XmlElement(name = "LatstShipmntDt") + @XmlElement(name = "LatstShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstShipmntDt; @XmlElement(name = "LineItmDtls", required = true) @@ -142,7 +145,7 @@ public LineItem5 setTrnsShipmnt(Boolean value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstShipmntDt() { @@ -154,7 +157,7 @@ public XMLGregorianCalendar getLatstShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public LineItem5 setLatstShipmntDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemDetails4.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemDetails4.java index 07c8260f5..780490835 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemDetails4.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemDetails4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 LineItemDetails4 { protected List pdctCtgy; @XmlElement(name = "PdctOrgn") protected String pdctOrgn; - @XmlElement(name = "LatstShipmntDt") + @XmlElement(name = "LatstShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstShipmntDt; @XmlElement(name = "RtgSummry") @@ -346,7 +349,7 @@ public LineItemDetails4 setPdctOrgn(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstShipmntDt() { @@ -358,7 +361,7 @@ public XMLGregorianCalendar getLatstShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public LineItemDetails4 setLatstShipmntDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet1.java index 5178f4079..223ef4aa6 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OtherCertificateDataSet1 { @XmlElement(name = "CertTp", required = true) @XmlSchemaType(name = "string") protected TradeCertificateType2Code certTp; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElement(name = "Issr", required = true) @@ -127,7 +130,7 @@ public OtherCertificateDataSet1 setCertTp(TradeCertificateType2Code 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 OtherCertificateDataSet1 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet2.java index ddf6f40fb..79999a693 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCertificateDataSet2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OtherCertificateDataSet2 { protected String certId; @XmlElement(name = "CertTp", required = true) protected String certTp; - @XmlElement(name = "IsseDt", required = true) + @XmlElement(name = "IsseDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar isseDt; @XmlElement(name = "Issr", required = true) @@ -126,7 +129,7 @@ public OtherCertificateDataSet2 setCertTp(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 OtherCertificateDataSet2 setIsseDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther1Choice.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther1Choice.java index 740de6b7e..3184604c9 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther1Choice.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther1Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentCodeOrOther1Choice { @XmlElement(name = "PmtCd") protected PaymentPeriod3 pmtCd; - @XmlElement(name = "PmtDueDt") + @XmlElement(name = "PmtDueDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDueDt; @XmlElement(name = "OthrPmtTerms") @@ -65,7 +68,7 @@ public PaymentCodeOrOther1Choice setPmtCd(PaymentPeriod3 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDueDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getPmtDueDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentCodeOrOther1Choice setPmtDueDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther2Choice.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther2Choice.java index 32fa3bc2f..4d981341a 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther2Choice.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentCodeOrOther2Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentCodeOrOther2Choice { @XmlElement(name = "PmtCd") protected PaymentPeriod4 pmtCd; - @XmlElement(name = "PmtDueDt") + @XmlElement(name = "PmtDueDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDueDt; @XmlElement(name = "OthrPmtTerms") @@ -65,7 +68,7 @@ public PaymentCodeOrOther2Choice setPmtCd(PaymentPeriod4 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDueDt() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getPmtDueDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentCodeOrOther2Choice setPmtDueDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation1.java index 0fa14616a..daa94eb18 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation1.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 PaymentObligation1 { protected CurrencyAndAmount chrgsAmt; @XmlElement(name = "ChrgsPctg") protected BigDecimal chrgsPctg; - @XmlElement(name = "XpryDt", required = true) + @XmlElement(name = "XpryDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpryDt; @XmlElement(name = "AplblLaw") @@ -214,7 +217,7 @@ public PaymentObligation1 setChrgsPctg(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -226,7 +229,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentObligation1 setXpryDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation2.java index d9ae2dc15..d20b5f2f7 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentObligation2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 PaymentObligation2 { protected AmountOrPercentage2Choice pmtOblgtnAmt; @XmlElement(name = "Chrgs") protected List chrgs; - @XmlElement(name = "XpryDt", required = true) + @XmlElement(name = "XpryDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar xpryDt; @XmlElement(name = "AplblRules") @@ -167,7 +170,7 @@ public List getChrgs() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getXpryDt() { @@ -179,7 +182,7 @@ public XMLGregorianCalendar getXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentObligation2 setXpryDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms6.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms6.java index 44617d148..47efda443 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms6.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTerms6.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 PaymentTerms6 { - @XmlElement(name = "DueDt") + @XmlElement(name = "DueDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dueDt; @XmlElement(name = "PmtPrd") @@ -64,7 +67,7 @@ public class PaymentTerms6 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDueDt() { @@ -76,7 +79,7 @@ public XMLGregorianCalendar getDueDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public PaymentTerms6 setDueDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1.java index 5ae9426e6..c3b1810b2 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReconciliationList1 { - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsmt.053.001.01", type = JAXBElement.class, required = false) @@ -65,7 +68,8 @@ public class ReconciliationList1 { protected PaymentIdentification1 pmtRef; @XmlElement(name = "PmtMeans", required = true) protected PaymentMeans1 pmtMeans; - @XmlElement(name = "PmtDt", required = true) + @XmlElement(name = "PmtDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDt; @XmlElement(name = "PmtTerms", required = true) @@ -90,7 +94,7 @@ public class ReconciliationList1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -102,7 +106,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReconciliationList1 setDt(XMLGregorianCalendar value) { @@ -269,7 +273,7 @@ public ReconciliationList1 setPmtMeans(PaymentMeans1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDt() { @@ -281,7 +285,7 @@ public XMLGregorianCalendar getPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReconciliationList1 setPmtDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1Tsmt05400101.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1Tsmt05400101.java index 245903c73..437668254 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1Tsmt05400101.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReconciliationList1Tsmt05400101.java @@ -12,7 +12,9 @@ import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReconciliationList1Tsmt05400101 { - @XmlElement(name = "Dt", required = true) + @XmlElement(name = "Dt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dt; @XmlElementRef(name = "RltdDoc", namespace = "urn:iso:std:iso:20022:tech:xsd:tsmt.054.001.01", type = JAXBElement.class, required = false) @@ -65,7 +68,8 @@ public class ReconciliationList1Tsmt05400101 { protected PaymentIdentification1 pmtRef; @XmlElement(name = "PmtMeans", required = true) protected PaymentMeans1 pmtMeans; - @XmlElement(name = "PmtDt", required = true) + @XmlElement(name = "PmtDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar pmtDt; @XmlElement(name = "PmtTerms", required = true) @@ -90,7 +94,7 @@ public class ReconciliationList1Tsmt05400101 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDt() { @@ -102,7 +106,7 @@ public XMLGregorianCalendar getDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReconciliationList1Tsmt05400101 setDt(XMLGregorianCalendar value) { @@ -269,7 +273,7 @@ public ReconciliationList1Tsmt05400101 setPmtMeans(PaymentMeans1 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPmtDt() { @@ -281,7 +285,7 @@ public XMLGregorianCalendar getPmtDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReconciliationList1Tsmt05400101 setPmtDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequiredSubmission1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequiredSubmission1.java index 6e1ba219b..1f75a666a 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequiredSubmission1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequiredSubmission1.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 RequiredSubmission1 { - @XmlElement(name = "LatstMtchDt") + @XmlElement(name = "LatstMtchDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar latstMtchDt; @XmlElement(name = "ReqrdComrclDataSet") @@ -43,7 +46,7 @@ public class RequiredSubmission1 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLatstMtchDt() { @@ -55,7 +58,7 @@ public XMLGregorianCalendar getLatstMtchDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RequiredSubmission1 setLatstMtchDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDate1Choice.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDate1Choice.java index 4effa7787..0dcc16114 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDate1Choice.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDate1Choice.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ShipmentDate1Choice { - @XmlElement(name = "PropsdShipmntDt") + @XmlElement(name = "PropsdShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar propsdShipmntDt; - @XmlElement(name = "ActlShipmntDt") + @XmlElement(name = "ActlShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlShipmntDt; @@ -38,7 +42,7 @@ public class ShipmentDate1Choice { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPropsdShipmntDt() { @@ -50,7 +54,7 @@ public XMLGregorianCalendar getPropsdShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ShipmentDate1Choice setPropsdShipmntDt(XMLGregorianCalendar value) { @@ -63,7 +67,7 @@ public ShipmentDate1Choice setPropsdShipmntDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlShipmntDt() { @@ -75,7 +79,7 @@ public XMLGregorianCalendar getActlShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ShipmentDate1Choice setActlShipmntDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus2.java index 2b56165f3..3deaf7e76 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransactionStatus2 { @XmlElement(name = "Sts", required = true) @XmlSchemaType(name = "string") protected BaselineStatus1Code sts; - @XmlElement(name = "ChngDtTm", required = true) + @XmlElement(name = "ChngDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar chngDtTm; @@ -63,7 +66,7 @@ public TransactionStatus2 setSts(BaselineStatus1Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getChngDtTm() { @@ -75,7 +78,7 @@ public XMLGregorianCalendar getChngDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionStatus2 setChngDtTm(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus5.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus5.java index 42e0f3e81..22f6c4148 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus5.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionStatus5.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransactionStatus5 { @XmlElement(name = "Sts", required = true) @XmlSchemaType(name = "string") protected BaselineStatus3Code sts; - @XmlElement(name = "ChngDtTm", required = true) + @XmlElement(name = "ChngDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar chngDtTm; @XmlElement(name = "Desc") @@ -66,7 +69,7 @@ public TransactionStatus5 setSts(BaselineStatus3Code value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getChngDtTm() { @@ -78,7 +81,7 @@ public XMLGregorianCalendar getChngDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransactionStatus5 setChngDtTm(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails1.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails1.java index ca669a6b0..6ae3feaa7 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails1.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransportDetails1 { protected List trnsprtdGoods; @XmlElement(name = "RtgSummry", required = true) protected TransportMeans2Choice rtgSummry; - @XmlElement(name = "PropsdShipmntDt") + @XmlElement(name = "PropsdShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar propsdShipmntDt; - @XmlElement(name = "ActlShipmntDt") + @XmlElement(name = "ActlShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlShipmntDt; @XmlElement(name = "Incotrms") @@ -138,7 +142,7 @@ public TransportDetails1 setRtgSummry(TransportMeans2Choice value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPropsdShipmntDt() { @@ -150,7 +154,7 @@ public XMLGregorianCalendar getPropsdShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransportDetails1 setPropsdShipmntDt(XMLGregorianCalendar value) { @@ -163,7 +167,7 @@ public TransportDetails1 setPropsdShipmntDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlShipmntDt() { @@ -175,7 +179,7 @@ public XMLGregorianCalendar getActlShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransportDetails1 setActlShipmntDt(XMLGregorianCalendar value) { diff --git a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails2.java b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails2.java index 6996d6ed6..70a6940f8 100644 --- a/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails2.java +++ b/model-tsmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransportDetails2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TransportDetails2 { protected Consignment1 consgnmt; @XmlElement(name = "RtgSummry", required = true) protected TransportMeans2 rtgSummry; - @XmlElement(name = "PropsdShipmntDt") + @XmlElement(name = "PropsdShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar propsdShipmntDt; - @XmlElement(name = "ActlShipmntDt") + @XmlElement(name = "ActlShipmntDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar actlShipmntDt; @XmlElement(name = "Incotrms") @@ -166,7 +170,7 @@ public TransportDetails2 setRtgSummry(TransportMeans2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getPropsdShipmntDt() { @@ -178,7 +182,7 @@ public XMLGregorianCalendar getPropsdShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransportDetails2 setPropsdShipmntDt(XMLGregorianCalendar value) { @@ -191,7 +195,7 @@ public TransportDetails2 setPropsdShipmntDt(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getActlShipmntDt() { @@ -203,7 +207,7 @@ public XMLGregorianCalendar getActlShipmntDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public TransportDetails2 setActlShipmntDt(XMLGregorianCalendar value) { diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00100101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00100101.java index 3f7d65257..63c44bc36 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00100101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00100101 parse(String xml) { - return ((MxTsrv00100101) MxReadImpl.parse(MxTsrv00100101 .class, xml, _classes)); + return ((MxTsrv00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00200101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00200101.java index d58fd9a12..f3c9bb5cd 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00200101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00200101 parse(String xml) { - return ((MxTsrv00200101) MxReadImpl.parse(MxTsrv00200101 .class, xml, _classes)); + return ((MxTsrv00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00300101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00300101.java index 197a43c85..3582e7694 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00300101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00300101 parse(String xml) { - return ((MxTsrv00300101) MxReadImpl.parse(MxTsrv00300101 .class, xml, _classes)); + return ((MxTsrv00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00400101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00400101.java index f186ff58d..bae3c814e 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00400101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00400101 parse(String xml) { - return ((MxTsrv00400101) MxReadImpl.parse(MxTsrv00400101 .class, xml, _classes)); + return ((MxTsrv00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00500101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00500101.java index 4aff08c8e..42af8b8be 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00500101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00500101 parse(String xml) { - return ((MxTsrv00500101) MxReadImpl.parse(MxTsrv00500101 .class, xml, _classes)); + return ((MxTsrv00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00600101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00600101.java index 31e9ecee7..3cc0296b2 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00600101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00600101 parse(String xml) { - return ((MxTsrv00600101) MxReadImpl.parse(MxTsrv00600101 .class, xml, _classes)); + return ((MxTsrv00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00700101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00700101.java index 76d6a3072..868b4b858 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00700101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00700101 parse(String xml) { - return ((MxTsrv00700101) MxReadImpl.parse(MxTsrv00700101 .class, xml, _classes)); + return ((MxTsrv00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00800101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00800101.java index 41180e68a..8b1950a2d 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00800101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00800101 parse(String xml) { - return ((MxTsrv00800101) MxReadImpl.parse(MxTsrv00800101 .class, xml, _classes)); + return ((MxTsrv00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00900101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00900101.java index 2333ea343..ddd2e1de7 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00900101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv00900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv00900101 parse(String xml) { - return ((MxTsrv00900101) MxReadImpl.parse(MxTsrv00900101 .class, xml, _classes)); + return ((MxTsrv00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01000101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01000101.java index 870d82daa..c221c9453 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01000101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01000101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01000101 parse(String xml) { - return ((MxTsrv01000101) MxReadImpl.parse(MxTsrv01000101 .class, xml, _classes)); + return ((MxTsrv01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01100101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01100101.java index 3a0ea22f3..c4eed5a63 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01100101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01100101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01100101 parse(String xml) { - return ((MxTsrv01100101) MxReadImpl.parse(MxTsrv01100101 .class, xml, _classes)); + return ((MxTsrv01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01200101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01200101.java index aa0c83c5b..226dcca58 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01200101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01200101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01200101 parse(String xml) { - return ((MxTsrv01200101) MxReadImpl.parse(MxTsrv01200101 .class, xml, _classes)); + return ((MxTsrv01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01300101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01300101.java index b2d3e8327..4203aa7da 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01300101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01300101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01300101 parse(String xml) { - return ((MxTsrv01300101) MxReadImpl.parse(MxTsrv01300101 .class, xml, _classes)); + return ((MxTsrv01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01400101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01400101.java index e0e8cf0fe..6f9ee818c 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01400101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01400101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01400101 parse(String xml) { - return ((MxTsrv01400101) MxReadImpl.parse(MxTsrv01400101 .class, xml, _classes)); + return ((MxTsrv01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01500101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01500101.java index 7db9f3718..31279e561 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01500101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01500101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01500101 parse(String xml) { - return ((MxTsrv01500101) MxReadImpl.parse(MxTsrv01500101 .class, xml, _classes)); + return ((MxTsrv01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01600101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01600101.java index 10867ed51..38c795b66 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01600101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01600101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01600101 parse(String xml) { - return ((MxTsrv01600101) MxReadImpl.parse(MxTsrv01600101 .class, xml, _classes)); + return ((MxTsrv01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01700101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01700101.java index 02a10573b..53f01bed2 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01700101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01700101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01700101 parse(String xml) { - return ((MxTsrv01700101) MxReadImpl.parse(MxTsrv01700101 .class, xml, _classes)); + return ((MxTsrv01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01700101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01800101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01800101.java index 095e5adf0..4a1a843fa 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01800101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01800101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01800101 parse(String xml) { - return ((MxTsrv01800101) MxReadImpl.parse(MxTsrv01800101 .class, xml, _classes)); + return ((MxTsrv01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01900101.java b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01900101.java index 48f483dfd..4fa148af8 100644 --- a/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01900101.java +++ b/model-tsrv-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxTsrv01900101.java @@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -124,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxTsrv01900101 parse(String xml) { - return ((MxTsrv01900101) MxReadImpl.parse(MxTsrv01900101 .class, xml, _classes)); + return ((MxTsrv01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxTsrv01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxTsrv01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxTsrv01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Amendment1.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Amendment1.java index 270ed0b11..1f63258b6 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Amendment1.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Amendment1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Amendment1 { @XmlElement(name = "SeqNb", required = true) protected String seqNb; - @XmlElement(name = "DtOfIssnc", required = true) + @XmlElement(name = "DtOfIssnc", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfIssnc; @XmlElement(name = "UdrtkgId", required = true) @@ -103,7 +106,7 @@ public Amendment1 setSeqNb(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfIssnc() { @@ -115,7 +118,7 @@ public XMLGregorianCalendar getDtOfIssnc() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Amendment1 setDtOfIssnc(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BankInstructions1.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BankInstructions1.java index 3d450d46d..294400bf6 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BankInstructions1.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BankInstructions1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 BankInstructions1 { @XmlElement(name = "Txt") protected List txt; - @XmlElement(name = "LastDtForRspn") + @XmlElement(name = "LastDtForRspn", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar lastDtForRspn; @@ -68,7 +71,7 @@ public List getTxt() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLastDtForRspn() { @@ -80,7 +83,7 @@ public XMLGregorianCalendar getLastDtForRspn() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public BankInstructions1 setLastDtForRspn(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand1.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand1.java index 368e05fbb..7221fef7d 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand1.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Demand1 { protected List sttlmAcct; @XmlElement(name = "PresntnDtls") protected Presentation2 presntnDtls; - @XmlElement(name = "ReqdXpryDt") + @XmlElement(name = "ReqdXpryDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdXpryDt; @XmlElement(name = "DmndDcmnttn") @@ -299,7 +302,7 @@ public Demand1 setPresntnDtls(Presentation2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdXpryDt() { @@ -311,7 +314,7 @@ public XMLGregorianCalendar getReqdXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Demand1 setReqdXpryDt(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand2.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand2.java index 8e8415424..0935cd16d 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand2.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand2.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Demand2 { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "SubmissnDtTm", required = true) + @XmlElement(name = "SubmissnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar submissnDtTm; @XmlElement(name = "Amt", required = true) @@ -70,7 +73,7 @@ public Demand2 setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSubmissnDtTm() { @@ -82,7 +85,7 @@ public XMLGregorianCalendar getSubmissnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Demand2 setSubmissnDtTm(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand3.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand3.java index bf0dac1ec..f23c0e5ae 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand3.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Demand3.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Demand3 { @XmlElement(name = "Id", required = true) protected String id; - @XmlElement(name = "SubmissnDtTm", required = true) + @XmlElement(name = "SubmissnDtTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar submissnDtTm; @XmlElement(name = "Amt", required = true) @@ -65,7 +68,7 @@ public Demand3 setId(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSubmissnDtTm() { @@ -77,7 +80,7 @@ public XMLGregorianCalendar getSubmissnDtTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Demand3 setSubmissnDtTm(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendOrPayQuery1.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendOrPayQuery1.java index 27833c1b9..7f48bbdf1 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendOrPayQuery1.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExtendOrPayQuery1.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ExtendOrPayQuery1 { protected Undertaking9 udrtkgId; @XmlElement(name = "DmndDtls", required = true) protected Demand2 dmndDtls; - @XmlElement(name = "ReqdXpryDt", required = true) + @XmlElement(name = "ReqdXpryDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar reqdXpryDt; @XmlElement(name = "BkInstrs") @@ -104,7 +107,7 @@ public ExtendOrPayQuery1 setDmndDtls(Demand2 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getReqdXpryDt() { @@ -116,7 +119,7 @@ public XMLGregorianCalendar getReqdXpryDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ExtendOrPayQuery1 setReqdXpryDt(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Presentation2.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Presentation2.java index e5e2124a5..aa3010397 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Presentation2.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Presentation2.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Presentation2 { @XmlElement(name = "Presntr") protected PartyIdentification43 presntr; - @XmlElement(name = "BnfcryPresntnDt") + @XmlElement(name = "BnfcryPresntnDt", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar bnfcryPresntnDt; @@ -62,7 +65,7 @@ public Presentation2 setPresntr(PartyIdentification43 value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getBnfcryPresntnDt() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getBnfcryPresntnDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Presentation2 setBnfcryPresntnDt(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking3.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking3.java index 0692ffd57..6e9a78a63 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking3.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -72,7 +74,8 @@ public class Undertaking3 { protected PartyIdentification43 issr; @XmlElement(name = "Bnfcry", required = true) protected List bnfcry; - @XmlElement(name = "DtOfIssnc", required = true) + @XmlElement(name = "DtOfIssnc", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfIssnc; @XmlElement(name = "PlcOfIsse") @@ -308,7 +311,7 @@ public List getBnfcry() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfIssnc() { @@ -320,7 +323,7 @@ public XMLGregorianCalendar getDtOfIssnc() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Undertaking3 setDtOfIssnc(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking4.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking4.java index 824ef4ec8..51616d3f3 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking4.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Undertaking4.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 Undertaking4 { protected List applcnt; @XmlElement(name = "Bnfcry", required = true) protected List bnfcry; - @XmlElement(name = "DtOfIssnc") + @XmlElement(name = "DtOfIssnc", type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfIssnc; @XmlElement(name = "AdvsgPty") @@ -211,7 +214,7 @@ public List getBnfcry() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfIssnc() { @@ -223,7 +226,7 @@ public XMLGregorianCalendar getDtOfIssnc() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public Undertaking4 setDtOfIssnc(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingAmendmentAdviceV01.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingAmendmentAdviceV01.java index 78ccc632e..d50d750d6 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingAmendmentAdviceV01.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingAmendmentAdviceV01.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UndertakingAmendmentAdviceV01 { protected PartyIdentification43 advsgPty; @XmlElement(name = "ScndAdvsgPty") protected PartyIdentification43 scndAdvsgPty; - @XmlElement(name = "DtOfAdvc", required = true) + @XmlElement(name = "DtOfAdvc", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar dtOfAdvc; @XmlElement(name = "UdrtkgAmdmntAdvcDtls", required = true) @@ -101,7 +104,7 @@ public UndertakingAmendmentAdviceV01 setScndAdvsgPty(PartyIdentification43 value * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getDtOfAdvc() { @@ -113,7 +116,7 @@ public XMLGregorianCalendar getDtOfAdvc() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UndertakingAmendmentAdviceV01 setDtOfAdvc(XMLGregorianCalendar value) { diff --git a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingTermination3.java b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingTermination3.java index 30f4623bc..99d51135c 100644 --- a/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingTermination3.java +++ b/model-tsrv-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UndertakingTermination3.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 UndertakingTermination3 { - @XmlElement(name = "FctvDt", required = true) + @XmlElement(name = "FctvDt", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateAdapter.class) @XmlSchemaType(name = "date") protected XMLGregorianCalendar fctvDt; @XmlElement(name = "Rsn") @@ -42,7 +45,7 @@ public class UndertakingTermination3 { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFctvDt() { @@ -54,7 +57,7 @@ public XMLGregorianCalendar getFctvDt() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public UndertakingTermination3 setFctvDt(XMLGregorianCalendar value) { diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00100101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00100101.java index e2c48cbd0..9f1657f30 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00100101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00100101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.001.001.01") public class MxXsys00100101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.001.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00100101 parse(String xml) { - return ((MxXsys00100101) MxReadImpl.parse(MxXsys00100101 .class, xml, _classes)); + return ((MxXsys00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00100101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00100101 */ public final static MxXsys00100101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00100101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00100101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00200101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00200101.java index 4ab7bd0cb..caa41223f 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00200101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00200101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.002.001.01") public class MxXsys00200101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.002.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00200101 parse(String xml) { - return ((MxXsys00200101) MxReadImpl.parse(MxXsys00200101 .class, xml, _classes)); + return ((MxXsys00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00200101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00200101 */ public final static MxXsys00200101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00200101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00200101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00300101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00300101.java index 5b5fbdd89..84678f22d 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00300101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00300101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.003.001.01") public class MxXsys00300101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.003.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00300101 parse(String xml) { - return ((MxXsys00300101) MxReadImpl.parse(MxXsys00300101 .class, xml, _classes)); + return ((MxXsys00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00300101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00300101 */ public final static MxXsys00300101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00300101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00300101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00400101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00400101.java index 35cfba6a4..d3193b199 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00400101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00400101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.004.001.01") public class MxXsys00400101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.004.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00400101 parse(String xml) { - return ((MxXsys00400101) MxReadImpl.parse(MxXsys00400101 .class, xml, _classes)); + return ((MxXsys00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00400101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00400101 */ public final static MxXsys00400101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00400101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00400101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500101.java index 9084e1518..654f046e6 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.005.001.01") public class MxXsys00500101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.005.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00500101 parse(String xml) { - return ((MxXsys00500101) MxReadImpl.parse(MxXsys00500101 .class, xml, _classes)); + return ((MxXsys00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00500101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00500101 */ public final static MxXsys00500101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00500101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00500101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500201.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500201.java index 39e571b40..1f2b67594 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500201.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00500201.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.005.002.01") public class MxXsys00500201 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.005.002.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00500201 parse(String xml) { - return ((MxXsys00500201) MxReadImpl.parse(MxXsys00500201 .class, xml, _classes)); + return ((MxXsys00500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00500201 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00500201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00500201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00500201 */ public final static MxXsys00500201 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00500201 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00500201 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00600101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00600101.java index 46a88f340..25fcee682 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00600101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00600101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.006.001.01") public class MxXsys00600101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.006.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00600101 parse(String xml) { - return ((MxXsys00600101) MxReadImpl.parse(MxXsys00600101 .class, xml, _classes)); + return ((MxXsys00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00600101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00600101 */ public final static MxXsys00600101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00600101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00600101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00700101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00700101.java index b78dcaaeb..63b2fe5d5 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00700101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00700101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.007.001.01") public class MxXsys00700101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.007.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00700101 parse(String xml) { - return ((MxXsys00700101) MxReadImpl.parse(MxXsys00700101 .class, xml, _classes)); + return ((MxXsys00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00700101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00700101 */ public final static MxXsys00700101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00700101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00700101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800101.java index 2139dfeb3..ab64334cf 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.008.001.01") public class MxXsys00800101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.008.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00800101 parse(String xml) { - return ((MxXsys00800101) MxReadImpl.parse(MxXsys00800101 .class, xml, _classes)); + return ((MxXsys00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00800101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00800101 */ public final static MxXsys00800101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00800101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00800101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800102.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800102.java index b2174ca87..15f5608bc 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800102.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00800102.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.008.001.02") public class MxXsys00800102 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.008.001.02", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00800102 parse(String xml) { - return ((MxXsys00800102) MxReadImpl.parse(MxXsys00800102 .class, xml, _classes)); + return ((MxXsys00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00800102 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00800102 */ public final static MxXsys00800102 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00800102 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00800102 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900101.java index 01a6a028f..7e7c338e6 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.009.001.01") public class MxXsys00900101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.009.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00900101 parse(String xml) { - return ((MxXsys00900101) MxReadImpl.parse(MxXsys00900101 .class, xml, _classes)); + return ((MxXsys00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00900101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00900101 */ public final static MxXsys00900101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00900101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00900101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900102.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900102.java index 51cdff2bc..024e61cfe 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900102.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys00900102.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.009.001.02") public class MxXsys00900102 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.009.001.02", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys00900102 parse(String xml) { - return ((MxXsys00900102) MxReadImpl.parse(MxXsys00900102 .class, xml, _classes)); + return ((MxXsys00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys00900102 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys00900102 */ public final static MxXsys00900102 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys00900102 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys00900102 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000101.java index 61d1bbb0a..d14e0455c 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.010.001.01") public class MxXsys01000101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.010.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01000101 parse(String xml) { - return ((MxXsys01000101) MxReadImpl.parse(MxXsys01000101 .class, xml, _classes)); + return ((MxXsys01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01000101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01000101 */ public final static MxXsys01000101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01000101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01000101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000102.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000102.java index 91cb28826..037d5f90e 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000102.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01000102.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.010.001.02") public class MxXsys01000102 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.010.001.02", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01000102 parse(String xml) { - return ((MxXsys01000102) MxReadImpl.parse(MxXsys01000102 .class, xml, _classes)); + return ((MxXsys01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01000102 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01000102 */ public final static MxXsys01000102 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01000102 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01000102 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100101.java index aa6172340..c21c22360 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.011.001.01") public class MxXsys01100101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.011.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01100101 parse(String xml) { - return ((MxXsys01100101) MxReadImpl.parse(MxXsys01100101 .class, xml, _classes)); + return ((MxXsys01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01100101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01100101 */ public final static MxXsys01100101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01100101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01100101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100102.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100102.java index b21fe054d..776f14649 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100102.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01100102.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.011.001.02") public class MxXsys01100102 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.011.001.02", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01100102 parse(String xml) { - return ((MxXsys01100102) MxReadImpl.parse(MxXsys01100102 .class, xml, _classes)); + return ((MxXsys01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01100102 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01100102 */ public final static MxXsys01100102 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01100102 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01100102 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200101.java index 0047680c1..9d7cad3be 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.012.001.01") public class MxXsys01200101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.012.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01200101 parse(String xml) { - return ((MxXsys01200101) MxReadImpl.parse(MxXsys01200101 .class, xml, _classes)); + return ((MxXsys01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01200101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01200101 */ public final static MxXsys01200101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01200101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01200101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200102.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200102.java index 7a6b4cbd2..517472516 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200102.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01200102.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.012.001.02") public class MxXsys01200102 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.012.001.02", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01200102 parse(String xml) { - return ((MxXsys01200102) MxReadImpl.parse(MxXsys01200102 .class, xml, _classes)); + return ((MxXsys01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01200102 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01200102 */ public final static MxXsys01200102 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01200102 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01200102 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01300101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01300101.java index 506af6690..6d727c4c3 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01300101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01300101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.013.001.01") public class MxXsys01300101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.013.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01300101 parse(String xml) { - return ((MxXsys01300101) MxReadImpl.parse(MxXsys01300101 .class, xml, _classes)); + return ((MxXsys01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01300101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01300101 */ public final static MxXsys01300101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01300101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01300101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01400101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01400101.java index 5b2d9ea8f..c572529c4 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01400101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01400101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.014.001.01") public class MxXsys01400101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.014.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01400101 parse(String xml) { - return ((MxXsys01400101) MxReadImpl.parse(MxXsys01400101 .class, xml, _classes)); + return ((MxXsys01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01400101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01400101 */ public final static MxXsys01400101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01400101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01400101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01500101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01500101.java index 14bf1e873..1eb29cbbd 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01500101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01500101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.015.001.01") public class MxXsys01500101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.015.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01500101 parse(String xml) { - return ((MxXsys01500101) MxReadImpl.parse(MxXsys01500101 .class, xml, _classes)); + return ((MxXsys01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01500101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01500101 */ public final static MxXsys01500101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01500101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01500101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01600101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01600101.java index e5837c691..4a8979b00 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01600101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01600101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.016.001.01") public class MxXsys01600101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.016.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01600101 parse(String xml) { - return ((MxXsys01600101) MxReadImpl.parse(MxXsys01600101 .class, xml, _classes)); + return ((MxXsys01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01600101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01600101 */ public final static MxXsys01600101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01600101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01600101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01800101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01800101.java index 5767c1c4e..265a4bb40 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01800101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01800101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.018.001.01") public class MxXsys01800101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.018.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01800101 parse(String xml) { - return ((MxXsys01800101) MxReadImpl.parse(MxXsys01800101 .class, xml, _classes)); + return ((MxXsys01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01800101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01800101 */ public final static MxXsys01800101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01800101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01800101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01900101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01900101.java index 8c863417a..6fea01bb2 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01900101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys01900101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.019.001.01") public class MxXsys01900101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.019.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys01900101 parse(String xml) { - return ((MxXsys01900101) MxReadImpl.parse(MxXsys01900101 .class, xml, _classes)); + return ((MxXsys01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys01900101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys01900101 */ public final static MxXsys01900101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys01900101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys01900101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02600101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02600101.java index d4976c765..20ec4553b 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02600101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02600101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.026.001.01") public class MxXsys02600101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.026.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys02600101 parse(String xml) { - return ((MxXsys02600101) MxReadImpl.parse(MxXsys02600101 .class, xml, _classes)); + return ((MxXsys02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys02600101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys02600101 */ public final static MxXsys02600101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys02600101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys02600101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02700101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02700101.java index 4f580c4c7..5428d09c8 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02700101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02700101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.027.001.01") public class MxXsys02700101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.027.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys02700101 parse(String xml) { - return ((MxXsys02700101) MxReadImpl.parse(MxXsys02700101 .class, xml, _classes)); + return ((MxXsys02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys02700101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys02700101 */ public final static MxXsys02700101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys02700101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys02700101 .class); } } diff --git a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02800101.java b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02800101.java index d99eb0fe1..2a7d3327d 100644 --- a/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02800101.java +++ b/model-xsys-mx/src/generated/java/com/prowidesoftware/swift/model/mx/sys/MxXsys02800101.java @@ -10,9 +10,8 @@ import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import com.prowidesoftware.swift.model.MxSwiftMessage; -import com.prowidesoftware.swift.model.mx.AbstractMX; import com.prowidesoftware.swift.model.mx.MxRead; -import com.prowidesoftware.swift.model.mx.MxReadImpl; +import com.prowidesoftware.swift.model.mx.MxReadConfiguration; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; @@ -29,7 +28,7 @@ }) @XmlRootElement(name = "Document", namespace = "urn:swift:xsd:xsys.028.001.01") public class MxXsys02800101 - extends AbstractMX + extends com.prowidesoftware.swift.model.mx.AbstractMX { @XmlElement(name = "xsys.028.001.01", required = true) @@ -125,11 +124,20 @@ public int getVersion() { } /** - * Creates the MX object parsing the raw content from the parameter XML + * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options * */ public static MxXsys02800101 parse(String xml) { - return ((MxXsys02800101) MxReadImpl.parse(MxXsys02800101 .class, xml, _classes)); + return ((MxXsys02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams())); + } + + /** + * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options + * @since 9.2.6 + * + */ + public static MxXsys02800101 parse(String xml, MxReadConfiguration conf) { + return ((MxXsys02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxXsys02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf))); } /** @@ -166,7 +174,7 @@ public Class[] getClasses() { * a new instance of MxXsys02800101 */ public final static MxXsys02800101 fromJson(String json) { - return AbstractMX.fromJson(json, MxXsys02800101 .class); + return com.prowidesoftware.swift.model.mx.AbstractMX.fromJson(json, MxXsys02800101 .class); } } diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/AbstractInputchannelDetails.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/AbstractInputchannelDetails.java index 2453cbc59..5b421053f 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/AbstractInputchannelDetails.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/AbstractInputchannelDetails.java @@ -7,7 +7,9 @@ import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 AbstractInputchannelDetails { @XmlElement(name = "Stat", required = true) @XmlSchemaType(name = "string") protected InputChannelStateCode stat; - @XmlElement(name = "LastStatChngTm", required = true) + @XmlElement(name = "LastStatChngTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastStatChngTm; @XmlElement(name = "LastStatChngDN", required = true) @@ -67,7 +70,7 @@ public AbstractInputchannelDetails setStat(InputChannelStateCode value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLastStatChngTm() { @@ -79,7 +82,7 @@ public XMLGregorianCalendar getLastStatChngTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public AbstractInputchannelDetails setLastStatChngTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputChannelSessionDetails.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputChannelSessionDetails.java index c02ce6d9a..56b027fc9 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputChannelSessionDetails.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputChannelSessionDetails.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 InputChannelSessionDetails { protected String authstnDN; @XmlElement(name = "WndwSz", required = true) protected BigDecimal wndwSz; - @XmlElement(name = "SsnOpnTm", required = true) + @XmlElement(name = "SsnOpnTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ssnOpnTm; - @XmlElement(name = "SsnClsTm", required = true) + @XmlElement(name = "SsnClsTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ssnClsTm; @XmlElement(name = "NbOfSntMsgs", required = true) @@ -104,7 +108,7 @@ public InputChannelSessionDetails setWndwSz(BigDecimal value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSsnOpnTm() { @@ -116,7 +120,7 @@ public XMLGregorianCalendar getSsnOpnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InputChannelSessionDetails setSsnOpnTm(XMLGregorianCalendar value) { @@ -129,7 +133,7 @@ public InputChannelSessionDetails setSsnOpnTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSsnClsTm() { @@ -141,7 +145,7 @@ public XMLGregorianCalendar getSsnClsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InputChannelSessionDetails setSsnClsTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputTimeCriteria.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputTimeCriteria.java index ae55d8306..afbd3656f 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputTimeCriteria.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/InputTimeCriteria.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 InputTimeCriteria { @XmlElement(name = "InputChannel", namespace = "urn:swift:snl:ns.Sw") protected String inputChannel; - @XmlElement(name = "ToTm", required = true) + @XmlElement(name = "ToTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar toTm; @@ -62,7 +65,7 @@ public InputTimeCriteria setInputChannel(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getToTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getToTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public InputTimeCriteria setToTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelDetailsXsys02700101.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelDetailsXsys02700101.java index ae7d05171..e0fb5a31a 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelDetailsXsys02700101.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelDetailsXsys02700101.java @@ -8,7 +8,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OutputChannelDetailsXsys02700101 { @XmlElement(name = "Stat", required = true) protected String stat; - @XmlElement(name = "LastStatChngTm", required = true) + @XmlElement(name = "LastStatChngTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastStatChngTm; @XmlElement(name = "LastStatChngDN", required = true) @@ -92,7 +95,7 @@ public OutputChannelDetailsXsys02700101 setStat(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLastStatChngTm() { @@ -104,7 +107,7 @@ public XMLGregorianCalendar getLastStatChngTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OutputChannelDetailsXsys02700101 setLastStatChngTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelSessionDetails.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelSessionDetails.java index f8880c637..78c12fdf9 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelSessionDetails.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputChannelSessionDetails.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,10 +49,12 @@ public class OutputChannelSessionDetails { protected BigDecimal wndwSz; @XmlElement(name = "Subst") protected List subst; - @XmlElement(name = "SsnOpnTm", required = true) + @XmlElement(name = "SsnOpnTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ssnOpnTm; - @XmlElement(name = "SsnClsTm", required = true) + @XmlElement(name = "SsnClsTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar ssnClsTm; @XmlElement(name = "NbOfRcvdMsgs", required = true) @@ -194,7 +198,7 @@ public List getSubst() { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSsnOpnTm() { @@ -206,7 +210,7 @@ public XMLGregorianCalendar getSsnOpnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OutputChannelSessionDetails setSsnOpnTm(XMLGregorianCalendar value) { @@ -219,7 +223,7 @@ public OutputChannelSessionDetails setSsnOpnTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getSsnClsTm() { @@ -231,7 +235,7 @@ public XMLGregorianCalendar getSsnClsTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OutputChannelSessionDetails setSsnClsTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputTimeCriteria.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputTimeCriteria.java index ab17ced12..faf763386 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputTimeCriteria.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/OutputTimeCriteria.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 OutputTimeCriteria { @XmlElement(name = "OutputChannel", namespace = "urn:swift:snl:ns.Sw") protected String outputChannel; - @XmlElement(name = "ToTm", required = true) + @XmlElement(name = "ToTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar toTm; @@ -62,7 +65,7 @@ public OutputTimeCriteria setOutputChannel(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getToTm() { @@ -74,7 +77,7 @@ public XMLGregorianCalendar getToTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public OutputTimeCriteria setToTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportCriteriaXsys01500101.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportCriteriaXsys01500101.java index f0b0788b4..b889606a0 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportCriteriaXsys01500101.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportCriteriaXsys01500101.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 ReportCriteriaXsys01500101 { protected String rprtGnrtnOptn; @XmlElement(name = "Queue", namespace = "urn:swift:snl:ns.SwInt", required = true) protected String queue; - @XmlElement(name = "FrTm", required = true) + @XmlElement(name = "FrTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar frTm; @XmlElement(name = "SnglMsgCrit") @@ -96,7 +99,7 @@ public ReportCriteriaXsys01500101 setQueue(String value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFrTm() { @@ -108,7 +111,7 @@ public XMLGregorianCalendar getFrTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReportCriteriaXsys01500101 setFrTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInfo.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInfo.java index a82392533..46be46cba 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInfo.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInfo.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 com.prowidesoftware.swift.model.mx.sys.dic.SwGblStatus; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; @@ -41,7 +43,8 @@ public class ReportInfo { protected ResultCode exctnRptRslt; @XmlElement(name = "ExctnRptFailrDtls") protected SwGblStatus exctnRptFailrDtls; - @XmlElement(name = "ExctnTm", required = true) + @XmlElement(name = "ExctnTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar exctnTm; @@ -150,7 +153,7 @@ public ReportInfo setExctnRptFailrDtls(SwGblStatus value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExctnTm() { @@ -162,7 +165,7 @@ public XMLGregorianCalendar getExctnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReportInfo setExctnTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInformation.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInformation.java index b3a3910dc..d6348995e 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInformation.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/ReportInformation.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 ReportInformation { protected ResultCode exctnRptRslt; @XmlElement(name = "ExctnRptFailrDtls") protected ExecutionReportFailureDetails exctnRptFailrDtls; - @XmlElement(name = "ExctnTm", required = true) + @XmlElement(name = "ExctnTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar exctnTm; @@ -149,7 +152,7 @@ public ReportInformation setExctnRptFailrDtls(ExecutionReportFailureDetails valu * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getExctnTm() { @@ -161,7 +164,7 @@ public XMLGregorianCalendar getExctnTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public ReportInformation setExctnTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RequestReference.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RequestReference.java index e5a0ecb53..2013506f9 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RequestReference.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RequestReference.java @@ -27,7 +27,7 @@ public class RequestReference { protected String snFRef; /** - * SnFRef + * StoreAndForwardReference * * @return * possible object is diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RetrievedBulkFile.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RetrievedBulkFile.java index 7bf1bc351..bad50d281 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RetrievedBulkFile.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/RetrievedBulkFile.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 com.prowidesoftware.swift.model.mx.sys.dic.SwDigest; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; @@ -38,10 +40,12 @@ public class RetrievedBulkFile { protected String size; @XmlElement(name = "Digest", namespace = "urn:swift:snl:ns.Sw", required = true) protected SwDigest digest; - @XmlElement(name = "FirstSnFTm", required = true) + @XmlElement(name = "FirstSnFTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar firstSnFTm; - @XmlElement(name = "LastSnFTm", required = true) + @XmlElement(name = "LastSnFTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastSnFTm; @XmlElement(name = "TtlNbOfMsgs", required = true) @@ -127,7 +131,7 @@ public RetrievedBulkFile setDigest(SwDigest value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getFirstSnFTm() { @@ -139,7 +143,7 @@ public XMLGregorianCalendar getFirstSnFTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RetrievedBulkFile setFirstSnFTm(XMLGregorianCalendar value) { @@ -152,7 +156,7 @@ public RetrievedBulkFile setFirstSnFTm(XMLGregorianCalendar value) { * * @return * possible object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public XMLGregorianCalendar getLastSnFTm() { @@ -164,7 +168,7 @@ public XMLGregorianCalendar getLastSnFTm() { * * @param value * allowed object is - * {@link XMLGregorianCalendar } + * {@link String } * */ public RetrievedBulkFile setLastSnFTm(XMLGregorianCalendar value) { diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/SwSecCrypto.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/SwSecCrypto.java index deceadece..ac823d91f 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/SwSecCrypto.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/SwSecCrypto.java @@ -28,10 +28,10 @@ public class SwSecCrypto { @XmlElementRefs({ - @XmlElementRef(name = "CryptoInfo", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), - @XmlElementRef(name = "CryptoDescriptor", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), @XmlElementRef(name = "CryptoUserInfo", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), @XmlElementRef(name = "CryptoControl", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), + @XmlElementRef(name = "CryptoInfo", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), + @XmlElementRef(name = "CryptoDescriptor", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false), @XmlElementRef(name = "CryptoInternal", namespace = "urn:swift:snl:ns.SwSec", type = JAXBElement.class, required = false) }) protected List> content; @@ -64,11 +64,11 @@ public class SwSecCrypto { * *

* Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link SwSecCryptoInfo }{@code >} - * {@link JAXBElement }{@code <}{@link SwSecCryptoDescriptor }{@code >} * {@link JAXBElement }{@code <}{@link SwSecMixedAny }{@code >} + * {@link JAXBElement }{@code <}{@link SwSecCryptoDescriptor }{@code >} * {@link JAXBElement }{@code <}{@link SwSecCryptoControl }{@code >} * {@link JAXBElement }{@code <}{@link SwSecMixedAny }{@code >} + * {@link JAXBElement }{@code <}{@link SwSecCryptoInfo }{@code >} * * */ diff --git a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/TimeRange.java b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/TimeRange.java index 8538fdf97..e2db22577 100644 --- a/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/TimeRange.java +++ b/model-xsys-types/src/generated/java/com/prowidesoftware/swift/model/mx/sys/dic/TimeRange.java @@ -6,7 +6,9 @@ import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.datatype.XMLGregorianCalendar; +import com.prowidesoftware.swift.model.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 TimeRange { - @XmlElement(name = "FrTm", required = true) + @XmlElement(name = "FrTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar frTm; - @XmlElement(name = "ToTm", required = true) + @XmlElement(name = "ToTm", required = true, type = String.class) + @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar toTm; @@ -38,7 +42,7 @@ public class TimeRange { * * @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 TimeRange setFrTm(XMLGregorianCalendar value) { @@ -63,7 +67,7 @@ public TimeRange 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 TimeRange setToTm(XMLGregorianCalendar value) {