diff --git a/CHANGELOG.md b/CHANGELOG.md index d6b13110a..f133b27f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,25 @@ # Prowide Core - CHANGELOG -#### 9.4.19 - November 2024 +#### 9.5.3 - November 2024 * (PW-2040) Updated the BBAN validation data file to the IBAN REGISTRY Jul 2024 release + * (PW-2006) Fixed `getMUR` and `setMUR` in `SwiftMessage` to prioritize field 108 in block 4 over block 3 for system messages (category 0) + * Added new `MtSequenceEnum` with all the available inner sequences of specific MT schemas + * Added `isSystemMessage()` to SwiftMessage to check if the message is a category 0 message (010. 011, etc...) * Added new `MtSequenceEnum` with all the available inner sequences of specific MT schemas -#### 9.4.18 - October 2024 +#### 9.5.2 - October 2024 * Added new `FieldEnum` with all the available field names * Code security improvements as per CodeQL recommendations -#### 9.4.17 - June 2024 +#### 9.5.1 - June 2024 * (PW-1913) Added IBAN validation for Egypt local account structure + * Restore deprecated method in MT210 class + +#### 9.5.0 - May 2024 + * SWIFT Standard release update 2024 (live 16 November 2025) + * Yearly revision of deprecation phase (see https://dev.prowidesoftware.com/SRU2024/getting-started/deprecation/) + * Dependency update: commons-lang3 -> 3.14.0' + * Dependency update: gson -> 2.11.0' #### 9.4.16 - May 2024 * (PW-1862) Added NarrativeFragment class for detailed line information in StructuredNarrative fragments diff --git a/build.gradle b/build.gradle index c94374e0b..8f023a9a8 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ archivesBaseName = 'pw-swift-core' group 'com.prowidesoftware' project.ext { - SRU = 'SRU2023' + SRU = 'SRU2024' } scmVersion { @@ -34,6 +34,7 @@ scmVersion { } } project.version = "${SRU}-${scmVersion.version}" +//project.version = "${SRU}-9.5.0" tasks.withType(JavaCompile) { options.encoding = 'UTF-8' @@ -52,8 +53,8 @@ repositories { } dependencies { - implementation 'org.apache.commons:commons-lang3:3.12.0' - implementation 'com.google.code.gson:gson:2.9.0' + implementation 'org.apache.commons:commons-lang3:3.14.0' + implementation 'com.google.code.gson:gson:2.11.0' compileOnly 'javax.persistence:javax.persistence-api:2.2' compileOnly 'javax.xml.bind:jaxb-api:2.3.1' @@ -61,11 +62,11 @@ dependencies { testImplementation 'javax.validation:validation-api:2.0.1.Final' testImplementation 'javax.persistence:javax.persistence-api:2.2' - testImplementation('org.junit.jupiter:junit-jupiter:5.8.2') - testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.22.0' - testImplementation group: 'org.xmlunit', name: 'xmlunit-core', version: '2.9.0' - testImplementation group: 'org.xmlunit', name: 'xmlunit-matchers', version: '2.9.0' - testImplementation group: 'org.xmlunit', name: 'xmlunit-assertj', version: '2.9.0' + testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2' + testImplementation 'org.assertj:assertj-core:3.25.3' + testImplementation 'org.xmlunit:xmlunit-core:2.10.0' + testImplementation 'org.xmlunit:xmlunit-matchers:2.9.0' + testImplementation 'org.xmlunit:xmlunit-assertj:2.9.0' } sourceSets.main.java.srcDirs = ['src/main/java', 'src/generated/java'] diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsA.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsA.java index af399a966..ae6aede4c 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsA.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsA.java @@ -28,11 +28,12 @@ public interface SchemeConstantsA { String ASET = "ASET"; String AMEND = "AMEND"; String AD = "AD"; - String AVRO = "AVRO"; - String AVRF = "AVRF"; + String AVFF = "AVFF"; String AMER = "AMER"; + String AVSS = "AVSS"; String AVSO = "AVSO"; String AVSF = "AVSF"; + String ARTH = "ARTH"; String AFI_365 = "AFI/365"; String ACT_365 = "ACT/365"; String ACT_360 = "ACT/360"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsB.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsB.java index 53153cca1..a951489e6 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsB.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsB.java @@ -50,6 +50,7 @@ public interface SchemeConstantsB { String BWIT = "BWIT"; String BOLQ = "BOLQ"; String BIRI = "BIRI"; + String BUYU = "BUYU"; String BASE = "BASE"; String BIDI = "BIDI"; String BORD = "BORD"; @@ -109,6 +110,5 @@ public interface SchemeConstantsB { String BUTC = "BUTC"; String BUYA = "BUYA"; String BUYI = "BUYI"; - String BUYU = "BUYU"; } diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsE.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsE.java index 05360a1de..383b3a521 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsE.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsE.java @@ -23,6 +23,7 @@ public interface SchemeConstantsE { String ELEC = "ELEC"; String EXOP = "EXOP"; String E = "E"; + String EMTA = "EMTA"; String EXPI = "EXPI"; String EURO = "EURO"; String EXBO = "EXBO"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsF.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsF.java index a9c05d202..19cdb3070 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsF.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsF.java @@ -23,7 +23,6 @@ public interface SchemeConstantsF { String FAXT = "FAXT"; String FEOMA = "FEOMA"; String FOLL = "FOLL"; - String FLIPPED = "FLIPPED"; String FLOATFIXED = "FLOATFIXED"; String FRABBA = "FRABBA"; String FIXEDFLOAT = "FIXEDFLOAT"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsH.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsH.java index 8c494fdf3..1abc6cf93 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsH.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsH.java @@ -17,6 +17,7 @@ public interface SchemeConstantsH { String HOLD = "HOLD"; + String HARM = "HARM"; String HOLP = "HOLP"; String HOLS = "HOLS"; String HEAR = "HEAR"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsM.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsM.java index 2cd1a35b9..482771a38 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsM.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsM.java @@ -18,6 +18,7 @@ public interface SchemeConstantsM { String MIDE = "MIDE"; String MODI = "MODI"; + String MODP = "MODP"; String M = "M"; String MATU = "MATU"; String MICO = "MICO"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsN.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsN.java index bec7e08c0..64990d23f 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsN.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsN.java @@ -25,7 +25,6 @@ public interface SchemeConstantsN { String NEWT = "NEWT"; String NEW = "NEW"; String NETCASH = "NETCASH"; - String NORMAL = "NORMAL"; String NINT = "NINT"; String NEWM = "NEWM"; String NET = "NET"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsO.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsO.java index cdb665dc0..f07f1b13d 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsO.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsO.java @@ -20,6 +20,7 @@ public interface SchemeConstantsO { String OTHR = "OTHR"; String OUR = "OUR"; String OTHER = "OTHER"; + String OMIS = "OMIS"; String OTHRPRTY = "OTHRPRTY"; String ORDRPRTY = "ORDRPRTY"; String ORDR = "ORDR"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsP.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsP.java index 2546ccaf6..436bf994b 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsP.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsP.java @@ -27,6 +27,7 @@ public interface SchemeConstantsP { String PRUR = "PRUR"; String PRINCIPAL = "PRINCIPAL"; String PREC = "PREC"; + String POST = "POST"; String PUTO = "PUTO"; String PC = "PC"; String PRIN = "PRIN"; @@ -43,7 +44,6 @@ public interface SchemeConstantsP { String PUTT = "PUTT"; String PERSDET = "PERSDET"; String PBOX = "PBOX"; - String POST = "POST"; String PFRE = "PFRE"; String PERM = "PERM"; String PAYS = "PAYS"; diff --git a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsR.java b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsR.java index a18d875bf..11c534de7 100644 --- a/src/generated/java/com/prowidesoftware/swift/SchemeConstantsR.java +++ b/src/generated/java/com/prowidesoftware/swift/SchemeConstantsR.java @@ -85,6 +85,7 @@ public interface SchemeConstantsR { String RMAG = "RMAG"; String RALA = "RALA"; String RDTE = "RDTE"; + String REVR = "REVR"; String RINR = "RINR"; String RMDR = "RMDR"; String RDDT = "RDDT"; @@ -100,7 +101,6 @@ public interface SchemeConstantsR { String REDP = "REDP"; String RESA = "RESA"; String RDUQ = "RDUQ"; - String REVR = "REVR"; String REFU = "REFU"; String RECDEL = "RECDEL"; String RELC = "RELC"; diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field101.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field101.java index 7153b4785..26b879d90 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field101.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field101.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field101 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field101 extends Field implements Serializable { */ public static final String F_101 = "101"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the Application Identifier subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field102.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field102.java index b8029047c..b31b6af47 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field102.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field102.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,7 +55,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -63,7 +63,7 @@ public class Field102 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -75,27 +75,6 @@ public class Field102 extends Field implements Serializable { */ public static final String F_102 = "102"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "Z"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "Z"; - /** * Component number for the LT Address subfield. */ @@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "Z"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field103.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field103.java index 27f295b48..ea8b8698f 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field103.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field103.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field103 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field103 extends Field implements Serializable { */ public static final String F_103 = "103"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the FINCopy Service Code subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field104.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field104.java index 5bb0ae040..ea3a130b3 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field104.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field104.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field104 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field104 extends Field implements Serializable { */ public static final String F_104 = "104"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the Message Priority subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field105.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field105.java index e264fa5a4..f9d841492 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field105.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field105.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -56,7 +56,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -64,7 +64,7 @@ public class Field105 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -76,27 +76,6 @@ public class Field105 extends Field implements Serializable { */ public static final String F_105 = "105"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "N"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "N"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "N"; - /** * Component number for the Delivery Monitoring subfield. */ @@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "N"; - } - /** * Returns the field component types pattern. *
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() { return SwiftFormatUtils.getLong(getComponent(1)); } - /** - * @deprecated use #getComponent1AsLong() instead - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public java.lang.Number getComponent1AsNumber() { - Long l = getComponent1AsLong(); - return l != null ? new BigDecimal(l) : null; - } - /** * Gets the Delivery Monitoring (component 1). * @return the Delivery Monitoring from component 1 @@ -368,15 +327,6 @@ public java.lang.Long getDeliveryMonitoringAsLong() { return getComponent1AsLong(); } - /** - * @deprecated use #getDeliveryMonitoringAsLong() instead - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public java.lang.Number getDeliveryMonitoringAsNumber() { - return getComponent1AsNumber(); - } - /** * Set the component 1 (Delivery Monitoring). * diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field106.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field106.java index 118b7b4d4..dda04a655 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field106.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field106.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field106 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field106 extends Field implements Serializable { */ public static final String F_106 = "106"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the MIR subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field107.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field107.java index c0c49bfc4..4a260c048 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field107.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field107.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field107 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field107 extends Field implements Serializable { */ public static final String F_107 = "107"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the MOR subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field108.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field108.java index 37402f498..ebed16145 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field108.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field108.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,7 +54,7 @@ * * *
- * This class complies with standard release SRU2023 + * This class complies with standard release SRU2024 */ @SuppressWarnings("unused") @Generated @@ -62,7 +62,7 @@ public class Field108 extends Field implements Serializable { /** * Constant identifying the SRU to which this class belongs to. */ - public static final int SRU = 2023; + public static final int SRU = 2024; private static final long serialVersionUID = 1L; /** @@ -74,27 +74,6 @@ public class Field108 extends Field implements Serializable { */ public static final String F_108 = "108"; - /** - * @deprecated Use {@link #parserPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String PARSER_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String COMPONENTS_PATTERN = "S"; - - /** - * @deprecated Use {@link #typesPattern()} method instead. - */ - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public static final String TYPES_PATTERN = "S"; - /** * Component number for the MUR subfield. */ @@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) { return getComponent(1); } - /** - * @deprecated Use {@link #typesPattern()} instead. - */ - @Override - @Deprecated - @ProwideDeprecated(phase4 = TargetYear.SRU2024) - public String componentsPattern() { - return "S"; - } - /** * Returns the field component types pattern. *
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field109.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field109.java index d9bed01c3..36af0d751 100644 --- a/src/generated/java/com/prowidesoftware/swift/model/field/Field109.java +++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field109.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2023 Prowide + * Copyright 2006-2024 Prowide * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,7 +59,7 @@ * * *
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field109 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field109 extends Field implements Serializable, DateContainer {
*/
public static final String F_109 = "109";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field110.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field110.java
index cff061b44..9832c047f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field110.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field110.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field110 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field110 extends Field implements Serializable {
*/
public static final String F_110 = "110";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Window Size subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Window Size (component 1).
* @return the Window Size from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getWindowSizeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getWindowSizeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getWindowSizeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Window Size).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field111.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field111.java
index a16d788ff..543957872 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field111.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field111.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field111 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field111 extends Field implements Serializable {
*/
public static final String F_111 = "111";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Service Type Identifier subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Service Type Identifier (component 1).
* @return the Service Type Identifier from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getServiceTypeIdentifierAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getServiceTypeIdentifierAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getServiceTypeIdentifierAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Service Type Identifier).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field113.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field113.java
index f1e42ed0d..52327306a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field113.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field113.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field113 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field113 extends Field implements Serializable {
*/
public static final String F_113 = "113";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Banking Priority subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field114.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field114.java
index 52085a4bc..5e167ec86 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field114.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field114.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field114 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field114 extends Field implements Serializable {
*/
public static final String F_114 = "114";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Payment Release Information Sender subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field115.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field115.java
index 329819e1b..e6e3d8b8d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field115.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field115.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field115 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field115 extends Field implements Serializable {
*/
public static final String F_115 = "115";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Payment Release Information Receiver subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field116.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field116.java
index 1212a0b0e..4f3937c71 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field116.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field116.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field116 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field116 extends Field implements Serializable {
*/
public static final String F_116 = "116";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the Restrict Delivery Value Date Today subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field117.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field117.java
index 55ccab6df..39904866e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field117.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field117.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field117 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field117 extends Field implements Serializable {
*/
public static final String F_117 = "117";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Authentication Code subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field118.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field118.java
index 67e19bb85..276b2ec0d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field118.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field118.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field118 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field118 extends Field implements Serializable {
*/
public static final String F_118 = "118";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the LT Subsets Shared Flag subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field119.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field119.java
index fff42e15c..414de82d5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field119.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field119.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field119 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field119 extends Field implements Serializable {
*/
public static final String F_119 = "119";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Validation Flag subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field11A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field11A.java
index 129bf63f9..c99224c6c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field11A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field11A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field11A extends Field implements Serializable, CurrencyContainer,
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field11A extends Field implements Serializable, CurrencyContainer,
*/
public static final String F_11A = "11A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SC";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SC";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -110,12 +89,6 @@ public class Field11A extends Field implements Serializable, CurrencyContainer,
*/
public static final Integer CURRENCY_CODE = 2;
- /**
- * @deprecated use #CURRENCY_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -234,16 +207,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SC";
- }
-
/**
* Returns the field component types pattern.
*
@@ -393,16 +356,6 @@ public String getCurrencyCode() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Currency Code
- * @deprecated use #getCurrencyCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getCurrencyCode();
- }
/**
* Get the Currency Code (component 2) as Currency
@@ -412,15 +365,6 @@ public java.util.Currency getCurrencyCodeAsCurrency() {
return getComponent2AsCurrency();
}
- /**
- * @deprecated use #getCurrencyCodeAsCurrency() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Currency getCurrencyAsCurrency() {
- return getCurrencyCodeAsCurrency();
- }
-
/**
* Set the component 1 (Qualifier).
*
@@ -486,24 +430,6 @@ public Field11A setCurrencyCode(java.util.Currency component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setCurrencyCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field11A setCurrency(String component2) {
- return setCurrencyCode(component2);
- }
-
- /**
- * @deprecated use #setComponent2(java.util.Currency) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field11A setCurrency(java.util.Currency component2) {
- return setCurrencyCode(component2);
- }
-
@Override
public List
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field11R extends Field implements Serializable, DateContainer, Mult
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,38 +83,11 @@ public class Field11R extends Field implements Serializable, DateContainer, Mult
*/
public static final String F_11R = "11R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S$
@@ -428,16 +391,6 @@ public String getMTNumber() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's MT Number
- * @deprecated use #getMTNumber() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getMT() {
- return getMTNumber();
- }
/**
* Gets the component 2 (Date).
@@ -490,16 +443,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 3).
* @return the Session Number from component 3
@@ -517,15 +460,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (ISN).
* @return the component 4
@@ -544,16 +478,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the ISN (component 4).
* @return the ISN from component 4
@@ -571,15 +495,6 @@ public java.lang.Long getISNAsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getISNAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getISNAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (MT Number).
*
@@ -601,15 +516,6 @@ public Field11R setMTNumber(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setMTNumber(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field11R setMT(String component1) {
- return setMTNumber(component1);
- }
-
/**
* Set the component 2 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field11S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field11S.java
index 84b723011..00925e61d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field11S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field11S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field11S extends Field implements Serializable, DateContainer, Mult
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,38 +83,11 @@ public class Field11S extends Field implements Serializable, DateContainer, Mult
*/
public static final String F_11S = "11S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S$
@@ -428,16 +391,6 @@ public String getMTNumber() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's MT Number
- * @deprecated use #getMTNumber() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getMT() {
- return getMTNumber();
- }
/**
* Gets the component 2 (Date).
@@ -490,16 +443,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 3).
* @return the Session Number from component 3
@@ -517,15 +460,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (ISN).
* @return the component 4
@@ -544,16 +478,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the ISN (component 4).
* @return the ISN from component 4
@@ -571,15 +495,6 @@ public java.lang.Long getISNAsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getISNAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getISNAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (MT Number).
*
@@ -601,15 +516,6 @@ public Field11S setMTNumber(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setMTNumber(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field11S setMT(String component1) {
- return setMTNumber(component1);
- }
-
/**
* Set the component 2 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12.java
index 3c353f6ec..eb5104eeb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field12 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field12 extends Field implements Serializable {
*/
public static final String F_12 = "12";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Message Type subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Message Type (component 1).
* @return the Message Type from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getMessageTypeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getMessageTypeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageTypeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Message Type).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field120.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field120.java
index 5361a050e..6692df42c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field120.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field120.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field120 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field120 extends Field implements Serializable {
*/
public static final String F_120 = "120";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Identifier subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Identifier (component 1).
* @return the Identifier from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getIdentifierAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getIdentifierAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getIdentifierAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Identifier).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field121.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field121.java
index 7b481b2eb..3d56a147f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field121.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field121.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field121 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field121 extends Field implements Serializable {
*/
public static final String F_121 = "121";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Unique Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field122.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field122.java
index fbcd34453..3618d017b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field122.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field122.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field122 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field122 extends Field implements Serializable {
*/
public static final String F_122 = "122";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number Of Messages subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -343,16 +312,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number Of Messages (component 1).
* @return the Number Of Messages from component 1
@@ -361,16 +320,6 @@ public String getNumberOfMessages() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Number Of Messages
- * @deprecated use #getNumberOfMessages() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNumberofMessages() {
- return getNumberOfMessages();
- }
/**
* Get the Number Of Messages (component 1) as Long
@@ -381,33 +330,6 @@ public java.lang.Long getNumberOfMessagesAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberOfMessagesAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberOfMessagesAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getNumberOfMessagesAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getNumberofMessagesAsLong() {
- return getNumberOfMessagesAsLong();
- }
-
- /**
- * @deprecated use #getNumberOfMessagesAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberofMessagesAsNumber() {
- return getNumberOfMessagesAsNumber();
- }
-
/**
* Set the component 1 (Number Of Messages).
*
@@ -468,24 +390,6 @@ public Field122 setNumberOfMessages(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setNumberOfMessages(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field122 setNumberofMessages(String component1) {
- return setNumberOfMessages(component1);
- }
-
- /**
- * @deprecated use #setNumberOfMessages(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field122 setNumberofMessages(java.lang.Number component1) {
- return setNumberOfMessages(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field123.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field123.java
index 4e00f72d6..babfb7574 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field123.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field123.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field123 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field123 extends Field implements Serializable {
*/
public static final String F_123 = "123";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Message List subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field124.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field124.java
index 14b47755a..b12be4cd2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field124.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field124.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field124 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field124 extends Field implements Serializable {
*/
public static final String F_124 = "124";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "M";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "M";
-
/**
* Component number for the MT subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "M";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field125.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field125.java
index f7827ce8e..616e89a4e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field125.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field125.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field125 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field125 extends Field implements Serializable {
*/
public static final String F_125 = "125";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Category subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Category (component 1).
* @return the Category from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getCategoryAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getCategoryAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getCategoryAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Category).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field126.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field126.java
index d55cee7c7..14ed9e302 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field126.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field126.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field126 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field126 extends Field implements Serializable {
*/
public static final String F_126 = "126";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Seed subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Seed (component 1).
* @return the Seed from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getSeedAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSeedAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSeedAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Seed).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field127.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field127.java
index 5b0a1372a..188fc6071 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field127.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field127.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field127 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field127 extends Field implements Serializable {
*/
public static final String F_127 = "127";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Test Mode Code subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field128.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field128.java
index f095f46fe..60d82606b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field128.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field128.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field128 extends Field implements Serializable, BICContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field128 extends Field implements Serializable, BICContainer {
*/
public static final String F_128 = "128";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "cB";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "cB";
-
/**
* Component number for the Priority subfield.
*/
@@ -225,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "cB";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field129.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field129.java
index ff8964280..99103657b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field129.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field129.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field129 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field129 extends Field implements Serializable {
*/
public static final String F_129 = "129";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Section subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -358,16 +327,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Section (component 1).
* @return the Section from component 1
@@ -385,15 +344,6 @@ public java.lang.Long getSectionAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSectionAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSectionAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Total).
* @return the component 2
@@ -412,16 +362,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total (component 2).
* @return the Total from component 2
@@ -439,15 +379,6 @@ public java.lang.Long getTotalAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Section).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12A.java
index 1af9f6266..8afb8d109 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field12A extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field12A extends Field implements Serializable, GenericField {
*/
public static final String F_12A = "12A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -113,12 +92,6 @@ public class Field12A extends Field implements Serializable, GenericField {
*/
public static final Integer INSTRUMENT_CODE_OR_DESCRIPTION = 3;
- /**
- * @deprecated use #INSTRUMENT_CODE_OR_DESCRIPTION instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer INSTRUMENT_CODE = 3;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -244,16 +217,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -416,16 +379,6 @@ public String getInstrumentCodeOrDescription() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Instrument Code Or Description
- * @deprecated use #getInstrumentCodeOrDescription() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getInstrumentCode() {
- return getInstrumentCodeOrDescription();
- }
/**
* Set the component 1 (Qualifier).
@@ -490,15 +443,6 @@ public Field12A setInstrumentCodeOrDescription(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setInstrumentCodeOrDescription(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field12A setInstrumentCode(String component3) {
- return setInstrumentCodeOrDescription(component3);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12B.java
index d2c770840..a5540feeb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field12B extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field12B extends Field implements Serializable, GenericField {
*/
public static final String F_12B = "12B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -243,16 +222,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -417,7 +386,6 @@ public String getInstrumentTypeCode() {
/**
* Alternative method getter for field's Instrument Type Code
- * @deprecated use #getInstrumentTypeCode() instead
* @since 9.2.7
*/
public String getType() {
@@ -487,9 +455,6 @@ public Field12B setInstrumentTypeCode(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setInstrumentTypeCode(String) instead
- */
public Field12B setType(String component3) {
return setInstrumentTypeCode(component3);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12C.java
index c833fefef..0384d16b3 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field12C extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field12C extends Field implements Serializable, GenericField {
*/
public static final String F_12C = "12C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12D.java
index 96e86be85..49cfa25d7 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field12D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field12D extends Field implements Serializable {
*/
public static final String F_12D = "12D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Option Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12E.java
index 73e44836f..214f09392 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field12E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field12E extends Field implements Serializable {
*/
public static final String F_12E = "12E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Status subfield.
*/
@@ -106,12 +85,6 @@ public class Field12E extends Field implements Serializable {
*/
public static final Integer CODE = 1;
- /**
- * @deprecated use #STATUS instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer EXPIRATION_STYLE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -221,16 +194,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -356,23 +319,12 @@ public String getStatus() {
/**
* Alternative method getter for field's Status
- * @deprecated use #getStatus() instead
* @since 9.2.7
*/
public String getCode() {
return getStatus();
}
- /**
- * Alternative DEPRECATED method getter for field's Status
- * @deprecated use #getStatus() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getExpirationStyle() {
- return getStatus();
- }
/**
* Set the component 1 (Status).
@@ -395,22 +347,10 @@ public Field12E setStatus(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setStatus(String) instead
- */
public Field12E setCode(String component1) {
return setStatus(component1);
}
- /**
- * @deprecated use #setStatus(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field12E setExpirationStyle(String component1) {
- return setStatus(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12F.java
index e2155cbba..5d139277a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field12F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field12F extends Field implements Serializable {
*/
public static final String F_12F = "12F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Option Style subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field12G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field12G.java
index 2a1d3dc72..14ab84928 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field12G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field12G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field12G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field12G extends Field implements Serializable {
*/
public static final String F_12G = "12G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Early Termination Style subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field130.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field130.java
index f69e0e879..a9963d7f8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field130.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field130.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field130 extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field130 extends Field implements Serializable, MultiLineField {
*/
public static final String F_130 = "130";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "/S/S$/S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NSNS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NSNS";
-
/**
* Component number for the Heading Code subfield.
*/
@@ -260,16 +239,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(4);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NSNS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -400,16 +369,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Heading Code (component 1).
* @return the Heading Code from component 1
@@ -427,15 +386,6 @@ public java.lang.Long getHeadingCodeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getHeadingCodeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getHeadingCodeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Heading Text).
* @return the component 2
@@ -470,16 +420,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Heading Code 2 (component 3).
* @return the Heading Code 2 from component 3
@@ -497,15 +437,6 @@ public java.lang.Long getHeadingCode2AsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getHeadingCode2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getHeadingCode2AsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Heading Text 2).
* @return the component 4
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field132.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field132.java
index 664fe0adf..1b9973ba5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field132.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field132.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field132 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field132 extends Field implements Serializable {
*/
public static final String F_132 = "132";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "cN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "cN";
-
/**
* Component number for the Broadcast Indicator subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "cN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -375,16 +344,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Broadcast Number (component 2).
* @return the Broadcast Number from component 2
@@ -402,15 +361,6 @@ public java.lang.Long getBroadcastNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getBroadcastNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getBroadcastNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Broadcast Indicator).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field133.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field133.java
index 30c426856..28e763067 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field133.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field133.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field133 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field133 extends Field implements Serializable {
*/
public static final String F_133 = "133";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "c3!S
@@ -445,16 +414,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Broadcast Number (component 4).
* @return the Broadcast Number from component 4
@@ -472,15 +431,6 @@ public java.lang.Long getBroadcastNumberAsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getBroadcastNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getBroadcastNumberAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (Broadcast Indicator).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field134.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field134.java
index 34682adde..da48104a4 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field134.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field134.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field134 extends Field implements Serializable, BICContainer, Multi
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field134 extends Field implements Serializable, BICContainer, Multi
*/
public static final String F_134 = "134";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S$S$S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "BSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "BSS";
-
/**
* Component number for the BIC subfield.
*/
@@ -242,16 +221,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "BSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field135.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field135.java
index dbe064e4d..1127e90d5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field135.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field135.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field135 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field135 extends Field implements Serializable {
*/
public static final String F_135 = "135";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "c";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "c";
-
/**
* Component number for the Priority subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "c";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field136.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field136.java
index 9c9754224..bfec6216f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field136.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field136.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field136 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field136 extends Field implements Serializable {
*/
public static final String F_136 = "136";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "cN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "cN";
-
/**
* Component number for the Broadcast Indicator subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "cN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -372,16 +341,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Broadcast Number (component 2).
* @return the Broadcast Number from component 2
@@ -399,15 +358,6 @@ public java.lang.Long getBroadcastNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getBroadcastNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getBroadcastNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Broadcast Indicator).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field137.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field137.java
index 47e5282b0..d8656223c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field137.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field137.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field137 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field137 extends Field implements Serializable {
*/
public static final String F_137 = "137";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "c3!S
@@ -445,16 +414,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Broadcast Number (component 4).
* @return the Broadcast Number from component 4
@@ -472,15 +431,6 @@ public java.lang.Long getBroadcastNumberAsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getBroadcastNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getBroadcastNumberAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (Broadcast Indicator).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13A.java
index e109df9e5..8a8f0546c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field13A extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field13A extends Field implements Serializable, GenericField {
*/
public static final String F_13A = "13A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -230,16 +209,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -382,7 +351,6 @@ public String getNumberId() {
/**
* Alternative method getter for field's Number Id
- * @deprecated use #getNumberId() instead
* @since 9.2.7
*/
public String getNumberIdentification() {
@@ -431,9 +399,6 @@ public Field13A setNumberId(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setNumberId(String) instead
- */
public Field13A setNumberIdentification(String component2) {
return setNumberId(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13B.java
index 1a28c0f4e..72ca6e9ae 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field13B extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field13B extends Field implements Serializable, GenericField {
*/
public static final String F_13B = "13B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -237,16 +216,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13C.java
index 2bae39eef..29a8393e5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field13C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field13C extends Field implements Serializable {
*/
public static final String F_13C = "13C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "/S/
@@ -442,16 +399,6 @@ public String getTimeIndication() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Time Indication
- * @deprecated use #getTimeIndication() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getTime() {
- return getTimeIndication();
- }
/**
* Get the Time Indication (component 2) as Calendar
@@ -461,15 +408,6 @@ public java.util.Calendar getTimeIndicationAsCalendar() {
return getComponent2AsCalendar();
}
- /**
- * @deprecated use #getTimeIndicationAsCalendar() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Calendar getTimeAsCalendar() {
- return getTimeIndicationAsCalendar();
- }
-
/**
* Gets the component 3 (Sign).
* @return the component 3
@@ -511,16 +449,6 @@ public String getTimeOffset() {
return getComponent4();
}
- /**
- * Alternative DEPRECATED method getter for field's Time Offset
- * @deprecated use #getTimeOffset() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getOffset() {
- return getTimeOffset();
- }
/**
* Get the Time Offset (component 4) as Calendar
@@ -530,15 +458,6 @@ public java.util.Calendar getTimeOffsetAsCalendar() {
return getComponent4AsCalendar();
}
- /**
- * @deprecated use #getTimeOffsetAsCalendar() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Calendar getOffsetAsCalendar() {
- return getTimeOffsetAsCalendar();
- }
-
/**
* Set the component 1 (Code).
*
@@ -604,24 +523,6 @@ public Field13C setTimeIndication(java.util.Calendar component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setTimeIndication(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13C setTime(String component2) {
- return setTimeIndication(component2);
- }
-
- /**
- * @deprecated use #setComponent2(java.util.Calendar) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13C setTime(java.util.Calendar component2) {
- return setTimeIndication(component2);
- }
-
/**
* Set the component 3 (Sign).
*
@@ -687,24 +588,6 @@ public Field13C setTimeOffset(java.util.Calendar component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setTimeOffset(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13C setOffset(String component4) {
- return setTimeOffset(component4);
- }
-
- /**
- * @deprecated use #setComponent4(java.util.Calendar) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13C setOffset(java.util.Calendar component4) {
- return setTimeOffset(component4);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13D.java
index 8966998a0..e64f566ba 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field13D extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field13D extends Field implements Serializable, DateContainer {
*/
public static final String F_13D = "13D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13J.java
index 50b521c41..08df0b000 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field13J extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field13J extends Field implements Serializable, GenericField {
*/
public static final String F_13J = "13J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -107,12 +86,6 @@ public class Field13J extends Field implements Serializable, GenericField {
*/
public static final Integer EXTENDED_NUMBER_ID = 2;
- /**
- * @deprecated use #EXTENDED_NUMBER_ID instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -231,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -381,16 +344,6 @@ public String getExtendedNumberId() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Extended Number Id
- * @deprecated use #getExtendedNumberId() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getExtendedNumberId();
- }
/**
* Set the component 1 (Qualifier).
@@ -434,15 +387,6 @@ public Field13J setExtendedNumberId(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setExtendedNumberId(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13J setCode(String component2) {
- return setExtendedNumberId(component2);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field13K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field13K.java
index b101aba63..536d525bc 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field13K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field13K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field13K extends Field implements Serializable, AmountContainer, Ge
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field13K extends Field implements Serializable, AmountContainer, Ge
*/
public static final String F_13K = "13K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S/N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSI";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -117,12 +96,6 @@ public class Field13K extends Field implements Serializable, AmountContainer, Ge
*/
public static final Integer QUANTITY = 3;
- /**
- * @deprecated use #QUANTITY instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 3;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -255,16 +228,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -426,15 +389,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 3).
* @return the Quantity from component 3
@@ -443,16 +397,6 @@ public String getQuantity() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 3) as BigDecimal
@@ -463,33 +407,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent3AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
@@ -593,24 +510,6 @@ public Field13K setQuantity(java.lang.Number component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13K setAmount(String component3) {
- return setQuantity(component3);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field13K setAmount(java.lang.Number component3) {
- return setQuantity(component3);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field140.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field140.java
index 1181d47b6..216ca00e6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field140.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field140.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field140 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field140 extends Field implements Serializable {
*/
public static final String F_140 = "140";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Identifier subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Identifier (component 1).
* @return the Identifier from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getIdentifierAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getIdentifierAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getIdentifierAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Identifier).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field141.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field141.java
index f656cfeae..ce64f645b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field141.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field141.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field141 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field141 extends Field implements Serializable {
*/
public static final String F_141 = "141";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Key subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field142.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field142.java
index 3f30664e7..8df1ada30 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field142.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field142.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field142 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field142 extends Field implements Serializable, DateContainer {
*/
public static final String F_142 = "142";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "A";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "A";
-
/**
* Component number for the Start Date Time subfield.
*/
@@ -217,16 +196,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "A";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field143.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field143.java
index 9967814df..b7319cfb6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field143.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field143.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field143 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field143 extends Field implements Serializable, DateContainer {
*/
public static final String F_143 = "143";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "A";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "A";
-
/**
* Component number for the End Date Time subfield.
*/
@@ -217,16 +196,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "A";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field144.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field144.java
index 90af770f8..c90950d75 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field144.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field144.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field144 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field144 extends Field implements Serializable {
*/
public static final String F_144 = "144";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Status Code subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Status Code (component 1).
* @return the Status Code from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getStatusCodeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getStatusCodeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getStatusCodeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Status Code).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14A.java
index 0fe6caa63..05c813497 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14A extends Field implements Serializable {
*/
public static final String F_14A = "14A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Convention subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14B.java
index 19695cf8f..1ac403847 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14B extends Field implements Serializable {
*/
public static final String F_14B = "14B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Method subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14C.java
index 9780b5cb2..7920253ed 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field14C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field14C extends Field implements Serializable {
*/
public static final String F_14C = "14C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Year subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Year (component 1).
* @return the Year from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getYearAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getYearAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getYearAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Year).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14D.java
index ed8053330..829f07d31 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14D extends Field implements Serializable {
*/
public static final String F_14D = "14D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Day Count Fraction subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14E.java
index 7c6ff7a89..772714f23 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14E extends Field implements Serializable {
*/
public static final String F_14E = "14E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14F.java
index afc80ac19..e7fded607 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14F extends Field implements Serializable {
*/
public static final String F_14F = "14F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Option subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14G.java
index 603e29021..e68f84bf7 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field14G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field14G extends Field implements Serializable {
*/
public static final String F_14G = "14G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Frequency subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14H.java
index 4b79ee34d..c80091052 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14H extends Field implements Serializable {
*/
public static final String F_14H = "14H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Convention subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14J.java
index 31985442f..954d34a6f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14J extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14J extends Field implements Serializable {
*/
public static final String F_14J = "14J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Code subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14K.java
index a2731ee1b..af027ccaf 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14K extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14K extends Field implements Serializable {
*/
public static final String F_14K = "14K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Convention subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14L.java
index e7f26bcb0..0e714650e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14L extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14L extends Field implements Serializable {
*/
public static final String F_14L = "14L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Convention subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14M.java
index 5da9d8b1a..0b4afa30a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14M extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14M extends Field implements Serializable {
*/
public static final String F_14M = "14M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14N.java
index 55357c953..cf8a60922 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14N extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14N extends Field implements Serializable {
*/
public static final String F_14N = "14N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Market subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14O.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14O.java
index 4a7e703b1..883e7fa42 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field14O.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14O.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field14O extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field14O extends Field implements Serializable {
*/
public static final String F_14O = "14O";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field14P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field14P.java
new file mode 100644
index 000000000..651122661
--- /dev/null
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field14P.java
@@ -0,0 +1,393 @@
+/*
+ * Copyright 2006-2024 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.field;
+
+import com.prowidesoftware.swift.model.Tag;
+import com.prowidesoftware.Generated;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
+
+import java.io.Serializable;
+import java.util.Locale;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+
+
+
+import com.prowidesoftware.swift.model.*;
+import com.prowidesoftware.swift.utils.SwiftFormatUtils;
+import org.apache.commons.lang3.StringUtils;
+
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+
+/**
+ * SWIFT MT Field 14P.
+ *
+ * Model and parser for field 14P of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field14P extends Field implements Serializable {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 14P.
+ */
+ public static final String NAME = "14P";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_14P = "14P";
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field14P() {
+ super(1);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field14P(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field14P(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "14P")) {
+ throw new IllegalArgumentException("cannot create field 14P from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field14P newInstance(Field14P source) {
+ Field14P cp = new Field14P();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(1);
+ setComponent1(value);
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "4!c";
+ }
+
+ /**
+ * Given a component number it returns true if the component is optional,
+ * regardless of the field being mandatory in a particular message.
- * Model and parser for field 44H of a SWIFT MT message.
+ * Model and parser for field 14Q of a SWIFT MT message.
*
* Subfields (components) Data types
* Structure definition
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
-public class Field44H extends Field implements Serializable {
+public class Field14Q extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
- * Constant with the field name 44H.
+ * Constant with the field name 14Q.
*/
- public static final String NAME = "44H";
+ public static final String NAME = "14Q";
/**
* Same as NAME, intended to be clear when using static imports.
*/
- public static final String F_44H = "44H";
-
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
- /**
- * Component number for the Country Code subfield.
- */
- public static final Integer COUNTRY_CODE = 1;
-
- /**
- * Component number for the Narrative subfield.
- */
- public static final Integer NARRATIVE = 2;
+ public static final String F_14Q = "14Q";
/**
* Default constructor. Creates a new field setting all components to null.
*/
- public Field44H() {
- super(2);
+ public Field14Q() {
+ super(1);
}
/**
* Creates a new field and initializes its components with content from the parameter value.
* @param value complete field value including separators and CRLF
*/
- public Field44H(final String value) {
+ public Field14Q(final String value) {
super(value);
}
@@ -127,13 +95,13 @@ public Field44H(final String value) {
* @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
* @since 7.8
*/
- public Field44H(final Tag tag) {
+ public Field14Q(final Tag tag) {
this();
if (tag == null) {
throw new IllegalArgumentException("tag cannot be null.");
}
- if (!StringUtils.equals(tag.getName(), "44H")) {
- throw new IllegalArgumentException("cannot create field 44H from tag "+tag.getName()+", tagname must match the name of the field.");
+ if (!StringUtils.equals(tag.getName(), "14Q")) {
+ throw new IllegalArgumentException("cannot create field 14Q from tag "+tag.getName()+", tagname must match the name of the field.");
}
parse(tag.getValue());
}
@@ -144,8 +112,8 @@ public Field44H(final Tag tag) {
* @param source a field instance to copy
* @since 7.7
*/
- public static Field44H newInstance(Field44H source) {
- Field44H cp = new Field44H();
+ public static Field14Q newInstance(Field14Q source) {
+ Field14Q cp = new Field14Q();
cp.setComponents(new ArrayList<>(source.getComponents()));
return cp;
}
@@ -182,9 +150,8 @@ public static Tag emptyTag() {
*/
@Override
public void parse(final String value) {
- init(2);
- setComponent1(SwiftParseUtils.getTokenFirst(value, "/"));
- setComponent2(SwiftParseUtils.getTokenSecondLast(value, "/"));
+ init(1);
+ setComponent1(value);
}
/**
@@ -194,9 +161,6 @@ public void parse(final String value) {
public String getValue() {
final StringBuilder result = new StringBuilder();
append(result, 1);
- if (getComponent2() != null) {
- result.append("/").append(getComponent2());
- }
return result.toString();
}
@@ -211,26 +175,11 @@ public String getValue() {
*/
@Override
public String getValueDisplay(int component, Locale locale) {
- if (component < 1 || component > 2) {
- throw new IllegalArgumentException("invalid component number " + component + " for field 44H");
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 14Q");
}
- if (component == 1) {
- //default format (as is)
- return getComponent(1);
- }
- // This is the last component, return directly without `if`
//default format (as is)
- return getComponent(2);
- }
-
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
+ return getComponent(1);
}
/**
@@ -242,7 +191,7 @@ public String componentsPattern() {
*/
@Override
public String typesPattern() {
- return "SS";
+ return "S";
}
/**
@@ -250,7 +199,7 @@ public String typesPattern() {
*/
@Override
public String parserPattern() {
- return "S[/S]";
+ return "S";
}
/**
@@ -258,7 +207,7 @@ public String parserPattern() {
*/
@Override
public String validatorPattern() {
- return "
+ * Model and parser for field 14R of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field14R extends Field implements Serializable {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 14R.
+ */
+ public static final String NAME = "14R";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_14R = "14R";
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field14R() {
+ super(1);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field14R(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field14R(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "14R")) {
+ throw new IllegalArgumentException("cannot create field 14R from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field14R newInstance(Field14R source) {
+ Field14R cp = new Field14R();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(1);
+ setComponent1(value);
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "4!c";
+ }
+
+ /**
+ * Given a component number it returns true if the component is optional,
+ * regardless of the field being mandatory in a particular message.
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field14S extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field14S extends Field implements Serializable {
*/
public static final String F_14S = "14S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN[/
@@ -431,16 +400,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 2).
* @return the Number from component 2
@@ -458,15 +417,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Time).
* @return the component 3
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field151.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field151.java
index 6b6c86829..ad44fd5bb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field151.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field151.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field151 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field151 extends Field implements Serializable {
*/
public static final String F_151 = "151";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Session Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 1).
* @return the Session Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Session Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field152.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field152.java
index 691dbf446..3b5ebb8cb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field152.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field152.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field152 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field152 extends Field implements Serializable {
*/
public static final String F_152 = "152";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Sequence Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Sequence Number (component 1).
* @return the Sequence Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getSequenceNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Sequence Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field153.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field153.java
index 1b9f7ce28..8e57d3821 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field153.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field153.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field153 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field153 extends Field implements Serializable {
*/
public static final String F_153 = "153";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Sequence Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Sequence Number (component 1).
* @return the Sequence Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getSequenceNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Sequence Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15A.java
index 5cc77e562..53d3b95e5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15A extends Field implements Serializable {
*/
public static final String F_15A = "15A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15B.java
index 6777eaf40..a77b075a1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15B extends Field implements Serializable {
*/
public static final String F_15B = "15B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15C.java
index 02968b461..0c0943cc2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15C extends Field implements Serializable {
*/
public static final String F_15C = "15C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15D.java
index 82ad2d5af..66a489c11 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15D extends Field implements Serializable {
*/
public static final String F_15D = "15D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15E.java
index 639e8ce39..1fee666d6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15E extends Field implements Serializable {
*/
public static final String F_15E = "15E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15F.java
index 2279132ac..063aa6da2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15F extends Field implements Serializable {
*/
public static final String F_15F = "15F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15G.java
index 4da34fba9..e7833cd81 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15G extends Field implements Serializable {
*/
public static final String F_15G = "15G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15H.java
index 4b91346d3..52fdf6d01 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15H extends Field implements Serializable {
*/
public static final String F_15H = "15H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15I.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15I.java
index 66a2de441..f52cf252c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15I.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15I.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15I extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15I extends Field implements Serializable {
*/
public static final String F_15I = "15I";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15J.java
index 78101daed..2fe1fbbe0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15J extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15J extends Field implements Serializable {
*/
public static final String F_15J = "15J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15K.java
index a026968d3..fd001d10a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15K extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15K extends Field implements Serializable {
*/
public static final String F_15K = "15K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15L.java
index 9cbfd59d7..96a162f21 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15L extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15L extends Field implements Serializable {
*/
public static final String F_15L = "15L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15M.java
index 7a2da7e56..559dfca1f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15M extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15M extends Field implements Serializable {
*/
public static final String F_15M = "15M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15N.java
index 3006803e7..b9fd718d9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15N extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15N extends Field implements Serializable {
*/
public static final String F_15N = "15N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15O.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15O.java
index 563449c94..405c21ac4 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15O.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15O.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15O extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15O extends Field implements Serializable {
*/
public static final String F_15O = "15O";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field15P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field15P.java
index 1d023f935..07661a1ab 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field15P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field15P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field15P extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field15P extends Field implements Serializable {
*/
public static final String F_15P = "15P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field165.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field165.java
index 76f8d9d0f..c17109bf2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field165.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field165.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field165 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field165 extends Field implements Serializable {
*/
public static final String F_165 = "165";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "/S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Service Code subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field16A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field16A.java
index feeeb084f..d4280e342 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field16A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field16A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field16A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field16A extends Field implements Serializable {
*/
public static final String F_16A = "16A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field16C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field16C.java
index 27a294eec..87f97c80b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field16C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field16C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field16C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field16C extends Field implements Serializable {
*/
public static final String F_16C = "16C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field16D.java
similarity index 69%
rename from src/generated/java/com/prowidesoftware/swift/model/field/Field22J.java
rename to src/generated/java/com/prowidesoftware/swift/model/field/Field16D.java
index df03220a2..e8a448950 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field16D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,6 +27,8 @@
import java.util.Map;
import java.util.HashMap;
+import java.math.BigDecimal;
+import java.math.BigInteger;
import com.prowidesoftware.swift.model.*;
@@ -37,80 +39,52 @@
import com.google.gson.JsonParser;
/**
- * SWIFT MT Field 22J.
+ * SWIFT MT Field 16D.
*
- * Model and parser for field 22J of a SWIFT MT message.
+ * Model and parser for field 16D of a SWIFT MT message.
*
* Subfields (components) Data types
* Structure definition
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
-public class Field22J extends Field implements Serializable {
+public class Field16D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
- * Constant with the field name 22J.
+ * Constant with the field name 16D.
*/
- public static final String NAME = "22J";
+ public static final String NAME = "16D";
/**
* Same as NAME, intended to be clear when using static imports.
*/
- public static final String F_22J = "22J";
-
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
- /**
- * Component number for the Type Of Trigger subfield.
- */
- public static final Integer TYPE_OF_TRIGGER = 1;
+ public static final String F_16D = "16D";
/**
- * @deprecated use #TYPE_OF_TRIGGER instead
+ * Component number for the Number subfield.
*/
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE_OF_BARRIER = 1;
+ public static final Integer NUMBER = 1;
/**
* Default constructor. Creates a new field setting all components to null.
*/
- public Field22J() {
+ public Field16D() {
super(1);
}
@@ -118,7 +92,7 @@ public Field22J() {
* Creates a new field and initializes its components with content from the parameter value.
* @param value complete field value including separators and CRLF
*/
- public Field22J(final String value) {
+ public Field16D(final String value) {
super(value);
}
@@ -128,13 +102,13 @@ public Field22J(final String value) {
* @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
* @since 7.8
*/
- public Field22J(final Tag tag) {
+ public Field16D(final Tag tag) {
this();
if (tag == null) {
throw new IllegalArgumentException("tag cannot be null.");
}
- if (!StringUtils.equals(tag.getName(), "22J")) {
- throw new IllegalArgumentException("cannot create field 22J from tag "+tag.getName()+", tagname must match the name of the field.");
+ if (!StringUtils.equals(tag.getName(), "16D")) {
+ throw new IllegalArgumentException("cannot create field 16D from tag "+tag.getName()+", tagname must match the name of the field.");
}
parse(tag.getValue());
}
@@ -145,8 +119,8 @@ public Field22J(final Tag tag) {
* @param source a field instance to copy
* @since 7.7
*/
- public static Field22J newInstance(Field22J source) {
- Field22J cp = new Field22J();
+ public static Field16D newInstance(Field16D source) {
+ Field16D cp = new Field16D();
cp.setComponents(new ArrayList<>(source.getComponents()));
return cp;
}
@@ -209,22 +183,12 @@ public String getValue() {
@Override
public String getValueDisplay(int component, Locale locale) {
if (component != 1) {
- throw new IllegalArgumentException("invalid component number " + component + " for field 22J");
+ throw new IllegalArgumentException("invalid component number " + component + " for field 16D");
}
//default format (as is)
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -234,7 +198,7 @@ public String componentsPattern() {
*/
@Override
public String typesPattern() {
- return "S";
+ return "N";
}
/**
@@ -250,7 +214,7 @@ public String parserPattern() {
*/
@Override
public String validatorPattern() {
- return "4!c";
+ return "2n";
}
/**
@@ -298,7 +262,7 @@ public int componentsSize() {
@Override
public List
+ * This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
*
- * @param component1 the Type Of Trigger to set
+ * @param component1 the Number with the Number content to set
* @return the field object to enable build pattern
*/
- public Field22J setTypeOfTrigger(String component1) {
+ public Field16D setComponent1(java.lang.Number component1) {
+
+ // NOTE: remember instanceof implicitly checks for non-null
+
+ if (component1 instanceof Long) {
+ setComponent(1, SwiftFormatUtils.getLong((Long) component1));
+ } else if (component1 instanceof BigInteger || component1 instanceof Integer) {
+ setComponent(1, SwiftFormatUtils.getLong(component1.longValue()));
+ } else if (component1 != null) {
+ // it's another non-null Number (Float, Double, BigDecimal, etc...)
+ setComponent(1, SwiftFormatUtils.getLong(component1.longValue()));
+ } else {
+ // explicitly set component as null
+ setComponent(1, null);
+ }
+ return this;
+ }
+
+ /**
+ * Set the Number (component 1).
+ *
+ * @param component1 the Number to set
+ * @return the field object to enable build pattern
+ */
+ public Field16D setNumber(String component1) {
return setComponent1(component1);
}
/**
- * @deprecated use #setTypeOfTrigger(String) instead
+ * Alternative method setter for field's Number (component 1) as Number
+ *
+ * This method supports java constant value boxing for simpler coding styles (ex: 10 becomes an Integer)
+ *
+ * @param component1 the Number with the Number content to set
+ * @return the field object to enable build pattern
*/
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22J setTypeOfBarrier(String component1) {
- return setTypeOfTrigger(component1);
+ public Field16D setNumber(java.lang.Number component1) {
+ return setComponent1(component1);
}
/**
* Returns the field's name composed by the field number and the letter option (if any).
- * @return the static value of Field22J.NAME
+ * @return the static value of Field16D.NAME
*/
@Override
public String getName() {
@@ -403,7 +403,7 @@ public String getName() {
* @return null if not found o block is null or empty
* @param block may be null or empty
*/
- public static Field22J get(final SwiftTagListBlock block) {
+ public static Field16D get(final SwiftTagListBlock block) {
if (block == null || block.isEmpty()) {
return null;
}
@@ -411,16 +411,16 @@ public static Field22J get(final SwiftTagListBlock block) {
if (t == null) {
return null;
}
- return new Field22J(t);
+ return new Field16D(t);
}
/**
- * Gets the first instance of Field22J in the given message.
+ * Gets the first instance of Field16D in the given message.
* @param msg may be empty or null
* @return null if not found or msg is empty or null
* @see #get(SwiftTagListBlock)
*/
- public static Field22J get(final SwiftMessage msg) {
+ public static Field16D get(final SwiftMessage msg) {
if (msg == null || msg.getBlock4() == null || msg.getBlock4().isEmpty()) {
return null;
}
@@ -428,12 +428,12 @@ public static Field22J get(final SwiftMessage msg) {
}
/**
- * Gets a list of all occurrences of the field Field22J in the given message
+ * Gets a list of all occurrences of the field Field16D in the given message
* an empty list is returned if none found.
* @param msg may be empty or null in which case an empty list is returned
* @see #getAll(SwiftTagListBlock)
*/
- public static List
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field16R extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field16R extends Field implements Serializable {
*/
public static final String F_16R = "16R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the BlockName subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field16S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field16S.java
index 3454f030b..3592cc8c2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field16S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field16S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field16S extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field16S extends Field implements Serializable {
*/
public static final String F_16S = "16S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the BlockName subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field16W.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field16W.java
new file mode 100644
index 000000000..928bcdbd2
--- /dev/null
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field16W.java
@@ -0,0 +1,393 @@
+/*
+ * Copyright 2006-2024 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.field;
+
+import com.prowidesoftware.swift.model.Tag;
+import com.prowidesoftware.Generated;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
+
+import java.io.Serializable;
+import java.util.Locale;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+
+
+
+import com.prowidesoftware.swift.model.*;
+import com.prowidesoftware.swift.utils.SwiftFormatUtils;
+import org.apache.commons.lang3.StringUtils;
+
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+
+/**
+ * SWIFT MT Field 16W.
+ *
+ * Model and parser for field 16W of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field16W extends Field implements Serializable {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 16W.
+ */
+ public static final String NAME = "16W";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_16W = "16W";
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field16W() {
+ super(1);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field16W(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field16W(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "16W")) {
+ throw new IllegalArgumentException("cannot create field 16W from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field16W newInstance(Field16W source) {
+ Field16W cp = new Field16W();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(1);
+ setComponent1(value);
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "4!c";
+ }
+
+ /**
+ * Given a component number it returns true if the component is optional,
+ * regardless of the field being mandatory in a particular message.
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field171 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field171 extends Field implements Serializable, DateContainer {
*/
public static final String F_171 = "171";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field172.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field172.java
index c4573aa5b..2e6f7fed0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field172.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field172.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field172 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field172 extends Field implements Serializable, DateContainer {
*/
public static final String F_172 = "172";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field173.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field173.java
index bcfab069f..e741d7667 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field173.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field173.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field173 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field173 extends Field implements Serializable, DateContainer {
*/
public static final String F_173 = "173";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "P";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "P";
-
/**
* Component number for the Day Time subfield.
*/
@@ -217,16 +196,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "P";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field174.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field174.java
index ddfdc6435..06bca17dd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field174.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field174.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field174 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field174 extends Field implements Serializable {
*/
public static final String F_174 = "174";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "Q";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "Q";
-
/**
* Component number for the Range subfield.
*/
@@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "Q";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field175.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field175.java
index 4ed1f2ae6..4c16e5009 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field175.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field175.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field175 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field175 extends Field implements Serializable {
*/
public static final String F_175 = "175";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "H";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "H";
-
/**
* Component number for the Time subfield.
*/
@@ -214,16 +193,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "H";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field177.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field177.java
index dd57a3242..3e0dfe82f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field177.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field177.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field177 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field177 extends Field implements Serializable, DateContainer {
*/
public static final String F_177 = "177";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "U";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "U";
-
/**
* Component number for the Date Time subfield.
*/
@@ -217,16 +196,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "U";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field179.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field179.java
index 7bb0fff79..1f2cca101 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field179.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field179.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field179 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field179 extends Field implements Serializable {
*/
public static final String F_179 = "179";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "T";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "T";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "T";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17A.java
index 78d1abae3..140bd9f07 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17A extends Field implements Serializable {
*/
public static final String F_17A = "17A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17B.java
index f29287cc6..78b36ae34 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field17B extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field17B extends Field implements Serializable, GenericField {
*/
public static final String F_17B = "17B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17C.java
index ba3f829b1..92a3066e2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17C extends Field implements Serializable {
*/
public static final String F_17C = "17C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17E.java
index 1a6cd5a08..9c7124cc6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17E extends Field implements Serializable {
*/
public static final String F_17E = "17E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17F.java
index 693d819df..490ce7600 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17F extends Field implements Serializable {
*/
public static final String F_17F = "17F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17G.java
index a05ac9571..9748c1bd5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17G extends Field implements Serializable {
*/
public static final String F_17G = "17G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17H.java
index 387136083..ea4b32fd9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17H extends Field implements Serializable {
*/
public static final String F_17H = "17H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17I.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17I.java
index e8dc28d32..1c13f45ec 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17I.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17I.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17I extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17I extends Field implements Serializable {
*/
public static final String F_17I = "17I";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17L.java
index ae3193637..0629ede84 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17L extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17L extends Field implements Serializable {
*/
public static final String F_17L = "17L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17M.java
index 804b2af71..986bb5f74 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17M extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17M extends Field implements Serializable {
*/
public static final String F_17M = "17M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17N.java
index 4fd87a4d1..5099fa5be 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17N extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17N extends Field implements Serializable {
*/
public static final String F_17N = "17N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17O.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17O.java
index 72dff044a..8772f78a9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17O.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17O.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17O extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17O extends Field implements Serializable {
*/
public static final String F_17O = "17O";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17P.java
index 1b7a75916..39c864c5c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17P extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17P extends Field implements Serializable {
*/
public static final String F_17P = "17P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Q.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Q.java
index 5b3fa131a..e6ba54c18 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Q.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Q.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17Q extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17Q extends Field implements Serializable {
*/
public static final String F_17Q = "17Q";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17R.java
index 16c2b0868..31ec32303 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17R extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17R extends Field implements Serializable {
*/
public static final String F_17R = "17R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17S.java
index 8e18dec1b..dc1debbf0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17S extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17S extends Field implements Serializable {
*/
public static final String F_17S = "17S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17T.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17T.java
index b6b8f7a5b..3761d33c8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17T.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17T.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17T extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17T extends Field implements Serializable {
*/
public static final String F_17T = "17T";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17U.java
index ab3eb5afa..2c5f28a26 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17U extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17U extends Field implements Serializable {
*/
public static final String F_17U = "17U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17V.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17V.java
index 5068b05e6..3417a30ad 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17V.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17V.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17V extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17V extends Field implements Serializable {
*/
public static final String F_17V = "17V";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17W.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17W.java
index 59010fc4a..077002978 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17W.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17W.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17W extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17W extends Field implements Serializable {
*/
public static final String F_17W = "17W";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17X.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17X.java
index bad1f3677..0237e1792 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17X.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17X.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17X extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17X extends Field implements Serializable {
*/
public static final String F_17X = "17X";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Y.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Y.java
index 26f6df6d1..180c93e0f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Y.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Y.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17Y extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17Y extends Field implements Serializable {
*/
public static final String F_17Y = "17Y";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Z.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Z.java
index c366773e3..4610d37b2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field17Z.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field17Z.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field17Z extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field17Z extends Field implements Serializable {
*/
public static final String F_17Z = "17Z";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Indicator subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field18A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field18A.java
index 1f15059fe..9547639f2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field18A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field18A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field18A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field18A extends Field implements Serializable {
*/
public static final String F_18A = "18A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field18B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field18B.java
index 9df5cbc42..3f6451bee 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field18B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field18B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field18B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field18B extends Field implements Serializable {
*/
public static final String F_18B = "18B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field18C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field18C.java
index 46a64d705..8708de596 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field18C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field18C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field18C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field18C extends Field implements Serializable {
*/
public static final String F_18C = "18C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field18D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field18D.java
index ff13c0650..a1e9a37a4 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field18D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field18D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field18D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field18D extends Field implements Serializable {
*/
public static final String F_18D = "18D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19.java
index c61bfc3a2..875711d56 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field19 extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field19 extends Field implements Serializable, AmountContainer {
*/
public static final String F_19 = "19";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "I";
-
/**
* Component number for the Amount subfield.
*/
@@ -218,16 +197,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -349,15 +318,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Amount (component 1).
* @return the Amount from component 1
@@ -375,15 +335,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field199.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field199.java
index e3be49b2c..b7712de5a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field199.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field199.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field199 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field199 extends Field implements Serializable {
*/
public static final String F_199 = "199";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Default constructor. Creates a new field setting all components to null.
*/
@@ -203,16 +182,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19A.java
index 0536f1ad7..7e7084a61 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field19A extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,27 +83,6 @@ public class Field19A extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_19A = "19A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//[c]SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSCN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSCI";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -119,12 +98,6 @@ public class Field19A extends Field implements Serializable, MonetaryAmountConta
*/
public static final Integer CURRENCY_CODE = 3;
- /**
- * @deprecated use #CURRENCY_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 3;
/**
* Component number for the Amount subfield.
@@ -275,16 +248,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSCN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -459,16 +422,6 @@ public String getCurrencyCode() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Currency Code
- * @deprecated use #getCurrencyCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getCurrencyCode();
- }
/**
* Get the Currency Code (component 3) as Currency
@@ -478,15 +431,6 @@ public java.util.Currency getCurrencyCodeAsCurrency() {
return getComponent3AsCurrency();
}
- /**
- * @deprecated use #getCurrencyCodeAsCurrency() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Currency getCurrencyAsCurrency() {
- return getCurrencyCodeAsCurrency();
- }
-
/**
* Gets the component 4 (Amount).
* @return the component 4
@@ -505,15 +449,6 @@ public java.math.BigDecimal getComponent4AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- return getComponent4AsBigDecimal();
- }
-
/**
* Gets the Amount (component 4).
* @return the Amount from component 4
@@ -531,15 +466,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent4AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
@@ -626,24 +552,6 @@ public Field19A setCurrencyCode(java.util.Currency component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setCurrencyCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19A setCurrency(String component3) {
- return setCurrencyCode(component3);
- }
-
- /**
- * @deprecated use #setComponent3(java.util.Currency) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19A setCurrency(java.util.Currency component3) {
- return setCurrencyCode(component3);
- }
-
/**
* Set the component 4 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19B.java
index f17a1e952..13ee5e921 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -62,7 +62,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -70,7 +70,7 @@ public class Field19B extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -82,27 +82,6 @@ public class Field19B extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_19B = "19B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SCN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SCI";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -113,12 +92,6 @@ public class Field19B extends Field implements Serializable, MonetaryAmountConta
*/
public static final Integer CURRENCY_CODE = 2;
- /**
- * @deprecated use #CURRENCY_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 2;
/**
* Component number for the Amount subfield.
@@ -255,16 +228,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SCN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -417,16 +380,6 @@ public String getCurrencyCode() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Currency Code
- * @deprecated use #getCurrencyCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getCurrencyCode();
- }
/**
* Get the Currency Code (component 2) as Currency
@@ -436,15 +389,6 @@ public java.util.Currency getCurrencyCodeAsCurrency() {
return getComponent2AsCurrency();
}
- /**
- * @deprecated use #getCurrencyCodeAsCurrency() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Currency getCurrencyAsCurrency() {
- return getCurrencyCodeAsCurrency();
- }
-
/**
* Gets the component 3 (Amount).
* @return the component 3
@@ -463,15 +407,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -489,15 +424,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
@@ -563,24 +489,6 @@ public Field19B setCurrencyCode(java.util.Currency component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setCurrencyCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19B setCurrency(String component2) {
- return setCurrencyCode(component2);
- }
-
- /**
- * @deprecated use #setComponent2(java.util.Currency) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19B setCurrency(java.util.Currency component2) {
- return setCurrencyCode(component2);
- }
-
/**
* Set the component 3 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19C.java
index 642cc4585..e488a78c9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field19C extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field19C extends Field implements Serializable, AmountContainer {
*/
public static final String F_19C = "19C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[S]N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Sign subfield.
*/
@@ -110,12 +89,6 @@ public class Field19C extends Field implements Serializable, AmountContainer {
*/
public static final Integer ADJUSTMENT_FACTOR = 2;
- /**
- * @deprecated use #ADJUSTMENT_FACTOR instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -237,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -392,15 +355,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Adjustment Factor (component 2).
* @return the Adjustment Factor from component 2
@@ -409,16 +363,6 @@ public String getAdjustmentFactor() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Adjustment Factor
- * @deprecated use #getAdjustmentFactor() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getAdjustmentFactor();
- }
/**
* Get the Adjustment Factor (component 2) as BigDecimal
@@ -429,33 +373,6 @@ public java.math.BigDecimal getAdjustmentFactorAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAdjustmentFactorAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAdjustmentFactorAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getAdjustmentFactorAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getAdjustmentFactorAsBigDecimal();
- }
-
- /**
- * @deprecated use #getAdjustmentFactorAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getAdjustmentFactorAsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
@@ -538,24 +455,6 @@ public Field19C setAdjustmentFactor(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setAdjustmentFactor(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19C setAmount(String component2) {
- return setAdjustmentFactor(component2);
- }
-
- /**
- * @deprecated use #setAdjustmentFactor(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19C setAmount(java.lang.Number component2) {
- return setAdjustmentFactor(component2);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19Y.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19Y.java
index c19f5af43..40e41cfda 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19Y.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19Y.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field19Y extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,38 +78,11 @@ public class Field19Y extends Field implements Serializable, AmountContainer {
*/
public static final String F_19Y = "19Y";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "I";
-
/**
* Component number for the Weight subfield.
*/
public static final Integer WEIGHT = 1;
- /**
- * @deprecated use #WEIGHT instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -225,16 +198,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -358,15 +321,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Weight (component 1).
* @return the Weight from component 1
@@ -375,16 +329,6 @@ public String getWeight() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Weight
- * @deprecated use #getWeight() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getWeight();
- }
/**
* Get the Weight (component 1) as BigDecimal
@@ -395,33 +339,6 @@ public java.math.BigDecimal getWeightAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getWeightAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getWeightAsBigDecimal();
- }
-
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getWeightAsNumber();
- }
-
/**
* Set the component 1 (Weight).
*
@@ -483,24 +400,6 @@ public Field19Y setWeight(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setWeight(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19Y setAmount(String component1) {
- return setWeight(component1);
- }
-
- /**
- * @deprecated use #setWeight(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19Y setAmount(java.lang.Number component1) {
- return setWeight(component1);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field19Z.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field19Z.java
index 40a548697..fb6f8d66b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field19Z.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field19Z.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field19Z extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,38 +78,11 @@ public class Field19Z extends Field implements Serializable, AmountContainer {
*/
public static final String F_19Z = "19Z";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "I";
-
/**
* Component number for the Weight subfield.
*/
public static final Integer WEIGHT = 1;
- /**
- * @deprecated use #WEIGHT instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -225,16 +198,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -358,15 +321,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Weight (component 1).
* @return the Weight from component 1
@@ -375,16 +329,6 @@ public String getWeight() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Weight
- * @deprecated use #getWeight() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getWeight();
- }
/**
* Get the Weight (component 1) as BigDecimal
@@ -395,33 +339,6 @@ public java.math.BigDecimal getWeightAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getWeightAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getWeightAsBigDecimal();
- }
-
- /**
- * @deprecated use #getWeightAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getWeightAsNumber();
- }
-
/**
* Set the component 1 (Weight).
*
@@ -483,24 +400,6 @@ public Field19Z setWeight(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setWeight(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19Z setAmount(String component1) {
- return setWeight(component1);
- }
-
- /**
- * @deprecated use #setWeight(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field19Z setAmount(java.lang.Number component1) {
- return setWeight(component1);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field20.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field20.java
index 71c8cd3fc..b6fbc9dcf 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field20.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field20.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field20 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field20 extends Field implements Serializable {
*/
public static final String F_20 = "20";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field202.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field202.java
index 0fb54b854..88123d5e2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field202.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field202.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field202 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field202 extends Field implements Serializable {
*/
public static final String F_202 = "202";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Section Number subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Section Number (component 1).
* @return the Section Number from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getSectionNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSectionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSectionNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Section Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field203.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field203.java
index 0aee5326b..d1c75e82e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field203.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field203.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field203 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field203 extends Field implements Serializable {
*/
public static final String F_203 = "203";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Total Sections subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total Sections (component 1).
* @return the Total Sections from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getTotalSectionsAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getTotalSectionsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalSectionsAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Total Sections).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field204.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field204.java
index 319dbaf35..d15742a62 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field204.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field204.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field204 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field204 extends Field implements Serializable {
*/
public static final String F_204 = "204";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Logical Terminal Select State subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field206.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field206.java
index b95f75981..79dda567c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field206.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field206.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field206 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field206 extends Field implements Serializable {
*/
public static final String F_206 = "206";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the Value Date Ordering subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field208.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field208.java
index 291d43919..3c55959ec 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field208.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field208.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field208 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field208 extends Field implements Serializable {
*/
public static final String F_208 = "208";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the LT Directed Queue subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field209.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field209.java
index c7393cbc0..cd473a5c4 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field209.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field209.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field209 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field209 extends Field implements Serializable {
*/
public static final String F_209 = "209";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Type subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Type (component 1).
* @return the Type from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getTypeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getTypeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTypeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Type).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field20C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field20C.java
index d9e04bccb..6e36f6c32 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field20C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field20C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field20C extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field20C extends Field implements Serializable, GenericField {
*/
public static final String F_20C = "20C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field20D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field20D.java
index dcf646dde..54dfbd8c6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field20D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field20D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field20D extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field20D extends Field implements Serializable, GenericField {
*/
public static final String F_20D = "20D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field20U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field20U.java
index 75b4c1ce5..64c0fb301 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field20U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field20U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field20U extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field20U extends Field implements Serializable, GenericField {
*/
public static final String F_20U = "20U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21.java
index 25982d09c..87a6aa48d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21 extends Field implements Serializable {
*/
public static final String F_21 = "21";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21A.java
index 2013a775b..00a6d27e6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21A extends Field implements Serializable {
*/
public static final String F_21A = "21A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21B.java
index 373a9cc0d..1daa327fb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21B extends Field implements Serializable {
*/
public static final String F_21B = "21B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getReference() {
/**
* Alternative method getter for field's Reference
- * @deprecated use #getReference() instead
* @since 9.2.7
*/
public String getContractNumber() {
@@ -364,7 +332,6 @@ public String getContractNumber() {
/**
* Alternative method getter for field's Reference
- * @deprecated use #getReference() instead
* @since 9.2.7
*/
public String getNumber() {
@@ -392,16 +359,10 @@ public Field21B setReference(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setReference(String) instead
- */
public Field21B setContractNumber(String component1) {
return setReference(component1);
}
- /**
- * @deprecated use #setReference(String) instead
- */
public Field21B setNumber(String component1) {
return setReference(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21C.java
index e958a9989..706df486a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21C extends Field implements Serializable {
*/
public static final String F_21C = "21C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21D.java
index f694b0556..c462766c6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21D extends Field implements Serializable {
*/
public static final String F_21D = "21D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21E.java
index f1a911451..727cb2ded 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21E extends Field implements Serializable {
*/
public static final String F_21E = "21E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21F.java
index 23d7e6563..b720b2cb8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21F extends Field implements Serializable {
*/
public static final String F_21F = "21F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21G.java
index 9812b1583..5ca323902 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21G extends Field implements Serializable {
*/
public static final String F_21G = "21G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21H.java
index 80e99042d..a13759d66 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field21H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,38 +75,11 @@ public class Field21H extends Field implements Serializable {
*/
public static final String F_21H = "21H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Event Type subfield.
*/
public static final Integer EVENT_TYPE = 1;
- /**
- * @deprecated use #EVENT_TYPE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer QUALIFIER = 1;
/**
* Component number for the Reference subfield.
@@ -229,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -363,16 +326,6 @@ public String getEventType() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Event Type
- * @deprecated use #getEventType() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getQualifier() {
- return getEventType();
- }
/**
* Gets the component 2 (Reference).
@@ -411,15 +364,6 @@ public Field21H setEventType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setEventType(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field21H setQualifier(String component1) {
- return setEventType(component1);
- }
-
/**
* Set the component 2 (Reference).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21N.java
index 8be6469b6..3364cfccf 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21N extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21N extends Field implements Serializable {
*/
public static final String F_21N = "21N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getReference() {
/**
* Alternative method getter for field's Reference
- * @deprecated use #getReference() instead
* @since 9.2.7
*/
public String getContractNumber() {
@@ -364,7 +332,6 @@ public String getContractNumber() {
/**
* Alternative method getter for field's Reference
- * @deprecated use #getReference() instead
* @since 9.2.7
*/
public String getNumber() {
@@ -392,16 +359,10 @@ public Field21N setReference(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setReference(String) instead
- */
public Field21N setContractNumber(String component1) {
return setReference(component1);
}
- /**
- * @deprecated use #setReference(String) instead
- */
public Field21N setNumber(String component1) {
return setReference(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21P.java
index b6bbf205b..954c362ac 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21P extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21P extends Field implements Serializable {
*/
public static final String F_21P = "21P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field21R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field21R.java
index 1912a8fa3..2d66765fe 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field21R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field21R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field21R extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field21R extends Field implements Serializable {
*/
public static final String F_21R = "21R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reference subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22.java
index 4da003193..1249d1055 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field22 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field22 extends Field implements Serializable {
*/
public static final String F_22 = "22";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Code subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22A.java
index 2bfb09d52..48ee2da78 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22A extends Field implements Serializable {
*/
public static final String F_22A = "22A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getType() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getFunction() {
@@ -364,7 +332,6 @@ public String getFunction() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getPurpose() {
@@ -392,16 +359,10 @@ public Field22A setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22A setFunction(String component1) {
return setType(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22A setPurpose(String component1) {
return setType(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22B.java
index 263f84ee3..d0ae42fc2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22B extends Field implements Serializable {
*/
public static final String F_22B = "22B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getType() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getCentre() {
@@ -364,7 +332,6 @@ public String getCentre() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getFinancialCentre() {
@@ -392,16 +359,10 @@ public Field22B setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22B setCentre(String component1) {
return setType(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22B setFinancialCentre(String component1) {
return setType(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22C.java
index 6ba019698..d0e179861 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field22C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field22C extends Field implements Serializable {
*/
public static final String F_22C = "22C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "4!S2!S4!S4!S2!S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSNSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSNSS";
-
/**
* Component number for the Party Prefix 1 subfield.
*/
@@ -267,16 +246,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(5);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSNSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -442,16 +411,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Reference Code (component 3).
* @return the Reference Code from component 3
@@ -469,15 +428,6 @@ public java.lang.Long getReferenceCodeAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getReferenceCodeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getReferenceCodeAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Party Prefix 2).
* @return the component 4
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22D.java
index 51db77ce2..15240d7d0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22D extends Field implements Serializable {
*/
public static final String F_22D = "22D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getType() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getForm() {
@@ -364,7 +332,6 @@ public String getForm() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getCode() {
@@ -392,16 +359,10 @@ public Field22D setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22D setForm(String component1) {
return setType(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22D setCode(String component1) {
return setType(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22E.java
index cfede4bee..f8772d4ee 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22E extends Field implements Serializable {
*/
public static final String F_22E = "22E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -214,16 +193,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -347,7 +316,6 @@ public String getType() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getTypeOfPayment() {
@@ -375,9 +343,6 @@ public Field22E setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22E setTypeOfPayment(String component1) {
return setType(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22F.java
index 944aa9d2a..5798f59cd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field22F extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field22F extends Field implements Serializable, GenericField {
*/
public static final String F_22F = "22F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -237,16 +216,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22G.java
index 8083646b9..f2e64d007 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22G extends Field implements Serializable {
*/
public static final String F_22G = "22G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -220,16 +199,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -355,7 +324,6 @@ public String getType() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getTypeOfBarrier() {
@@ -364,7 +332,6 @@ public String getTypeOfBarrier() {
/**
* Alternative method getter for field's Type
- * @deprecated use #getType() instead
* @since 9.2.7
*/
public String getTypeOfDemand() {
@@ -392,16 +359,10 @@ public Field22G setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22G setTypeOfBarrier(String component1) {
return setType(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
public Field22G setTypeOfDemand(String component1) {
return setType(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22H.java
index 34579204f..f9c33d170 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field22H extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field22H extends Field implements Serializable, GenericField {
*/
public static final String F_22H = "22H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -107,12 +86,6 @@ public class Field22H extends Field implements Serializable, GenericField {
*/
public static final Integer INDICATOR = 2;
- /**
- * @deprecated use #INDICATOR instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -231,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -381,16 +344,6 @@ public String getIndicator() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Indicator
- * @deprecated use #getIndicator() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getIndicator();
- }
/**
* Set the component 1 (Qualifier).
@@ -434,15 +387,6 @@ public Field22H setIndicator(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setIndicator(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22H setCode(String component2) {
- return setIndicator(component2);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22K.java
index b7e041493..b5c434862 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field22K extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field22K extends Field implements Serializable {
*/
public static final String F_22K = "22K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Type Of Event subfield.
*/
@@ -229,16 +208,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -368,7 +337,6 @@ public String getTypeOfEvent() {
/**
* Alternative method getter for field's Type Of Event
- * @deprecated use #getTypeOfEvent() instead
* @since 9.2.7
*/
public String getCode() {
@@ -412,9 +380,6 @@ public Field22K setTypeOfEvent(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setTypeOfEvent(String) instead
- */
public Field22K setCode(String component1) {
return setTypeOfEvent(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22L.java
index 569bbe070..57d74e945 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22L extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,38 +74,11 @@ public class Field22L extends Field implements Serializable {
*/
public static final String F_22L = "22L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reporting Jurisdiction subfield.
*/
public static final Integer REPORTING_JURISDICTION = 1;
- /**
- * @deprecated use #REPORTING_JURISDICTION instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -215,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -346,16 +309,6 @@ public String getReportingJurisdiction() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Reporting Jurisdiction
- * @deprecated use #getReportingJurisdiction() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getType() {
- return getReportingJurisdiction();
- }
/**
* Set the component 1 (Reporting Jurisdiction).
@@ -378,15 +331,6 @@ public Field22L setReportingJurisdiction(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setReportingJurisdiction(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22L setType(String component1) {
- return setReportingJurisdiction(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22M.java
index 4c30e7cd9..6619354fd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22M extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22M extends Field implements Serializable {
*/
public static final String F_22M = "22M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Namespace subfield.
*/
@@ -112,12 +91,6 @@ public class Field22M extends Field implements Serializable {
*/
public static final Integer ISSUER_CODE = 1;
- /**
- * @deprecated use #NAMESPACE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -227,16 +200,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -364,7 +327,6 @@ public String getNamespace() {
/**
* Alternative method getter for field's Namespace
- * @deprecated use #getNamespace() instead
* @since 9.2.7
*/
public String getUTINamespace() {
@@ -373,23 +335,12 @@ public String getUTINamespace() {
/**
* Alternative method getter for field's Namespace
- * @deprecated use #getNamespace() instead
* @since 9.2.7
*/
public String getIssuerCode() {
return getNamespace();
}
- /**
- * Alternative DEPRECATED method getter for field's Namespace
- * @deprecated use #getNamespace() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getType() {
- return getNamespace();
- }
/**
* Set the component 1 (Namespace).
@@ -412,29 +363,14 @@ public Field22M setNamespace(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
public Field22M setUTINamespace(String component1) {
return setNamespace(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
public Field22M setIssuerCode(String component1) {
return setNamespace(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22M setType(String component1) {
- return setNamespace(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22N.java
index 1881f9f31..573a56726 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22N extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22N extends Field implements Serializable {
*/
public static final String F_22N = "22N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Transaction Identifier subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22P.java
index 89fea3620..01a3edcbb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22P extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22P extends Field implements Serializable {
*/
public static final String F_22P = "22P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Namespace subfield.
*/
@@ -112,12 +91,6 @@ public class Field22P extends Field implements Serializable {
*/
public static final Integer ISSUER_CODE = 1;
- /**
- * @deprecated use #NAMESPACE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -227,16 +200,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -364,7 +327,6 @@ public String getNamespace() {
/**
* Alternative method getter for field's Namespace
- * @deprecated use #getNamespace() instead
* @since 9.2.7
*/
public String getPUTINamespace() {
@@ -373,23 +335,12 @@ public String getPUTINamespace() {
/**
* Alternative method getter for field's Namespace
- * @deprecated use #getNamespace() instead
* @since 9.2.7
*/
public String getIssuerCode() {
return getNamespace();
}
- /**
- * Alternative DEPRECATED method getter for field's Namespace
- * @deprecated use #getNamespace() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getType() {
- return getNamespace();
- }
/**
* Set the component 1 (Namespace).
@@ -412,29 +363,14 @@ public Field22P setNamespace(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
public Field22P setPUTINamespace(String component1) {
return setNamespace(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
public Field22P setIssuerCode(String component1) {
return setNamespace(component1);
}
- /**
- * @deprecated use #setNamespace(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22P setType(String component1) {
- return setNamespace(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Q.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Q.java
index 793181af2..271fef9ef 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Q.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Q.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22Q extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,38 +74,11 @@ public class Field22Q extends Field implements Serializable {
*/
public static final String F_22Q = "22Q";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Portfolio subfield.
*/
public static final Integer PORTFOLIO = 1;
- /**
- * @deprecated use #PORTFOLIO instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -215,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -346,16 +309,6 @@ public String getPortfolio() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Portfolio
- * @deprecated use #getPortfolio() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getType() {
- return getPortfolio();
- }
/**
* Set the component 1 (Portfolio).
@@ -378,15 +331,6 @@ public Field22Q setPortfolio(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setPortfolio(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22Q setType(String component1) {
- return setPortfolio(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22R.java
index 8cb996075..b688c49fa 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22R extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22R extends Field implements Serializable {
*/
public static final String F_22R = "22R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Prior Transaction Identifier subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22S.java
index e826dcf4c..04a8068e2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field22S extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field22S extends Field implements Serializable {
*/
public static final String F_22S = "22S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Side Indicator subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22T.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22T.java
index ef42fd790..7e98131b0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22T.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22T.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22T extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22T extends Field implements Serializable {
*/
public static final String F_22T = "22T";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Identification subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22U.java
index 294c2fe0d..e47d5c13e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,13 +48,13 @@
*
* Structure definition
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22U extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22U extends Field implements Serializable {
*/
public static final String F_22U = "22U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Product Identifier subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -243,7 +212,7 @@ public String parserPattern() {
*/
@Override
public String validatorPattern() {
- return "6a";
+ return "12a";
}
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22V.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22V.java
index 0fabded26..da32eb0a2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22V.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22V.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22V extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22V extends Field implements Serializable {
*/
public static final String F_22V = "22V";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Execution Venue subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22W.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22W.java
index 047ec0e96..1727c41d6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22W.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22W.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22W extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22W extends Field implements Serializable {
*/
public static final String F_22W = "22W";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Identification subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22X.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22X.java
index a05c61596..a5f7781ca 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22X.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22X.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22X extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22X extends Field implements Serializable {
*/
public static final String F_22X = "22X";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Y.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Y.java
index cbfb03c09..95b1275e5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Y.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Y.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22Y extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22Y extends Field implements Serializable {
*/
public static final String F_22Y = "22Y";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Required subfield.
*/
@@ -106,12 +85,6 @@ public class Field22Y extends Field implements Serializable {
*/
public static final Integer PERIOD = 1;
- /**
- * @deprecated use #REQUIRED instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer TYPE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -221,16 +194,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -356,23 +319,12 @@ public String getRequired() {
/**
* Alternative method getter for field's Required
- * @deprecated use #getRequired() instead
* @since 9.2.7
*/
public String getPeriod() {
return getRequired();
}
- /**
- * Alternative DEPRECATED method getter for field's Required
- * @deprecated use #getRequired() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getType() {
- return getRequired();
- }
/**
* Set the component 1 (Required).
@@ -395,22 +347,10 @@ public Field22Y setRequired(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setRequired(String) instead
- */
public Field22Y setPeriod(String component1) {
return setRequired(component1);
}
- /**
- * @deprecated use #setRequired(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field22Y setType(String component1) {
- return setRequired(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Z.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Z.java
index cd1772c77..abfef55fd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field22Z.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field22Z.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,13 +48,13 @@
*
* Structure definition
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field22Z extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field22Z extends Field implements Serializable {
*/
public static final String F_22Z = "22Z";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Product Identifier subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -243,7 +212,7 @@ public String parserPattern() {
*/
@Override
public String validatorPattern() {
- return "6a";
+ return "12a";
}
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23.java
index 75d6432db..9e7cb32a1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field23 extends Field implements Serializable, CurrencyContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field23 extends Field implements Serializable, CurrencyContainer {
*/
public static final String F_23 = "23";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S/S[/S]]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSC";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSC";
-
/**
* Component number for the Code 1 subfield.
*/
@@ -288,16 +267,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(4);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSC";
- }
-
/**
* Returns the field component types pattern.
*
@@ -445,7 +414,6 @@ public String getCode1() {
/**
* Alternative method getter for field's Code 1
- * @deprecated use #getCode1() instead
* @since 9.2.7
*/
public String getBuySellIndicator() {
@@ -470,7 +438,6 @@ public String getCode2() {
/**
* Alternative method getter for field's Code 2
- * @deprecated use #getCode2() instead
* @since 9.2.7
*/
public String getCallPutIndicator() {
@@ -495,7 +462,6 @@ public String getCode3() {
/**
* Alternative method getter for field's Code 3
- * @deprecated use #getCode3() instead
* @since 9.2.7
*/
public String getStyleIndicator() {
@@ -529,7 +495,6 @@ public String getCurrency() {
/**
* Alternative method getter for field's Currency
- * @deprecated use #getCurrency() instead
* @since 9.2.7
*/
public String getManualAutomaticIndicator() {
@@ -545,7 +510,6 @@ public java.util.Currency getCurrencyAsCurrency() {
}
/**
- * @deprecated use #getCurrencyAsCurrency() instead
* @since 9.2.7
*/
public java.util.Currency getManualAutomaticIndicatorAsCurrency() {
@@ -573,9 +537,6 @@ public Field23 setCode1(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setCode1(String) instead
- */
public Field23 setBuySellIndicator(String component1) {
return setCode1(component1);
}
@@ -601,9 +562,6 @@ public Field23 setCode2(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setCode2(String) instead
- */
public Field23 setCallPutIndicator(String component2) {
return setCode2(component2);
}
@@ -629,9 +587,6 @@ public Field23 setCode3(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setCode3(String) instead
- */
public Field23 setStyleIndicator(String component3) {
return setCode3(component3);
}
@@ -680,16 +635,10 @@ public Field23 setCurrency(java.util.Currency component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setCurrency(String) instead
- */
public Field23 setManualAutomaticIndicator(String component4) {
return setCurrency(component4);
}
- /**
- * @deprecated use #setComponent4(java.util.Currency) instead
- */
public Field23 setManualAutomaticIndicator(java.util.Currency component4) {
return setCurrency(component4);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23A.java
index de2397866..e55d888cd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field23A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,50 +75,17 @@ public class Field23A extends Field implements Serializable {
*/
public static final String F_23A = "23A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Type Of Swap subfield.
*/
public static final Integer TYPE_OF_SWAP = 1;
- /**
- * @deprecated use #TYPE_OF_SWAP instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 1;
/**
* Component number for the Settlement Method subfield.
*/
public static final Integer SETTLEMENT_METHOD = 2;
- /**
- * @deprecated use #SETTLEMENT_METHOD instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer ADDITIONAL_INFORMATION = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -236,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -372,16 +329,6 @@ public String getTypeOfSwap() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Type Of Swap
- * @deprecated use #getTypeOfSwap() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getTypeOfSwap();
- }
/**
* Gets the component 2 (Settlement Method).
@@ -399,16 +346,6 @@ public String getSettlementMethod() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Settlement Method
- * @deprecated use #getSettlementMethod() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAdditionalInformation() {
- return getSettlementMethod();
- }
/**
* Set the component 1 (Type Of Swap).
@@ -431,15 +368,6 @@ public Field23A setTypeOfSwap(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setTypeOfSwap(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field23A setCode(String component1) {
- return setTypeOfSwap(component1);
- }
-
/**
* Set the component 2 (Settlement Method).
*
@@ -461,15 +389,6 @@ public Field23A setSettlementMethod(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setSettlementMethod(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field23A setAdditionalInformation(String component2) {
- return setSettlementMethod(component2);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23B.java
index fe4c3d8b9..be3394c1a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field23B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field23B extends Field implements Serializable {
*/
public static final String F_23B = "23B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23C.java
index 387ec1cc3..0334a38c0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field23C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,38 +74,11 @@ public class Field23C extends Field implements Serializable {
*/
public static final String F_23C = "23C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Settlement Calculation subfield.
*/
public static final Integer SETTLEMENT_CALCULATION = 1;
- /**
- * @deprecated use #SETTLEMENT_CALCULATION instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -215,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -346,16 +309,6 @@ public String getSettlementCalculation() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Settlement Calculation
- * @deprecated use #getSettlementCalculation() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getSettlementCalculation();
- }
/**
* Set the component 1 (Settlement Calculation).
@@ -378,15 +331,6 @@ public Field23C setSettlementCalculation(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setSettlementCalculation(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field23C setCode(String component1) {
- return setSettlementCalculation(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23D.java
index 27b668100..d05be97e9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field23D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field23D extends Field implements Serializable {
*/
public static final String F_23D = "23D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23E.java
index a47c0b070..feb5d3013 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field23E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field23E extends Field implements Serializable {
*/
public static final String F_23E = "23E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Instruction Code subfield.
*/
@@ -107,12 +86,6 @@ public class Field23E extends Field implements Serializable {
*/
public static final Integer TYPE = 1;
- /**
- * @deprecated use #INSTRUCTION_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 1;
/**
* Component number for the Additional Information subfield.
@@ -242,16 +215,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -385,23 +348,12 @@ public String getInstructionCode() {
/**
* Alternative method getter for field's Instruction Code
- * @deprecated use #getInstructionCode() instead
* @since 9.2.7
*/
public String getType() {
return getInstructionCode();
}
- /**
- * Alternative DEPRECATED method getter for field's Instruction Code
- * @deprecated use #getInstructionCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getInstructionCode();
- }
/**
* Gets the component 2 (Additional Information).
@@ -421,7 +373,6 @@ public String getAdditionalInformation() {
/**
* Alternative method getter for field's Additional Information
- * @deprecated use #getAdditionalInformation() instead
* @since 9.2.7
*/
public String getNarrative() {
@@ -449,22 +400,10 @@ public Field23E setInstructionCode(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setInstructionCode(String) instead
- */
public Field23E setType(String component1) {
return setInstructionCode(component1);
}
- /**
- * @deprecated use #setInstructionCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field23E setCode(String component1) {
- return setInstructionCode(component1);
- }
-
/**
* Set the component 2 (Additional Information).
*
@@ -486,9 +425,6 @@ public Field23E setAdditionalInformation(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setAdditionalInformation(String) instead
- */
public Field23E setNarrative(String component2) {
return setAdditionalInformation(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23F.java
index 86205423f..b80b1d409 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field23F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field23F extends Field implements Serializable {
*/
public static final String F_23F = "23F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Period subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23G.java
index f7e109645..1c5d973bd 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field23G extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field23G extends Field implements Serializable {
*/
public static final String F_23G = "23G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Function subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23H.java
index e797832f6..8b1e6f50f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field23H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field23H extends Field implements Serializable {
*/
public static final String F_23H = "23H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Function subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23R.java
index 6819ef5f8..caac88ccb 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field23R extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field23R extends Field implements Serializable, MultiLineField {
*/
public static final String F_23R = "23R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-6";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSS";
-
/**
* Component number for the Code subfield.
*/
@@ -246,16 +225,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(7);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23S.java
index 935153ba9..45d9b2640 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field23S extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field23S extends Field implements Serializable {
*/
public static final String F_23S = "23S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Request subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field23X.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field23X.java
index ded878ffc..d93ad7151 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field23X.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field23X.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field23X extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field23X extends Field implements Serializable {
*/
public static final String F_23X = "23X";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Code subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field242.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field242.java
index 0af3c9539..6956ca163 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field242.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field242.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field242 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field242 extends Field implements Serializable {
*/
public static final String F_242 = "242";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Status Code subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field243.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field243.java
index ab98e40e8..781df9453 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field243.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field243.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field243 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field243 extends Field implements Serializable {
*/
public static final String F_243 = "243";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Type subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Type (component 1).
* @return the Type from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getTypeAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getTypeAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTypeAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Type).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field24B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field24B.java
index 41823ac21..309a4f903 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field24B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field24B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field24B extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field24B extends Field implements Serializable, GenericField {
*/
public static final String F_24B = "24B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -237,16 +216,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field24D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field24D.java
index 0c0b2b7a6..1c7b2e98c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field24D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field24D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field24D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field24D extends Field implements Serializable {
*/
public static final String F_24D = "24D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Code subfield.
*/
@@ -229,16 +208,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -368,7 +337,6 @@ public String getCode() {
/**
* Alternative method getter for field's Code
- * @deprecated use #getCode() instead
* @since 9.2.7
*/
public String getMethod() {
@@ -412,9 +380,6 @@ public Field24D setCode(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setCode(String) instead
- */
public Field24D setMethod(String component1) {
return setCode(component1);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field24E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field24E.java
index 991956c7b..87689a8e1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field24E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field24E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field24E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field24E extends Field implements Serializable {
*/
public static final String F_24E = "24E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Code subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field24G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field24G.java
index ff923a792..6bb0eb43a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field24G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field24G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -75,7 +75,7 @@ public class Field24G extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -87,27 +87,6 @@ public class Field24G extends Field implements Serializable, MultiLineField {
*/
public static final String F_24G = "24G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-12";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSSSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSSSSSSSS";
-
/**
* Component number for the Code subfield.
*/
@@ -118,12 +97,6 @@ public class Field24G extends Field implements Serializable, MultiLineField {
*/
public static final Integer NARRATIVE = 2;
- /**
- * @deprecated use #NARRATIVE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer NAME_AND_ADDRESS = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -283,16 +256,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(13);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSSSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -524,16 +487,6 @@ public String getNarrativeLine1() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative
- * @deprecated use #getNarrativeLine1() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine1() {
- return getNarrativeLine1();
- }
/**
* Gets the Narrative as a concatenation of component 2 to component 13.
@@ -563,24 +516,6 @@ public String getNarrative(CharSequence deli) {
return result.toString();
}
- /**
- * @deprecated use #getNarrative() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddress() {
- return getNarrative();
- }
-
- /**
- * @deprecated use #getNarrative() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddress(CharSequence deli) {
- return getNarrative(deli);
- }
-
/**
* Gets the component 3 (Narrative 2).
* @return the component 3
@@ -597,16 +532,6 @@ public String getNarrativeLine2() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 2
- * @deprecated use #getNarrativeLine2() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine2() {
- return getNarrativeLine2();
- }
/**
* Gets the component 4 (Narrative 3).
@@ -624,16 +549,6 @@ public String getNarrativeLine3() {
return getComponent4();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 3
- * @deprecated use #getNarrativeLine3() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine3() {
- return getNarrativeLine3();
- }
/**
* Gets the component 5 (Narrative 4).
@@ -651,16 +566,6 @@ public String getNarrativeLine4() {
return getComponent5();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 4
- * @deprecated use #getNarrativeLine4() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine4() {
- return getNarrativeLine4();
- }
/**
* Gets the component 6 (Narrative 5).
@@ -678,16 +583,6 @@ public String getNarrativeLine5() {
return getComponent6();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 5
- * @deprecated use #getNarrativeLine5() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine5() {
- return getNarrativeLine5();
- }
/**
* Gets the component 7 (Narrative 6).
@@ -705,16 +600,6 @@ public String getNarrativeLine6() {
return getComponent7();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 6
- * @deprecated use #getNarrativeLine6() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine6() {
- return getNarrativeLine6();
- }
/**
* Gets the component 8 (Narrative 7).
@@ -732,16 +617,6 @@ public String getNarrativeLine7() {
return getComponent8();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 7
- * @deprecated use #getNarrativeLine7() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine7() {
- return getNarrativeLine7();
- }
/**
* Gets the component 9 (Narrative 8).
@@ -759,16 +634,6 @@ public String getNarrativeLine8() {
return getComponent9();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 8
- * @deprecated use #getNarrativeLine8() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine8() {
- return getNarrativeLine8();
- }
/**
* Gets the component 10 (Narrative 9).
@@ -786,16 +651,6 @@ public String getNarrativeLine9() {
return getComponent10();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 9
- * @deprecated use #getNarrativeLine9() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine9() {
- return getNarrativeLine9();
- }
/**
* Gets the component 11 (Narrative 10).
@@ -813,16 +668,6 @@ public String getNarrativeLine10() {
return getComponent11();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 10
- * @deprecated use #getNarrativeLine10() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine10() {
- return getNarrativeLine10();
- }
/**
* Gets the component 12 (Narrative 11).
@@ -840,16 +685,6 @@ public String getNarrativeLine11() {
return getComponent12();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 11
- * @deprecated use #getNarrativeLine11() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine11() {
- return getNarrativeLine11();
- }
/**
* Gets the component 13 (Narrative 12).
@@ -867,16 +702,6 @@ public String getNarrativeLine12() {
return getComponent13();
}
- /**
- * Alternative DEPRECATED method getter for field's Narrative 12
- * @deprecated use #getNarrativeLine12() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNameandAddressLine12() {
- return getNarrativeLine12();
- }
/**
* Set the component 1 (Code).
@@ -920,15 +745,6 @@ public Field24G setNarrativeLine1(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setNarrativeLine1(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine1(String component2) {
- return setNarrativeLine1(component2);
- }
-
/**
* Set the Narrative splitting the parameter lines into components 2 to 13.
*
@@ -941,15 +757,6 @@ public Field24G setNarrative(String value) {
return this;
}
- /**
- * @deprecated use #setNarrative(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddress(String value) {
- return setNarrative(value);
- }
-
/**
* Set the component 3 (Narrative 2).
*
@@ -971,15 +778,6 @@ public Field24G setNarrativeLine2(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setNarrativeLine2(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine2(String component3) {
- return setNarrativeLine2(component3);
- }
-
/**
* Set the component 4 (Narrative 3).
*
@@ -1001,15 +799,6 @@ public Field24G setNarrativeLine3(String component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setNarrativeLine3(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine3(String component4) {
- return setNarrativeLine3(component4);
- }
-
/**
* Set the component 5 (Narrative 4).
*
@@ -1031,15 +820,6 @@ public Field24G setNarrativeLine4(String component5) {
return setComponent5(component5);
}
- /**
- * @deprecated use #setNarrativeLine4(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine4(String component5) {
- return setNarrativeLine4(component5);
- }
-
/**
* Set the component 6 (Narrative 5).
*
@@ -1061,15 +841,6 @@ public Field24G setNarrativeLine5(String component6) {
return setComponent6(component6);
}
- /**
- * @deprecated use #setNarrativeLine5(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine5(String component6) {
- return setNarrativeLine5(component6);
- }
-
/**
* Set the component 7 (Narrative 6).
*
@@ -1091,15 +862,6 @@ public Field24G setNarrativeLine6(String component7) {
return setComponent7(component7);
}
- /**
- * @deprecated use #setNarrativeLine6(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine6(String component7) {
- return setNarrativeLine6(component7);
- }
-
/**
* Set the component 8 (Narrative 7).
*
@@ -1121,15 +883,6 @@ public Field24G setNarrativeLine7(String component8) {
return setComponent8(component8);
}
- /**
- * @deprecated use #setNarrativeLine7(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine7(String component8) {
- return setNarrativeLine7(component8);
- }
-
/**
* Set the component 9 (Narrative 8).
*
@@ -1151,15 +904,6 @@ public Field24G setNarrativeLine8(String component9) {
return setComponent9(component9);
}
- /**
- * @deprecated use #setNarrativeLine8(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine8(String component9) {
- return setNarrativeLine8(component9);
- }
-
/**
* Set the component 10 (Narrative 9).
*
@@ -1181,15 +925,6 @@ public Field24G setNarrativeLine9(String component10) {
return setComponent10(component10);
}
- /**
- * @deprecated use #setNarrativeLine9(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine9(String component10) {
- return setNarrativeLine9(component10);
- }
-
/**
* Set the component 11 (Narrative 10).
*
@@ -1211,15 +946,6 @@ public Field24G setNarrativeLine10(String component11) {
return setComponent11(component11);
}
- /**
- * @deprecated use #setNarrativeLine10(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine10(String component11) {
- return setNarrativeLine10(component11);
- }
-
/**
* Set the component 12 (Narrative 11).
*
@@ -1241,15 +967,6 @@ public Field24G setNarrativeLine11(String component12) {
return setComponent12(component12);
}
- /**
- * @deprecated use #setNarrativeLine11(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine11(String component12) {
- return setNarrativeLine11(component12);
- }
-
/**
* Set the component 13 (Narrative 12).
*
@@ -1271,15 +988,6 @@ public Field24G setNarrativeLine12(String component13) {
return setComponent13(component13);
}
- /**
- * @deprecated use #setNarrativeLine12(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field24G setNameandAddressLine12(String component13) {
- return setNarrativeLine12(component13);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field25.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field25.java
index 231a3c9c1..6617ab8bf 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field25.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field25.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field25 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field25 extends Field implements Serializable {
*/
public static final String F_25 = "25";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Account subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field251.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field251.java
index 06d2c088f..99a2cd1e9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field251.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field251.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field251 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field251 extends Field implements Serializable {
*/
public static final String F_251 = "251";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "R";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "R";
-
/**
* Component number for the MIR subfield.
*/
@@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "R";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field252.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field252.java
index 3dbc5c2ef..d7f7defb9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field252.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field252.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field252 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field252 extends Field implements Serializable {
*/
public static final String F_252 = "252";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field253.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field253.java
index 784f7c5d0..adb7cc704 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field253.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field253.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field253 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field253 extends Field implements Serializable {
*/
public static final String F_253 = "253";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "V";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "V";
-
/**
* Component number for the MOR subfield.
*/
@@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "V";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field254.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field254.java
index a106db500..1a0948145 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field254.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field254.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field254 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field254 extends Field implements Serializable {
*/
public static final String F_254 = "254";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field255.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field255.java
index 09867c0b4..967c01912 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field255.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field255.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field255 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field255 extends Field implements Serializable, DateContainer {
*/
public static final String F_255 = "255";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -481,16 +450,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 2).
* @return the Session Number from component 2
@@ -508,15 +467,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Message Type).
* @return the component 3
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field256.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field256.java
index c971dd64f..2ed25e475 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field256.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field256.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field256 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field256 extends Field implements Serializable, DateContainer {
*/
public static final String F_256 = "256";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -481,16 +450,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 2).
* @return the Session Number from component 2
@@ -508,15 +467,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Message Category).
* @return the component 3
@@ -535,16 +485,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Message Category (component 3).
* @return the Message Category from component 3
@@ -562,15 +502,6 @@ public java.lang.Long getMessageCategoryAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getMessageCategoryAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageCategoryAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Date).
* @return the component 4
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field257.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field257.java
index b2c5debb8..a6f88c6f1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field257.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field257.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field257 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field257 extends Field implements Serializable, DateContainer {
*/
public static final String F_257 = "257";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -562,16 +531,6 @@ public java.lang.Long getComponent5AsLong() {
return SwiftFormatUtils.getLong(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- Long l = getComponent5AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 5).
* @return the Session Number from component 5
@@ -589,15 +548,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent5AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (LT Address).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field258.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field258.java
index 896c90d2e..5f8c9d7d0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field258.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field258.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field258 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field258 extends Field implements Serializable, DateContainer {
*/
public static final String F_258 = "258";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -481,16 +450,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 2).
* @return the Session Number from component 2
@@ -508,15 +467,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Message Type).
* @return the component 3
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field259.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field259.java
index 094d63132..2d8442d8f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field259.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field259.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field259 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field259 extends Field implements Serializable, DateContainer {
*/
public static final String F_259 = "259";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -476,16 +445,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 2).
* @return the Session Number from component 2
@@ -503,15 +462,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Message Category).
* @return the component 3
@@ -530,16 +480,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Message Category (component 3).
* @return the Message Category from component 3
@@ -557,15 +497,6 @@ public java.lang.Long getMessageCategoryAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getMessageCategoryAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageCategoryAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Date).
* @return the component 4
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field25A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field25A.java
index 2500da0d3..90ed46554 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field25A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field25A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field25A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field25A extends Field implements Serializable {
*/
public static final String F_25A = "25A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Account subfield.
*/
@@ -209,16 +188,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field25D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field25D.java
index e2e6738c5..3d75f4067 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field25D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field25D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field25D extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field25D extends Field implements Serializable, GenericField {
*/
public static final String F_25D = "25D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S/[S]/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -113,12 +92,6 @@ public class Field25D extends Field implements Serializable, GenericField {
*/
public static final Integer STATUS_CODE = 3;
- /**
- * @deprecated use #STATUS_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 3;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -244,16 +217,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -416,16 +379,6 @@ public String getStatusCode() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Status Code
- * @deprecated use #getStatusCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getStatusCode();
- }
/**
* Set the component 1 (Qualifier).
@@ -490,15 +443,6 @@ public Field25D setStatusCode(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setStatusCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field25D setCode(String component3) {
- return setStatusCode(component3);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field25P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field25P.java
index 6a1edceec..98f2528d0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field25P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field25P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field25P extends Field implements Serializable, BICContainer, Multi
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field25P extends Field implements Serializable, BICContainer, Multi
*/
public static final String F_25P = "25P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S$S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SB";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SB";
-
/**
* Component number for the Account subfield.
*/
@@ -110,12 +89,6 @@ public class Field25P extends Field implements Serializable, BICContainer, Multi
*/
public static final Integer IDENTIFIER_CODE = 2;
- /**
- * @deprecated use #IDENTIFIER_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer BIC = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -236,16 +209,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SB";
- }
-
/**
* Returns the field component types pattern.
*
@@ -407,16 +370,6 @@ public String getIdentifierCode() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Identifier Code
- * @deprecated use #getIdentifierCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getBIC() {
- return getIdentifierCode();
- }
/**
* Get the Identifier Code (component 2) as BIC
@@ -426,15 +379,6 @@ public com.prowidesoftware.swift.model.BIC getIdentifierCodeAsBIC() {
return getComponent2AsBIC();
}
- /**
- * @deprecated use #getIdentifierCodeAsBIC() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public com.prowidesoftware.swift.model.BIC getBICAsBIC() {
- return getIdentifierCodeAsBIC();
- }
-
/**
* Set the component 1 (Account).
*
@@ -500,24 +444,6 @@ public Field25P setIdentifierCode(com.prowidesoftware.swift.model.BIC component2
return setComponent2(component2);
}
- /**
- * @deprecated use #setIdentifierCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field25P setBIC(String component2) {
- return setIdentifierCode(component2);
- }
-
- /**
- * @deprecated use #setComponent2(com.prowidesoftware.swift.model.BIC) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field25P setBIC(com.prowidesoftware.swift.model.BIC component2) {
- return setIdentifierCode(component2);
- }
-
@Override
public List
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field260 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field260 extends Field implements Serializable, DateContainer {
*/
public static final String F_260 = "260";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -562,16 +531,6 @@ public java.lang.Long getComponent5AsLong() {
return SwiftFormatUtils.getLong(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- Long l = getComponent5AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 5).
* @return the Session Number from component 5
@@ -589,15 +548,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent5AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (LT Address).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field263.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field263.java
index d2ab08e5f..d844c51a8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field263.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field263.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field263 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field263 extends Field implements Serializable, DateContainer {
*/
public static final String F_263 = "263";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -562,16 +531,6 @@ public java.lang.Long getComponent5AsLong() {
return SwiftFormatUtils.getLong(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- Long l = getComponent5AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 5).
* @return the Session Number from component 5
@@ -589,15 +548,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent5AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (LT Address).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field264.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field264.java
index 0303dbf88..3cb492316 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field264.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field264.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field264 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field264 extends Field implements Serializable, DateContainer {
*/
public static final String F_264 = "264";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -562,16 +531,6 @@ public java.lang.Long getComponent5AsLong() {
return SwiftFormatUtils.getLong(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- Long l = getComponent5AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 5).
* @return the Session Number from component 5
@@ -589,15 +548,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent5AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (LT Address).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26A.java
index 7a0c6b4a1..331d28ca2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field26A extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field26A extends Field implements Serializable {
*/
public static final String F_26A = "26A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Number1 subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -518,27 +487,4 @@ public static Field26A fromJson(final String json) {
}
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public static final Integer NUMBER = 1;
-
- /**
- * @deprecated Use getValue() instead
- */
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public String getNumber() {
- return getValue();
- }
-
- /**
- * @deprecated Use parse(String) instead
- */
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public Field26A setNumber(final String number) {
- parse(number);
- return this;
- }
-
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26B.java
index e812cbf77..61e84b7de 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field26B extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field26B extends Field implements Serializable {
*/
public static final String F_26B = "26B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Number subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26C.java
index 346ed9efb..588bd3293 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field26C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field26C extends Field implements Serializable {
*/
public static final String F_26C = "26C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[S]/S/5!a4!aS[//S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSS";
-
/**
* Component number for the Delivery Details subfield.
*/
@@ -293,16 +272,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(6);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -778,34 +747,4 @@ public static Field26C fromJson(final String json) {
}
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public static final Integer DENOMINATION_FORM = 5;
-
- /**
- * @deprecated Use getComponent5/getDenomination and/or getComponent6 instead
- */
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public String getDenominationForm() {
- // build the field
- final StringBuilder result = new StringBuilder();
- append(result, 5);
- if (getComponent6() != null) {
- result.append("//").append(getComponent6());
- }
- return StringUtils.trimToNull(result.toString());
- }
-
- /**
- * @deprecated Use setComponent5/setDenomination and/or setComponent6 instead
- */
- @Deprecated
- @com.prowidesoftware.deprecation.ProwideDeprecated(phase4=com.prowidesoftware.deprecation.TargetYear.SRU2024)
- public Field26C setDenominationForm(final String denominationForm) {
- setComponent5(SwiftParseUtils.getTokenFirst(denominationForm, "//"));
- setComponent6(SwiftParseUtils.getTokenSecond(denominationForm, "//"));
- return this;
- }
-
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26D.java
index 83c88d5a0..f9a30cbda 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -84,7 +84,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -92,7 +92,7 @@ public class Field26D extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -104,27 +104,6 @@ public class Field26D extends Field implements Serializable, MultiLineField {
*/
public static final String F_26D = "26D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-29";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS";
-
/**
* Component number for the Narrative subfield.
*/
@@ -356,16 +335,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(30);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSSSSSSSSSSSSSSSSSSSSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26E.java
index 69e5b52ba..c3f256e66 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field26E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field26E extends Field implements Serializable {
*/
public static final String F_26E = "26E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Number Of Amendment subfield.
*/
@@ -108,12 +87,6 @@ public class Field26E extends Field implements Serializable {
*/
public static final Integer AUTOMATIC_EXTENSION_NOTIFICATION_PERIOD = 1;
- /**
- * @deprecated use #NUMBER_OF_AMENDMENT instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer NUMBER = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -223,16 +196,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -358,16 +321,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number Of Amendment (component 1).
* @return the Number Of Amendment from component 1
@@ -378,23 +331,12 @@ public String getNumberOfAmendment() {
/**
* Alternative method getter for field's Number Of Amendment
- * @deprecated use #getNumberOfAmendment() instead
* @since 9.2.7
*/
public String getAutomaticExtensionNotificationPeriod() {
return getNumberOfAmendment();
}
- /**
- * Alternative DEPRECATED method getter for field's Number Of Amendment
- * @deprecated use #getNumberOfAmendment() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNumber() {
- return getNumberOfAmendment();
- }
/**
* Get the Number Of Amendment (component 1) as Long
@@ -406,49 +348,12 @@ public java.lang.Long getNumberOfAmendmentAsLong() {
}
/**
- * @deprecated use #getNumberOfAmendmentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberOfAmendmentAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getNumberOfAmendmentAsLong() instead
* @since 9.2.7
*/
public java.lang.Long getAutomaticExtensionNotificationPeriodAsLong() {
return getNumberOfAmendmentAsLong();
}
- /**
- * @deprecated use #getNumberOfAmendmentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAutomaticExtensionNotificationPeriodAsNumber() {
- return getNumberOfAmendmentAsNumber();
- }
-
- /**
- * @deprecated use #getNumberOfAmendmentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getNumberAsLong() {
- return getNumberOfAmendmentAsLong();
- }
-
- /**
- * @deprecated use #getNumberOfAmendmentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getNumberOfAmendmentAsNumber();
- }
-
/**
* Set the component 1 (Number Of Amendment).
*
@@ -509,38 +414,14 @@ public Field26E setNumberOfAmendment(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setNumberOfAmendment(String) instead
- */
public Field26E setAutomaticExtensionNotificationPeriod(String component1) {
return setNumberOfAmendment(component1);
}
- /**
- * @deprecated use #setNumberOfAmendment(java.lang.Long) instead
- */
public Field26E setAutomaticExtensionNotificationPeriod(java.lang.Number component1) {
return setNumberOfAmendment(component1);
}
- /**
- * @deprecated use #setNumberOfAmendment(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field26E setNumber(String component1) {
- return setNumberOfAmendment(component1);
- }
-
- /**
- * @deprecated use #setNumberOfAmendment(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field26E setNumber(java.lang.Number component1) {
- return setNumberOfAmendment(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26F.java
index c3ef3a2f4..571d6f9ff 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field26F extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field26F extends Field implements Serializable {
*/
public static final String F_26F = "26F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26H.java
index 1ca84f671..982628099 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field26H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field26H extends Field implements Serializable {
*/
public static final String F_26H = "26H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Counterparty Reference subfield.
*/
@@ -106,12 +85,6 @@ public class Field26H extends Field implements Serializable {
*/
public static final Integer COLLATERAL_TYPE = 1;
- /**
- * @deprecated use #COUNTERPARTY_REFERENCE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer REFERENCE = 1;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -221,16 +194,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
@@ -356,23 +319,12 @@ public String getCounterpartyReference() {
/**
* Alternative method getter for field's Counterparty Reference
- * @deprecated use #getCounterpartyReference() instead
* @since 9.2.7
*/
public String getCollateralType() {
return getCounterpartyReference();
}
- /**
- * Alternative DEPRECATED method getter for field's Counterparty Reference
- * @deprecated use #getCounterpartyReference() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getReference() {
- return getCounterpartyReference();
- }
/**
* Set the component 1 (Counterparty Reference).
@@ -395,22 +347,10 @@ public Field26H setCounterpartyReference(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setCounterpartyReference(String) instead
- */
public Field26H setCollateralType(String component1) {
return setCounterpartyReference(component1);
}
- /**
- * @deprecated use #setCounterpartyReference(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field26H setReference(String component1) {
- return setCounterpartyReference(component1);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26K.java
index 137b58bec..34f3f1212 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field26K extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field26K extends Field implements Serializable {
*/
public static final String F_26K = "26K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Calculation Agent subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field26T.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field26T.java
index 770cd04ad..783c8fd59 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field26T.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field26T.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field26T extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field26T extends Field implements Serializable {
*/
public static final String F_26T = "26T";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Type subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field27.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field27.java
index c8556daf0..89cfce143 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field27.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field27.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field27 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field27 extends Field implements Serializable {
*/
public static final String F_27 = "27";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Number subfield.
*/
@@ -236,16 +215,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -374,16 +343,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 1).
* @return the Number from component 1
@@ -394,7 +353,6 @@ public String getNumber() {
/**
* Alternative method getter for field's Number
- * @deprecated use #getNumber() instead
* @since 9.2.7
*/
public String getMessageNumber() {
@@ -411,31 +369,12 @@ public java.lang.Long getNumberAsLong() {
}
/**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getNumberAsLong() instead
* @since 9.2.7
*/
public java.lang.Long getMessageNumberAsLong() {
return getNumberAsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageNumberAsNumber() {
- return getNumberAsNumber();
- }
-
/**
* Gets the component 2 (Total).
* @return the component 2
@@ -454,16 +393,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total (component 2).
* @return the Total from component 2
@@ -474,7 +403,6 @@ public String getTotal() {
/**
* Alternative method getter for field's Total
- * @deprecated use #getTotal() instead
* @since 9.2.7
*/
public String getSequenceNumber() {
@@ -491,31 +419,12 @@ public java.lang.Long getTotalAsLong() {
}
/**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getTotalAsLong() instead
* @since 9.2.7
*/
public java.lang.Long getSequenceNumberAsLong() {
return getTotalAsLong();
}
- /**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getTotalAsNumber();
- }
-
/**
* Set the component 1 (Number).
*
@@ -576,16 +485,10 @@ public Field27 setNumber(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setNumber(String) instead
- */
public Field27 setMessageNumber(String component1) {
return setNumber(component1);
}
- /**
- * @deprecated use #setNumber(java.lang.Long) instead
- */
public Field27 setMessageNumber(java.lang.Number component1) {
return setNumber(component1);
}
@@ -650,16 +553,10 @@ public Field27 setTotal(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setTotal(String) instead
- */
public Field27 setSequenceNumber(String component2) {
return setTotal(component2);
}
- /**
- * @deprecated use #setTotal(java.lang.Long) instead
- */
public Field27 setSequenceNumber(java.lang.Number component2) {
return setTotal(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field270.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field270.java
index 9f9c58f43..dadfdf439 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field270.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field270.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field270 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field270 extends Field implements Serializable, DateContainer {
*/
public static final String F_270 = "270";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "10!NS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "US";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "US";
-
/**
* Component number for the Timestamp subfield.
*/
@@ -234,16 +213,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "US";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field271.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field271.java
index 209de01fb..b7a544824 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field271.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field271.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field271 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field271 extends Field implements Serializable, DateContainer {
*/
public static final String F_271 = "271";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "10!NS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "US";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "US";
-
/**
* Component number for the Timestamp subfield.
*/
@@ -234,16 +213,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "US";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field272.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field272.java
index 530c4f0e9..ed0451640 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field272.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field272.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field272 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field272 extends Field implements Serializable, DateContainer {
*/
public static final String F_272 = "272";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "10!NS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "US";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "US";
-
/**
* Component number for the Timestamp subfield.
*/
@@ -234,16 +213,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "US";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field28.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field28.java
index f71b4b341..dd178fb12 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field28.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field28.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field28 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field28 extends Field implements Serializable {
*/
public static final String F_28 = "28";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Statement Number subfield.
*/
@@ -237,16 +216,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -378,16 +347,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Statement Number (component 1).
* @return the Statement Number from component 1
@@ -398,7 +357,6 @@ public String getStatementNumber() {
/**
* Alternative method getter for field's Statement Number
- * @deprecated use #getStatementNumber() instead
* @since 9.2.7
*/
public String getSettlementNumber() {
@@ -415,31 +373,12 @@ public java.lang.Long getStatementNumberAsLong() {
}
/**
- * @deprecated use #getStatementNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getStatementNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getStatementNumberAsLong() instead
* @since 9.2.7
*/
public java.lang.Long getSettlementNumberAsLong() {
return getStatementNumberAsLong();
}
- /**
- * @deprecated use #getStatementNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSettlementNumberAsNumber() {
- return getStatementNumberAsNumber();
- }
-
/**
* Gets the component 2 (Sequence Number).
* @return the component 2
@@ -458,16 +397,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Sequence Number (component 2).
* @return the Sequence Number from component 2
@@ -478,7 +407,6 @@ public String getSequenceNumber() {
/**
* Alternative method getter for field's Sequence Number
- * @deprecated use #getSequenceNumber() instead
* @since 9.2.7
*/
public String getPageNumber() {
@@ -495,31 +423,12 @@ public java.lang.Long getSequenceNumberAsLong() {
}
/**
- * @deprecated use #getSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getSequenceNumberAsLong() instead
* @since 9.2.7
*/
public java.lang.Long getPageNumberAsLong() {
return getSequenceNumberAsLong();
}
- /**
- * @deprecated use #getSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPageNumberAsNumber() {
- return getSequenceNumberAsNumber();
- }
-
/**
* Set the component 1 (Statement Number).
*
@@ -580,16 +489,10 @@ public Field28 setStatementNumber(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setStatementNumber(String) instead
- */
public Field28 setSettlementNumber(String component1) {
return setStatementNumber(component1);
}
- /**
- * @deprecated use #setStatementNumber(java.lang.Long) instead
- */
public Field28 setSettlementNumber(java.lang.Number component1) {
return setStatementNumber(component1);
}
@@ -654,16 +557,10 @@ public Field28 setSequenceNumber(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setSequenceNumber(String) instead
- */
public Field28 setPageNumber(String component2) {
return setSequenceNumber(component2);
}
- /**
- * @deprecated use #setSequenceNumber(java.lang.Long) instead
- */
public Field28 setPageNumber(java.lang.Number component2) {
return setSequenceNumber(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field280.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field280.java
index ff21248b3..15c64dfec 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field280.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field280.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field280 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field280 extends Field implements Serializable {
*/
public static final String F_280 = "280";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field281.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field281.java
index d74e294c0..04d6dbaf5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field281.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field281.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field281 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field281 extends Field implements Serializable {
*/
public static final String F_281 = "281";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field28C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field28C.java
index 3371182bd..e5f7277ad 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field28C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field28C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field28C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field28C extends Field implements Serializable {
*/
public static final String F_28C = "28C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Statement Number subfield.
*/
@@ -225,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -362,16 +331,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Statement Number (component 1).
* @return the Statement Number from component 1
@@ -389,15 +348,6 @@ public java.lang.Long getStatementNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getStatementNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getStatementNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Sequence Number).
* @return the component 2
@@ -416,16 +366,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Sequence Number (component 2).
* @return the Sequence Number from component 2
@@ -443,15 +383,6 @@ public java.lang.Long getSequenceNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Statement Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field28D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field28D.java
index fdfd7b3e3..c91d41b37 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field28D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field28D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field28D extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,50 +77,17 @@ public class Field28D extends Field implements Serializable {
*/
public static final String F_28D = "28D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Message Index subfield.
*/
public static final Integer MESSAGE_INDEX = 1;
- /**
- * @deprecated use #MESSAGE_INDEX instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer STATEMENT_NUMBER = 1;
/**
* Component number for the Total subfield.
*/
public static final Integer TOTAL = 2;
- /**
- * @deprecated use #TOTAL instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer SEQUENCE_NUMBER = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -238,16 +205,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -376,16 +333,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Message Index (component 1).
* @return the Message Index from component 1
@@ -394,16 +341,6 @@ public String getMessageIndex() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Message Index
- * @deprecated use #getMessageIndex() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getStatementNumber() {
- return getMessageIndex();
- }
/**
* Get the Message Index (component 1) as Long
@@ -414,33 +351,6 @@ public java.lang.Long getMessageIndexAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getMessageIndexAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageIndexAsNumber() {
- return getComponent1AsNumber();
- }
-
- /**
- * @deprecated use #getMessageIndexAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getStatementNumberAsLong() {
- return getMessageIndexAsLong();
- }
-
- /**
- * @deprecated use #getMessageIndexAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getStatementNumberAsNumber() {
- return getMessageIndexAsNumber();
- }
-
/**
* Gets the component 2 (Total).
* @return the component 2
@@ -459,16 +369,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total (component 2).
* @return the Total from component 2
@@ -477,16 +377,6 @@ public String getTotal() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Total
- * @deprecated use #getTotal() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getSequenceNumber() {
- return getTotal();
- }
/**
* Get the Total (component 2) as Long
@@ -497,33 +387,6 @@ public java.lang.Long getTotalAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getSequenceNumberAsLong() {
- return getTotalAsLong();
- }
-
- /**
- * @deprecated use #getTotalAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSequenceNumberAsNumber() {
- return getTotalAsNumber();
- }
-
/**
* Set the component 1 (Message Index).
*
@@ -584,24 +447,6 @@ public Field28D setMessageIndex(java.lang.Number component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setMessageIndex(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field28D setStatementNumber(String component1) {
- return setMessageIndex(component1);
- }
-
- /**
- * @deprecated use #setMessageIndex(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field28D setStatementNumber(java.lang.Number component1) {
- return setMessageIndex(component1);
- }
-
/**
* Set the component 2 (Total).
*
@@ -662,24 +507,6 @@ public Field28D setTotal(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setTotal(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field28D setSequenceNumber(String component2) {
- return setTotal(component2);
- }
-
- /**
- * @deprecated use #setTotal(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field28D setSequenceNumber(java.lang.Number component2) {
- return setTotal(component2);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field28E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field28E.java
index a423683c0..7d8839cf9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field28E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field28E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field28E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field28E extends Field implements Serializable {
*/
public static final String F_28E = "28E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NS";
-
/**
* Component number for the Page Number subfield.
*/
@@ -224,16 +203,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -358,16 +327,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Page Number (component 1).
* @return the Page Number from component 1
@@ -385,15 +344,6 @@ public java.lang.Long getPageNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getPageNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPageNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Continuation Indicator).
* @return the component 2
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29A.java
index 28091e51b..55defdcdc 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field29A extends StructuredNarrativeField implements Serializable,
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29B.java
index b4af3b993..e758eda84 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field29B extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field29B extends Field implements Serializable, MultiLineField {
*/
public static final String F_29B = "29B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-3";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSS";
-
/**
* Component number for the Narrative subfield.
*/
@@ -226,16 +205,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(4);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29E.java
index a1a8499c1..1bc780329 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field29E extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field29E extends Field implements Serializable {
*/
public static final String F_29E = "29E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SH";
-
/**
* Component number for the Location subfield.
*/
@@ -228,16 +207,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29H.java
index 54685b00a..a83d78025 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field29H extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field29H extends Field implements Serializable {
*/
public static final String F_29H = "29H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Location subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29I.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29I.java
index a28a537dd..a8ed10310 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29I.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29I.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field29I extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field29I extends Field implements Serializable {
*/
public static final String F_29I = "29I";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Barrier Determination Business Days subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29J.java
index 0ee0603d2..dc7e24646 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field29J extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field29J extends Field implements Serializable {
*/
public static final String F_29J = "29J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SH";
-
/**
* Component number for the Location subfield.
*/
@@ -228,16 +207,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29L.java
index 0f59ea2ab..4e7c856b0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field29L extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field29L extends Field implements Serializable, DateContainer {
*/
public static final String F_29L = "29L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "DSH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "DSH";
-
/**
* Component number for the Date subfield.
*/
@@ -248,16 +227,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "DSH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29M.java
index 7da49b96a..2c7be1c82 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field29M extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field29M extends Field implements Serializable {
*/
public static final String F_29M = "29M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SH";
-
/**
* Component number for the Location subfield.
*/
@@ -228,16 +207,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29N.java
index 1ff766e17..2c63a5258 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field29N extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field29N extends Field implements Serializable, DateContainer {
*/
public static final String F_29N = "29N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "DSH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "DSH";
-
/**
* Component number for the Date subfield.
*/
@@ -248,16 +227,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "DSH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29O.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29O.java
index 4070e90f0..e953ac0e9 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field29O.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29O.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field29O extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field29O extends Field implements Serializable {
*/
public static final String F_29O = "29O";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field29Q.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field29Q.java
new file mode 100644
index 000000000..c08c70cbe
--- /dev/null
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field29Q.java
@@ -0,0 +1,393 @@
+/*
+ * Copyright 2006-2024 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.field;
+
+import com.prowidesoftware.swift.model.Tag;
+import com.prowidesoftware.Generated;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
+
+import java.io.Serializable;
+import java.util.Locale;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+
+
+
+import com.prowidesoftware.swift.model.*;
+import com.prowidesoftware.swift.utils.SwiftFormatUtils;
+import org.apache.commons.lang3.StringUtils;
+
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+
+/**
+ * SWIFT MT Field 29Q.
+ *
+ * Model and parser for field 29Q of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field29Q extends Field implements Serializable {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 29Q.
+ */
+ public static final String NAME = "29Q";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_29Q = "29Q";
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field29Q() {
+ super(1);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field29Q(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field29Q(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "29Q")) {
+ throw new IllegalArgumentException("cannot create field 29Q from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field29Q newInstance(Field29Q source) {
+ Field29Q cp = new Field29Q();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(1);
+ setComponent1(value);
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "4!c";
+ }
+
+ /**
+ * Given a component number it returns true if the component is optional,
+ * regardless of the field being mandatory in a particular message.
+ * Model and parser for field 29W of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field29W extends Field implements Serializable {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 29W.
+ */
+ public static final String NAME = "29W";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_29W = "29W";
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field29W() {
+ super(1);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field29W(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field29W(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "29W")) {
+ throw new IllegalArgumentException("cannot create field 29W from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field29W newInstance(Field29W source) {
+ Field29W cp = new Field29W();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(1);
+ setComponent1(value);
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "4!c";
+ }
+
+ /**
+ * Given a component number it returns true if the component is optional,
+ * regardless of the field being mandatory in a particular message.
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30 extends Field implements Serializable, DateContainer {
*/
public static final String F_30 = "30";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field301.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field301.java
index 7a0344619..566821b2d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field301.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field301.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field301 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field301 extends Field implements Serializable {
*/
public static final String F_301 = "301";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Reporting Options subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field302.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field302.java
index 49a20fc77..bc1b243e2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field302.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field302.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field302 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field302 extends Field implements Serializable {
*/
public static final String F_302 = "302";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the Holiday Suppression subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field303.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field303.java
index 4502b6965..c5c6c1c94 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field303.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field303.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field303 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field303 extends Field implements Serializable {
*/
public static final String F_303 = "303";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the LT subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field304.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field304.java
index b1abb775a..da5815c48 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field304.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field304.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field304 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field304 extends Field implements Serializable {
*/
public static final String F_304 = "304";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field305.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field305.java
index ecdd8b24a..a72304d27 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field305.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field305.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field305 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field305 extends Field implements Serializable {
*/
public static final String F_305 = "305";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the LT subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field307.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field307.java
index 647ac7803..d6cc3a5a0 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field307.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field307.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field307 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field307 extends Field implements Serializable {
*/
public static final String F_307 = "307";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Country Codes Group subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30F.java
index 4b6436f44..a89148004 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30F extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30F extends Field implements Serializable, DateContainer {
*/
public static final String F_30F = "30F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30G.java
index 41751a40d..631e3ab7c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field30G extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field30G extends Field implements Serializable, DateContainer {
*/
public static final String F_30G = "30G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "DD";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "DD";
-
/**
* Component number for the Start Date subfield.
*/
@@ -246,16 +225,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "DD";
- }
-
/**
* Returns the field component types pattern.
*
@@ -393,7 +362,6 @@ public String getStartDate() {
/**
* Alternative method getter for field's Start Date
- * @deprecated use #getStartDate() instead
* @since 9.2.7
*/
public String getPeriodStartDate() {
@@ -409,7 +377,6 @@ public java.util.Calendar getStartDateAsCalendar() {
}
/**
- * @deprecated use #getStartDateAsCalendar() instead
* @since 9.2.7
*/
public java.util.Calendar getPeriodStartDateAsCalendar() {
@@ -443,7 +410,6 @@ public String getEndDate() {
/**
* Alternative method getter for field's End Date
- * @deprecated use #getEndDate() instead
* @since 9.2.7
*/
public String getPeriodEndDate() {
@@ -459,7 +425,6 @@ public java.util.Calendar getEndDateAsCalendar() {
}
/**
- * @deprecated use #getEndDateAsCalendar() instead
* @since 9.2.7
*/
public java.util.Calendar getPeriodEndDateAsCalendar() {
@@ -510,16 +475,10 @@ public Field30G setStartDate(java.util.Calendar component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setStartDate(String) instead
- */
public Field30G setPeriodStartDate(String component1) {
return setStartDate(component1);
}
- /**
- * @deprecated use #setComponent1(java.util.Calendar) instead
- */
public Field30G setPeriodStartDate(java.util.Calendar component1) {
return setStartDate(component1);
}
@@ -568,16 +527,10 @@ public Field30G setEndDate(java.util.Calendar component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setEndDate(String) instead
- */
public Field30G setPeriodEndDate(String component2) {
return setEndDate(component2);
}
- /**
- * @deprecated use #setComponent2(java.util.Calendar) instead
- */
public Field30G setPeriodEndDate(java.util.Calendar component2) {
return setEndDate(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30H.java
index 3c3c2ea4b..f6eeb8129 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30H extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30H extends Field implements Serializable, DateContainer {
*/
public static final String F_30H = "30H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30I.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30I.java
index 7d9ed94f0..f5892883a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30I.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30I.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field30I extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,38 +78,11 @@ public class Field30I extends Field implements Serializable, DateContainer {
*/
public static final String F_30I = "30I";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "DD";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "DD";
-
/**
* Component number for the Start Date subfield.
*/
public static final Integer START_DATE = 1;
- /**
- * @deprecated use #START_DATE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer DATE_OR_START_DATE = 1;
/**
* Component number for the End Date subfield.
@@ -242,16 +215,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "DD";
- }
-
/**
* Returns the field component types pattern.
*
@@ -385,16 +348,6 @@ public String getStartDate() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Start Date
- * @deprecated use #getStartDate() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getDateorStartDate() {
- return getStartDate();
- }
/**
* Get the Start Date (component 1) as Calendar
@@ -404,15 +357,6 @@ public java.util.Calendar getStartDateAsCalendar() {
return getComponent1AsCalendar();
}
- /**
- * @deprecated use #getStartDateAsCalendar() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Calendar getDateorStartDateAsCalendar() {
- return getStartDateAsCalendar();
- }
-
/**
* Gets the component 2 (End Date).
* @return the component 2
@@ -490,24 +434,6 @@ public Field30I setStartDate(java.util.Calendar component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setStartDate(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field30I setDateorStartDate(String component1) {
- return setStartDate(component1);
- }
-
- /**
- * @deprecated use #setComponent1(java.util.Calendar) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field30I setDateorStartDate(java.util.Calendar component1) {
- return setStartDate(component1);
- }
-
/**
* Set the component 2 (End Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30J.java
index 49fdd9751..f84da2975 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30J extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30J extends Field implements Serializable {
*/
public static final String F_30J = "30J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SN";
-
/**
* Component number for the Indicator subfield.
*/
@@ -222,16 +201,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -372,16 +341,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number (component 2).
* @return the Number from component 2
@@ -399,15 +358,6 @@ public java.lang.Long getNumberAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Indicator).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30K.java
new file mode 100644
index 000000000..394672eab
--- /dev/null
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30K.java
@@ -0,0 +1,671 @@
+/*
+ * Copyright 2006-2024 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.field;
+
+import com.prowidesoftware.swift.model.Tag;
+import com.prowidesoftware.Generated;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
+
+import java.io.Serializable;
+import java.util.Locale;
+import java.util.List;
+import java.util.ArrayList;
+import java.util.Map;
+import java.util.HashMap;
+
+import java.util.Calendar;
+
+import com.prowidesoftware.swift.model.field.DateContainer;
+import com.prowidesoftware.swift.model.field.DateResolver;
+
+import com.prowidesoftware.swift.model.*;
+import com.prowidesoftware.swift.utils.SwiftFormatUtils;
+import org.apache.commons.lang3.StringUtils;
+
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+
+/**
+ * SWIFT MT Field 30K.
+ *
+ * Model and parser for field 30K of a SWIFT MT message.
+ *
+ * Subfields (components) Data types
+ * Structure definition
+ *
+ * This class complies with standard release SRU2024
+ */
+@SuppressWarnings("unused")
+@Generated
+public class Field30K extends Field implements Serializable, DateContainer {
+ /**
+ * Constant identifying the SRU to which this class belongs to.
+ */
+ public static final int SRU = 2024;
+
+ private static final long serialVersionUID = 1L;
+ /**
+ * Constant with the field name 30K.
+ */
+ public static final String NAME = "30K";
+ /**
+ * Same as NAME, intended to be clear when using static imports.
+ */
+ public static final String F_30K = "30K";
+
+ /**
+ * Component number for the Start Date subfield.
+ */
+ public static final Integer START_DATE = 1;
+
+ /**
+ * Alternative constant name for field's Start Date Component number.
+ * @see #START_DATE
+ */
+ public static final Integer PERIOD_START_DATE = 1;
+
+ /**
+ * Component number for the End Date subfield.
+ */
+ public static final Integer END_DATE = 2;
+
+ /**
+ * Alternative constant name for field's End Date Component number.
+ * @see #END_DATE
+ */
+ public static final Integer PERIOD_END_DATE = 2;
+
+ /**
+ * Default constructor. Creates a new field setting all components to null.
+ */
+ public Field30K() {
+ super(2);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter value.
+ * @param value complete field value including separators and CRLF
+ */
+ public Field30K(final String value) {
+ super(value);
+ }
+
+ /**
+ * Creates a new field and initializes its components with content from the parameter tag.
+ * The value is parsed with {@link #parse(String)}
+ * @throws IllegalArgumentException if the parameter tag is null or its tagname does not match the field name
+ * @since 7.8
+ */
+ public Field30K(final Tag tag) {
+ this();
+ if (tag == null) {
+ throw new IllegalArgumentException("tag cannot be null.");
+ }
+ if (!StringUtils.equals(tag.getName(), "30K")) {
+ throw new IllegalArgumentException("cannot create field 30K from tag "+tag.getName()+", tagname must match the name of the field.");
+ }
+ parse(tag.getValue());
+ }
+
+ /**
+ * Copy constructor.
+ * Initializes the components list with a deep copy of the source components list.
+ * @param source a field instance to copy
+ * @since 7.7
+ */
+ public static Field30K newInstance(Field30K source) {
+ Field30K cp = new Field30K();
+ cp.setComponents(new ArrayList<>(source.getComponents()));
+ return cp;
+ }
+
+ /**
+ * Create a Tag with this field name and the given value.
+ * Shorthand for Used to update all components from a full new value, as an alternative
+ * to setting individual components. Previous component values are overwritten.
+ *
+ * @param value complete field value including separators and CRLF
+ * @since 7.8
+ */
+ @Override
+ public void parse(final String value) {
+ init(2);
+ setComponent1(SwiftParseUtils.getTokenFirst(value, "/"));
+ setComponent2(SwiftParseUtils.getTokenSecondLast(value, "/"));
+ }
+
+ /**
+ * Serializes the fields' components into the single string value (SWIFT format)
+ */
+ @Override
+ public String getValue() {
+ final StringBuilder result = new StringBuilder();
+ append(result, 1);
+ result.append("/");
+ append(result, 2);
+ return result.toString();
+ }
+
+ /**
+ * Returns a localized suitable for showing to humans string of a field component.
+ * This method returns a letter representing the type for each component in the Field. It supersedes
+ * the Components Pattern because it distinguishes between N (Number) and I (BigDecimal).
+ * @since 9.2.7
+ */
+ @Override
+ public String typesPattern() {
+ return "DD";
+ }
+
+ /**
+ * Returns the field parser pattern.
+ */
+ @Override
+ public String parserPattern() {
+ return "S/S";
+ }
+
+ /**
+ * Returns the field validator pattern
+ */
+ @Override
+ public String validatorPattern() {
+ return "
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30M extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30M extends Field implements Serializable, DateContainer {
*/
public static final String F_30M = "30M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30N.java
index 63ea18029..c60e8be88 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30N extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30N extends Field implements Serializable, DateContainer {
*/
public static final String F_30N = "30N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30P.java
index f81bc2fbc..7e4a4734c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30P extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30P extends Field implements Serializable, DateContainer {
*/
public static final String F_30P = "30P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Q.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Q.java
index aa34ae38d..f5d3d02ba 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Q.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Q.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30Q extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30Q extends Field implements Serializable, DateContainer {
*/
public static final String F_30Q = "30Q";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30S.java
index 843c5b055..23ab3395f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30S extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30S extends Field implements Serializable, DateContainer {
*/
public static final String F_30S = "30S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30T.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30T.java
index 2003ccb44..fd4a12539 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30T.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30T.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30T extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30T extends Field implements Serializable, DateContainer {
*/
public static final String F_30T = "30T";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30U.java
index 52a5d346e..5088f6a43 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30U extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30U extends Field implements Serializable, DateContainer {
*/
public static final String F_30U = "30U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30V.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30V.java
index 292538714..e0cf7ccf7 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30V.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30V.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30V extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30V extends Field implements Serializable, DateContainer {
*/
public static final String F_30V = "30V";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30X.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30X.java
index 01d4d8217..f5c43a5de 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30X.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30X.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30X extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30X extends Field implements Serializable, DateContainer {
*/
public static final String F_30X = "30X";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Y.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Y.java
index bcbf69dd1..8d232df02 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Y.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Y.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30Y extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30Y extends Field implements Serializable, DateContainer {
*/
public static final String F_30Y = "30Y";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Z.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Z.java
index 76dd2c288..d4a139560 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field30Z.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field30Z.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field30Z extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field30Z extends Field implements Serializable, DateContainer {
*/
public static final String F_30Z = "30Z";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "D";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "D";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "D";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field311.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field311.java
index a062e12cf..82ad44def 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field311.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field311.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field311 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field311 extends Field implements Serializable {
*/
public static final String F_311 = "311";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Text subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field312.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field312.java
index 3a986ae43..c79d469de 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field312.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field312.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field312 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field312 extends Field implements Serializable {
*/
public static final String F_312 = "312";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Broadcast Text subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field313.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field313.java
index f66df1ac9..5b2183294 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field313.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field313.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field313 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field313 extends Field implements Serializable {
*/
public static final String F_313 = "313";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Count subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Count (component 1).
* @return the Count from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getCountAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getCountAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getCountAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Count).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31C.java
index 5cf4aa0fe..2360921a2 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field31C extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field31C extends Field implements Serializable, DateContainer {
*/
public static final String F_31C = "31C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31D.java
index 599490e02..f9adf0021 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field31D extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field31D extends Field implements Serializable, DateContainer {
*/
public static final String F_31D = "31D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31E.java
index 849247d75..ff5698f0d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field31E extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field31E extends Field implements Serializable, DateContainer {
*/
public static final String F_31E = "31E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31F.java
index e77f7df54..16cd68167 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field31F extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field31F extends Field implements Serializable, DateContainer {
*/
public static final String F_31F = "31F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31G.java
index e7b44de48..823c3f94e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field31G extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field31G extends Field implements Serializable, DateContainer {
*/
public static final String F_31G = "31G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31L.java
index 91bb573b8..7c9885886 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field31L extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field31L extends Field implements Serializable, DateContainer {
*/
public static final String F_31L = "31L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31P.java
index 3471058d7..2a350b4e7 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field31P extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field31P extends Field implements Serializable, DateContainer {
*/
public static final String F_31P = "31P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31R.java
index 195c73956..43b8b5033 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field31R extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field31R extends Field implements Serializable, DateContainer {
*/
public static final String F_31R = "31R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31S.java
index 7b6ddf7c2..27174399a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field31S extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field31S extends Field implements Serializable, DateContainer {
*/
public static final String F_31S = "31S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field31X.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field31X.java
index 4fbeebb6a..8bfdc315a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field31X.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field31X.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field31X extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field31X extends Field implements Serializable, DateContainer {
*/
public static final String F_31X = "31X";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "(
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field329.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field329.java
index d7d7b259e..9e3cb7020 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field329.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field329.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field329 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field329 extends Field implements Serializable {
*/
public static final String F_329 = "329";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "L";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "L";
-
/**
* Component number for the Reconnect Allowed Option subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "L";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32A.java
index cbc9563c4..3a5973927 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field32A extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field32A extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32A = "32A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
@@ -823,10 +774,7 @@ public static Field32A fromJson(final String json) {
* @return BigDecimal value of amount attribute or null.
*/
public java.math.BigDecimal getAmountBigDecimal() {
- if (getComponent3AsBigDecimal() == null) {
- return null;
- }
- return (java.math.BigDecimal) getComponentAs(3, java.math.BigDecimal.class);
+ return getComponent3AsBigDecimal();
}
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32B.java
index f018ec9f4..50554c2b5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field32B extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field32B extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32B = "32B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -237,16 +216,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -406,15 +375,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -425,7 +385,6 @@ public String getAmount() {
/**
* Alternative method getter for field's Amount
- * @deprecated use #getAmount() instead
* @since 9.2.7
*/
public String getPrice() {
@@ -442,31 +401,12 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
}
/**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
* @since 9.2.7
*/
public java.math.BigDecimal getPriceAsBigDecimal() {
return getAmountAsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPriceAsNumber() {
- return getAmountAsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
@@ -572,16 +512,10 @@ public Field32B setAmount(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setAmount(String) instead
- */
public Field32B setPrice(String component2) {
return setAmount(component2);
}
- /**
- * @deprecated use #setAmount(java.math.BigDecimal) instead
- */
public Field32B setPrice(java.lang.Number component2) {
return setAmount(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32C.java
index f34002fc1..2f3ac0159 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field32C extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field32C extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32C = "32C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32D.java
index ac9394f88..bfac7ad1d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field32D extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field32D extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32D = "32D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32E.java
index 890894698..0bf363577 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field32E extends Field implements Serializable, CurrencyContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field32E extends Field implements Serializable, CurrencyContainer {
*/
public static final String F_32E = "32E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "C";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "C";
-
/**
* Component number for the Currency subfield.
*/
@@ -211,16 +190,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "C";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32F.java
index 856676edb..9b6e717de 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field32F extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field32F extends Field implements Serializable, AmountContainer {
*/
public static final String F_32F = "32F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Unit subfield.
*/
@@ -230,16 +209,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -380,15 +349,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -406,15 +366,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Unit).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32G.java
index bad3aa07d..1208d3ee4 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field32G extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field32G extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32G = "32G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32H.java
index 9c19ca2df..b2fe9877c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field32H extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field32H extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32H = "32H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[c]
@@ -438,15 +407,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -464,15 +424,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32K.java
index 468130987..1d2d1fc20 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field32K extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,38 +83,11 @@ public class Field32K extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32K = "32K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "cNS
@@ -437,16 +400,6 @@ public String getDayMonth() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's DayMonth
- * @deprecated use #getDayMonth() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getDMMark() {
- return getDayMonth();
- }
/**
* Gets the component 2 (Number Of Days/Months).
@@ -466,16 +419,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number Of Days/Months (component 2).
* @return the Number Of Days/Months from component 2
@@ -484,16 +427,6 @@ public String getNumberOfDaysMonths() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Number Of Days/Months
- * @deprecated use #getNumberOfDaysMonths() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNumberofDaysMonths() {
- return getNumberOfDaysMonths();
- }
/**
* Get the Number Of Days/Months (component 2) as Long
@@ -504,33 +437,6 @@ public java.lang.Long getNumberOfDaysMonthsAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberOfDaysMonthsAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getNumberofDaysMonthsAsLong() {
- return getNumberOfDaysMonthsAsLong();
- }
-
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberofDaysMonthsAsNumber() {
- return getNumberOfDaysMonthsAsNumber();
- }
-
/**
* Gets the component 3 (Code).
* @return the component 3
@@ -598,15 +504,6 @@ public java.math.BigDecimal getComponent5AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- return getComponent5AsBigDecimal();
- }
-
/**
* Gets the Amount (component 5).
* @return the Amount from component 5
@@ -624,15 +521,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent5AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (DayMonth).
*
@@ -654,15 +542,6 @@ public Field32K setDayMonth(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setDayMonth(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field32K setDMMark(String component1) {
- return setDayMonth(component1);
- }
-
/**
* Set the component 2 (Number Of Days/Months).
*
@@ -723,24 +602,6 @@ public Field32K setNumberOfDaysMonths(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setNumberOfDaysMonths(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field32K setNumberofDaysMonths(String component2) {
- return setNumberOfDaysMonths(component2);
- }
-
- /**
- * @deprecated use #setNumberOfDaysMonths(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field32K setNumberofDaysMonths(java.lang.Number component2) {
- return setNumberOfDaysMonths(component2);
- }
-
/**
* Set the component 3 (Code).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32M.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32M.java
index 4cca4c3aa..3106afe42 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32M.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32M.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field32M extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field32M extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32M = "32M";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32Q.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32Q.java
index 3aa8c4b52..667c4727d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32Q.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32Q.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field32Q extends Field implements Serializable, CurrencyContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field32Q extends Field implements Serializable, CurrencyContainer {
*/
public static final String F_32Q = "32Q";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CC";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CC";
-
/**
* Component number for the Currency 1 subfield.
*/
@@ -225,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CC";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32R.java
index eab163fea..96b1effca 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field32R extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field32R extends Field implements Serializable, AmountContainer {
*/
public static final String F_32R = "32R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[c]SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSI";
-
/**
* Component number for the Sign subfield.
*/
@@ -252,16 +231,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -424,15 +393,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -450,15 +410,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field32U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field32U.java
index 7be56ff32..28001ff64 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field32U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field32U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field32U extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field32U extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_32U = "32U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field330.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field330.java
index 57cebbff1..8fe086d53 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field330.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field330.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field330 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field330 extends Field implements Serializable {
*/
public static final String F_330 = "330";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "4!N6!N6!N6!N6!N1!N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NNNNNN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NNNNNN";
-
/**
* Component number for the Session Number subfield.
*/
@@ -280,16 +259,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(6);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NNNNNN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -426,16 +395,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 1).
* @return the Session Number from component 1
@@ -453,15 +412,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (ISN).
* @return the component 2
@@ -480,16 +430,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the ISN (component 2).
* @return the ISN from component 2
@@ -507,15 +447,6 @@ public java.lang.Long getISNAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getISNAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getISNAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (ISN NAK).
* @return the component 3
@@ -534,16 +465,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the ISN NAK (component 3).
* @return the ISN NAK from component 3
@@ -561,15 +482,6 @@ public java.lang.Long getISNNAKAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getISNNAKAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getISNNAKAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (OSN).
* @return the component 4
@@ -588,16 +500,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the OSN (component 4).
* @return the OSN from component 4
@@ -615,15 +517,6 @@ public java.lang.Long getOSNAsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getOSNAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getOSNAsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Gets the component 5 (OSN NAK).
* @return the component 5
@@ -642,16 +535,6 @@ public java.lang.Long getComponent5AsLong() {
return SwiftFormatUtils.getLong(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- Long l = getComponent5AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the OSN NAK (component 5).
* @return the OSN NAK from component 5
@@ -669,15 +552,6 @@ public java.lang.Long getOSNNAKAsLong() {
return getComponent5AsLong();
}
- /**
- * @deprecated use #getOSNNAKAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getOSNNAKAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Gets the component 6 (ACK Replay Indicator).
* @return the component 6
@@ -696,16 +570,6 @@ public java.lang.Long getComponent6AsLong() {
return SwiftFormatUtils.getLong(getComponent(6));
}
- /**
- * @deprecated use #getComponent6AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent6AsNumber() {
- Long l = getComponent6AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the ACK Replay Indicator (component 6).
* @return the ACK Replay Indicator from component 6
@@ -723,15 +587,6 @@ public java.lang.Long getACKReplayIndicatorAsLong() {
return getComponent6AsLong();
}
- /**
- * @deprecated use #getACKReplayIndicatorAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getACKReplayIndicatorAsNumber() {
- return getComponent6AsNumber();
- }
-
/**
* Set the component 1 (Session Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field331.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field331.java
index e1f90149b..df3e7597b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field331.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field331.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -70,7 +70,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -78,7 +78,7 @@ public class Field331 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -90,27 +90,6 @@ public class Field331 extends Field implements Serializable, DateContainer {
*/
public static final String F_331 = "331";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "4!N
@@ -525,16 +494,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 1).
* @return the Session Number from component 1
@@ -552,15 +511,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Date Session Opened).
* @return the component 2
@@ -711,16 +661,6 @@ public java.lang.Long getComponent6AsLong() {
return SwiftFormatUtils.getLong(getComponent(6));
}
- /**
- * @deprecated use #getComponent6AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent6AsNumber() {
- Long l = getComponent6AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Reason For Closure (component 6).
* @return the Reason For Closure from component 6
@@ -738,15 +678,6 @@ public java.lang.Long getReasonForClosureAsLong() {
return getComponent6AsLong();
}
- /**
- * @deprecated use #getReasonForClosureAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getReasonForClosureAsNumber() {
- return getComponent6AsNumber();
- }
-
/**
* Gets the component 7 (Quantity Of Messages Sent).
* @return the component 7
@@ -765,16 +696,6 @@ public java.lang.Long getComponent7AsLong() {
return SwiftFormatUtils.getLong(getComponent(7));
}
- /**
- * @deprecated use #getComponent7AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent7AsNumber() {
- Long l = getComponent7AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Quantity Of Messages Sent (component 7).
* @return the Quantity Of Messages Sent from component 7
@@ -792,15 +713,6 @@ public java.lang.Long getQuantityOfMessagesSentAsLong() {
return getComponent7AsLong();
}
- /**
- * @deprecated use #getQuantityOfMessagesSentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityOfMessagesSentAsNumber() {
- return getComponent7AsNumber();
- }
-
/**
* Gets the component 8 (Quantity Of Messages Received).
* @return the component 8
@@ -819,16 +731,6 @@ public java.lang.Long getComponent8AsLong() {
return SwiftFormatUtils.getLong(getComponent(8));
}
- /**
- * @deprecated use #getComponent8AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent8AsNumber() {
- Long l = getComponent8AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Quantity Of Messages Received (component 8).
* @return the Quantity Of Messages Received from component 8
@@ -846,15 +748,6 @@ public java.lang.Long getQuantityOfMessagesReceivedAsLong() {
return getComponent8AsLong();
}
- /**
- * @deprecated use #getQuantityOfMessagesReceivedAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityOfMessagesReceivedAsNumber() {
- return getComponent8AsNumber();
- }
-
/**
* Gets the component 9 (First Input Sequence Number).
* @return the component 9
@@ -873,16 +766,6 @@ public java.lang.Long getComponent9AsLong() {
return SwiftFormatUtils.getLong(getComponent(9));
}
- /**
- * @deprecated use #getComponent9AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent9AsNumber() {
- Long l = getComponent9AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the First Input Sequence Number (component 9).
* @return the First Input Sequence Number from component 9
@@ -900,15 +783,6 @@ public java.lang.Long getFirstInputSequenceNumberAsLong() {
return getComponent9AsLong();
}
- /**
- * @deprecated use #getFirstInputSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getFirstInputSequenceNumberAsNumber() {
- return getComponent9AsNumber();
- }
-
/**
* Gets the component 10 (Last Input Sequence Number).
* @return the component 10
@@ -927,16 +801,6 @@ public java.lang.Long getComponent10AsLong() {
return SwiftFormatUtils.getLong(getComponent(10));
}
- /**
- * @deprecated use #getComponent10AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent10AsNumber() {
- Long l = getComponent10AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Last Input Sequence Number (component 10).
* @return the Last Input Sequence Number from component 10
@@ -954,15 +818,6 @@ public java.lang.Long getLastInputSequenceNumberAsLong() {
return getComponent10AsLong();
}
- /**
- * @deprecated use #getLastInputSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getLastInputSequenceNumberAsNumber() {
- return getComponent10AsNumber();
- }
-
/**
* Gets the component 11 (First Output Sequence Number).
* @return the component 11
@@ -981,16 +836,6 @@ public java.lang.Long getComponent11AsLong() {
return SwiftFormatUtils.getLong(getComponent(11));
}
- /**
- * @deprecated use #getComponent11AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent11AsNumber() {
- Long l = getComponent11AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the First Output Sequence Number (component 11).
* @return the First Output Sequence Number from component 11
@@ -1008,15 +853,6 @@ public java.lang.Long getFirstOutputSequenceNumberAsLong() {
return getComponent11AsLong();
}
- /**
- * @deprecated use #getFirstOutputSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getFirstOutputSequenceNumberAsNumber() {
- return getComponent11AsNumber();
- }
-
/**
* Gets the component 12 (Last Output Sequence Number).
* @return the component 12
@@ -1035,16 +871,6 @@ public java.lang.Long getComponent12AsLong() {
return SwiftFormatUtils.getLong(getComponent(12));
}
- /**
- * @deprecated use #getComponent12AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent12AsNumber() {
- Long l = getComponent12AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Last Output Sequence Number (component 12).
* @return the Last Output Sequence Number from component 12
@@ -1062,15 +888,6 @@ public java.lang.Long getLastOutputSequenceNumberAsLong() {
return getComponent12AsLong();
}
- /**
- * @deprecated use #getLastOutputSequenceNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getLastOutputSequenceNumberAsNumber() {
- return getComponent12AsNumber();
- }
-
/**
* Set the component 1 (Session Number).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field332.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field332.java
index a940046a5..f3ed40a71 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field332.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field332.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field332 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field332 extends Field implements Serializable {
*/
public static final String F_332 = "332";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "6!N6!N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "NN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "NN";
-
/**
* Component number for the Total Messages Sent subfield.
*/
@@ -228,16 +207,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "NN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -362,16 +331,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total Messages Sent (component 1).
* @return the Total Messages Sent from component 1
@@ -389,15 +348,6 @@ public java.lang.Long getTotalMessagesSentAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getTotalMessagesSentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalMessagesSentAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Total Messages Received).
* @return the component 2
@@ -416,16 +366,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Total Messages Received (component 2).
* @return the Total Messages Received from component 2
@@ -443,15 +383,6 @@ public java.lang.Long getTotalMessagesReceivedAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getTotalMessagesReceivedAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getTotalMessagesReceivedAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Total Messages Sent).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field333.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field333.java
index f547db83d..558d2440d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field333.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field333.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -74,7 +74,7 @@ public class Field333 extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -86,27 +86,6 @@ public class Field333 extends Field implements Serializable, DateContainer {
*/
public static final String F_333 = "333";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -543,16 +512,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Session Number (component 3).
* @return the Session Number from component 3
@@ -570,15 +529,6 @@ public java.lang.Long getSessionNumberAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getSessionNumberAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getSessionNumberAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Date Last Session Closed).
* @return the component 4
@@ -663,16 +613,6 @@ public java.lang.Long getComponent6AsLong() {
return SwiftFormatUtils.getLong(getComponent(6));
}
- /**
- * @deprecated use #getComponent6AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent6AsNumber() {
- Long l = getComponent6AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Reason For Closure (component 6).
* @return the Reason For Closure from component 6
@@ -690,15 +630,6 @@ public java.lang.Long getReasonForClosureAsLong() {
return getComponent6AsLong();
}
- /**
- * @deprecated use #getReasonForClosureAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getReasonForClosureAsNumber() {
- return getComponent6AsNumber();
- }
-
/**
* Gets the component 7 (Last Input Sequence Number Received).
* @return the component 7
@@ -717,16 +648,6 @@ public java.lang.Long getComponent7AsLong() {
return SwiftFormatUtils.getLong(getComponent(7));
}
- /**
- * @deprecated use #getComponent7AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent7AsNumber() {
- Long l = getComponent7AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Last Input Sequence Number Received (component 7).
* @return the Last Input Sequence Number Received from component 7
@@ -744,15 +665,6 @@ public java.lang.Long getLastInputSequenceNumberReceivedAsLong() {
return getComponent7AsLong();
}
- /**
- * @deprecated use #getLastInputSequenceNumberReceivedAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getLastInputSequenceNumberReceivedAsNumber() {
- return getComponent7AsNumber();
- }
-
/**
* Gets the component 8 (Last Output Sequence Number Sent).
* @return the component 8
@@ -771,16 +683,6 @@ public java.lang.Long getComponent8AsLong() {
return SwiftFormatUtils.getLong(getComponent(8));
}
- /**
- * @deprecated use #getComponent8AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent8AsNumber() {
- Long l = getComponent8AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Last Output Sequence Number Sent (component 8).
* @return the Last Output Sequence Number Sent from component 8
@@ -798,15 +700,6 @@ public java.lang.Long getLastOutputSequenceNumberSentAsLong() {
return getComponent8AsLong();
}
- /**
- * @deprecated use #getLastOutputSequenceNumberSentAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getLastOutputSequenceNumberSentAsNumber() {
- return getComponent8AsNumber();
- }
-
/**
* Set the component 1 (Date Last Session Opened).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field334.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field334.java
index 44e3f47cc..72462e2c8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field334.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field334.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field334 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field334 extends Field implements Serializable {
*/
public static final String F_334 = "334";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field335.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field335.java
index 7abf48844..cd7498aef 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field335.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field335.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field335 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,27 +83,6 @@ public class Field335 extends Field implements Serializable {
*/
public static final String F_335 = "335";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field336.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field336.java
index 1b287f915..c16ba6560 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field336.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field336.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field336 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field336 extends Field implements Serializable {
*/
public static final String F_336 = "336";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "6!S5!NS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SNS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SNS";
-
/**
* Component number for the Delivery Subset Name subfield.
*/
@@ -241,16 +220,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SNS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -394,16 +363,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number Of Messages (component 2).
* @return the Number Of Messages from component 2
@@ -421,15 +380,6 @@ public java.lang.Long getNumberOfMessagesAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getNumberOfMessagesAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberOfMessagesAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Codes).
* @return the component 3
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field337.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field337.java
index 2330034d4..c3bf12b87 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field337.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field337.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field337 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field337 extends Field implements Serializable {
*/
public static final String F_337 = "337";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Status Code subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field338.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field338.java
index 087bdc969..b42c358cc 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field338.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field338.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field338 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field338 extends Field implements Serializable {
*/
public static final String F_338 = "338";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Delivery Subsets subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field339.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field339.java
index 3db820e13..50b8bb959 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field339.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field339.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field339 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field339 extends Field implements Serializable {
*/
public static final String F_339 = "339";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Subset Name subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33A.java
index 559d4e74d..10fb0e779 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field33A extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field33A extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33A = "33A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33B.java
index 280c364f1..3f6d358b8 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field33B extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field33B extends Field implements Serializable, AmountContainer {
*/
public static final String F_33B = "33B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Currency subfield.
*/
@@ -236,16 +215,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -388,15 +357,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -407,7 +367,6 @@ public String getAmount() {
/**
* Alternative method getter for field's Amount
- * @deprecated use #getAmount() instead
* @since 9.2.7
*/
public String getPrice() {
@@ -424,31 +383,12 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
}
/**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
* @since 9.2.7
*/
public java.math.BigDecimal getPriceAsBigDecimal() {
return getAmountAsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPriceAsNumber() {
- return getAmountAsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
@@ -531,16 +471,10 @@ public Field33B setAmount(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setAmount(String) instead
- */
public Field33B setPrice(String component2) {
return setAmount(component2);
}
- /**
- * @deprecated use #setAmount(java.math.BigDecimal) instead
- */
public Field33B setPrice(java.lang.Number component2) {
return setAmount(component2);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33C.java
index 98f184bc6..3be85ff95 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field33C extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field33C extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33C = "33C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33D.java
index 4cc47c950..a7943fe1f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field33D extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field33D extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33D = "33D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33E.java
index e82bd4f20..70bf8eabf 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field33E extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field33E extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33E = "33E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33F.java
index 9203ed084..c77091b43 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field33F extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field33F extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33F = "33F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33G.java
index 4343c913a..d780ecc0f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field33G extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field33G extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33G = "33G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SNS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CNS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CIS";
-
/**
* Component number for the Currency subfield.
*/
@@ -112,12 +91,6 @@ public class Field33G extends Field implements Serializable, MonetaryAmountConta
*/
public static final Integer PRICE = 2;
- /**
- * @deprecated use #PRICE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Component number for the Code subfield.
@@ -249,16 +222,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CNS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -424,15 +387,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Price (component 2).
* @return the Price from component 2
@@ -441,16 +395,6 @@ public String getPrice() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Price
- * @deprecated use #getPrice() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getPrice();
- }
/**
* Get the Price (component 2) as BigDecimal
@@ -461,33 +405,6 @@ public java.math.BigDecimal getPriceAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPriceAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getPriceAsBigDecimal();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getPriceAsNumber();
- }
-
/**
* Gets the component 3 (Code).
* @return the component 3
@@ -609,24 +526,6 @@ public Field33G setPrice(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setPrice(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33G setAmount(String component2) {
- return setPrice(component2);
- }
-
- /**
- * @deprecated use #setPrice(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33G setAmount(java.lang.Number component2) {
- return setPrice(component2);
- }
-
/**
* Set the component 3 (Code).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33H.java
index e527fdaec..c94f3d25c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field33H extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field33H extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33H = "33H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33J.java
index 160e5d952..a5b616c6d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field33J extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,38 +79,11 @@ public class Field33J extends Field implements Serializable, AmountContainer {
*/
public static final String F_33J = "33J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Unit subfield.
*/
public static final Integer UNIT = 1;
- /**
- * @deprecated use #UNIT instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 1;
/**
* Component number for the Amount subfield.
@@ -237,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -371,16 +334,6 @@ public String getUnit() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Unit
- * @deprecated use #getUnit() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getUnit();
- }
/**
* Gets the component 2 (Amount).
@@ -400,15 +353,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -426,15 +370,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Unit).
*
@@ -456,15 +391,6 @@ public Field33J setUnit(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setUnit(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33J setCurrency(String component1) {
- return setUnit(component1);
- }
-
/**
* Set the component 2 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33K.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33K.java
index f0506d483..0290960b5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33K.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33K.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field33K extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,38 +83,11 @@ public class Field33K extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_33K = "33K";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "cNS
@@ -437,16 +400,6 @@ public String getDayMonth() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's DayMonth
- * @deprecated use #getDayMonth() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getDMMark() {
- return getDayMonth();
- }
/**
* Gets the component 2 (Number Of Days/Months).
@@ -466,16 +419,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Number Of Days/Months (component 2).
* @return the Number Of Days/Months from component 2
@@ -484,16 +427,6 @@ public String getNumberOfDaysMonths() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Number Of Days/Months
- * @deprecated use #getNumberOfDaysMonths() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getNumberofDaysMonths() {
- return getNumberOfDaysMonths();
- }
/**
* Get the Number Of Days/Months (component 2) as Long
@@ -504,33 +437,6 @@ public java.lang.Long getNumberOfDaysMonthsAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberOfDaysMonthsAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Long getNumberofDaysMonthsAsLong() {
- return getNumberOfDaysMonthsAsLong();
- }
-
- /**
- * @deprecated use #getNumberOfDaysMonthsAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getNumberofDaysMonthsAsNumber() {
- return getNumberOfDaysMonthsAsNumber();
- }
-
/**
* Gets the component 3 (Code).
* @return the component 3
@@ -598,15 +504,6 @@ public java.math.BigDecimal getComponent5AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(5));
}
- /**
- * @deprecated use #getComponent5AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent5AsNumber() {
- return getComponent5AsBigDecimal();
- }
-
/**
* Gets the Amount (component 5).
* @return the Amount from component 5
@@ -624,15 +521,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent5AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent5AsNumber();
- }
-
/**
* Set the component 1 (DayMonth).
*
@@ -654,15 +542,6 @@ public Field33K setDayMonth(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setDayMonth(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33K setDMMark(String component1) {
- return setDayMonth(component1);
- }
-
/**
* Set the component 2 (Number Of Days/Months).
*
@@ -723,24 +602,6 @@ public Field33K setNumberOfDaysMonths(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setNumberOfDaysMonths(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33K setNumberofDaysMonths(String component2) {
- return setNumberOfDaysMonths(component2);
- }
-
- /**
- * @deprecated use #setNumberOfDaysMonths(java.lang.Long) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33K setNumberofDaysMonths(java.lang.Number component2) {
- return setNumberOfDaysMonths(component2);
- }
-
/**
* Set the component 3 (Code).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33S.java
index 6c6dc3bac..07ab8477b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field33S extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,38 +79,11 @@ public class Field33S extends Field implements Serializable, AmountContainer {
*/
public static final String F_33S = "33S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Code subfield.
*/
public static final Integer CODE = 1;
- /**
- * @deprecated use #CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 1;
/**
* Component number for the Amount subfield.
@@ -237,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -371,16 +334,6 @@ public String getCode() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Code
- * @deprecated use #getCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getCode();
- }
/**
* Gets the component 2 (Amount).
@@ -400,15 +353,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -426,15 +370,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Code).
*
@@ -456,15 +391,6 @@ public Field33S setCode(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33S setCurrency(String component1) {
- return setCode(component1);
- }
-
/**
* Set the component 2 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33T.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33T.java
index c742d7a94..023702d46 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33T.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33T.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field33T extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field33T extends Field implements Serializable, AmountContainer {
*/
public static final String F_33T = "33T";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Currency subfield.
*/
@@ -110,12 +89,6 @@ public class Field33T extends Field implements Serializable, AmountContainer {
*/
public static final Integer PRICE = 2;
- /**
- * @deprecated use #PRICE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -237,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -389,15 +352,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Price (component 2).
* @return the Price from component 2
@@ -406,16 +360,6 @@ public String getPrice() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Price
- * @deprecated use #getPrice() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getPrice();
- }
/**
* Get the Price (component 2) as BigDecimal
@@ -426,33 +370,6 @@ public java.math.BigDecimal getPriceAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPriceAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getPriceAsBigDecimal();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getPriceAsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
@@ -535,24 +452,6 @@ public Field33T setPrice(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setPrice(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33T setAmount(String component2) {
- return setPrice(component2);
- }
-
- /**
- * @deprecated use #setPrice(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field33T setAmount(java.lang.Number component2) {
- return setPrice(component2);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field33Z.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field33Z.java
index 0bf1e1abf..4b83d6bb1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field33Z.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field33Z.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field33Z extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field33Z extends Field implements Serializable, AmountContainer {
*/
public static final String F_33Z = "33Z";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "I";
-
/**
* Component number for the Amount subfield.
*/
@@ -218,16 +197,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -349,15 +318,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Amount (component 1).
* @return the Amount from component 1
@@ -375,15 +335,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field340.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field340.java
index f6d70747a..9d16386ad 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field340.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field340.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field340 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field340 extends Field implements Serializable {
*/
public static final String F_340 = "340";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field341.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field341.java
index 4ab3e0576..739e98e74 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field341.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field341.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field341 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field341 extends Field implements Serializable {
*/
public static final String F_341 = "341";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Generation Time Options subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field342.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field342.java
index 2d76f9f5c..134410958 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field342.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field342.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field342 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field342 extends Field implements Serializable {
*/
public static final String F_342 = "342";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "3!SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SH";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SH";
-
/**
* Component number for the Region subfield.
*/
@@ -232,16 +211,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SH";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field343.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field343.java
index 8fb17b196..e5b07e162 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field343.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field343.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field343 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field343 extends Field implements Serializable {
*/
public static final String F_343 = "343";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N
@@ -394,16 +363,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Region Time Count 1 (component 1).
* @return the Region Time Count 1 from component 1
@@ -421,15 +380,6 @@ public java.lang.Long getRegionTimeCount1AsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getRegionTimeCount1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRegionTimeCount1AsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (Region Time Count 2).
* @return the component 2
@@ -448,16 +398,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Region Time Count 2 (component 2).
* @return the Region Time Count 2 from component 2
@@ -475,15 +415,6 @@ public java.lang.Long getRegionTimeCount2AsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getRegionTimeCount2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRegionTimeCount2AsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Gets the component 3 (Region Time Count 3).
* @return the component 3
@@ -502,16 +433,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Region Time Count 3 (component 3).
* @return the Region Time Count 3 from component 3
@@ -529,15 +450,6 @@ public java.lang.Long getRegionTimeCount3AsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getRegionTimeCount3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRegionTimeCount3AsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Gets the component 4 (Region Time Count 4).
* @return the component 4
@@ -556,16 +468,6 @@ public java.lang.Long getComponent4AsLong() {
return SwiftFormatUtils.getLong(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- Long l = getComponent4AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Region Time Count 4 (component 4).
* @return the Region Time Count 4 from component 4
@@ -583,15 +485,6 @@ public java.lang.Long getRegionTimeCount4AsLong() {
return getComponent4AsLong();
}
- /**
- * @deprecated use #getRegionTimeCount4AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRegionTimeCount4AsNumber() {
- return getComponent4AsNumber();
- }
-
/**
* Set the component 1 (Region Time Count 1).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field344.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field344.java
index 8f44f0ba1..7f79dc851 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field344.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field344.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field344 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field344 extends Field implements Serializable {
*/
public static final String F_344 = "344";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "c[N]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "cN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "cN";
-
/**
* Component number for the Priority subfield.
*/
@@ -229,16 +208,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "cN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -379,16 +348,6 @@ public java.lang.Long getComponent2AsLong() {
return SwiftFormatUtils.getLong(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- Long l = getComponent2AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Message Categories (component 2).
* @return the Message Categories from component 2
@@ -406,15 +365,6 @@ public java.lang.Long getMessageCategoriesAsLong() {
return getComponent2AsLong();
}
- /**
- * @deprecated use #getMessageCategoriesAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getMessageCategoriesAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Priority).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field345.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field345.java
index b90a6dc93..317087c81 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field345.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field345.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field345 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field345 extends Field implements Serializable {
*/
public static final String F_345 = "345";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "3!S*10";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "MMMMMMMMMM";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "MMMMMMMMMM";
-
/**
* Component number for the MT1 subfield.
*/
@@ -303,16 +282,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(10);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "MMMMMMMMMM";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field346.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field346.java
index cff12a95a..fc0d1412d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field346.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field346.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field346 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,27 +83,6 @@ public class Field346 extends Field implements Serializable {
*/
public static final String F_346 = "346";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "3!S*10";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSSSSS";
-
/**
* Component number for the Branch1 subfield.
*/
@@ -301,16 +280,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(10);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field347.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field347.java
index a2225518b..4ff61ee01 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field347.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field347.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -71,7 +71,7 @@ public class Field347 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -83,27 +83,6 @@ public class Field347 extends Field implements Serializable {
*/
public static final String F_347 = "347";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "3!S*10";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSSSSS";
-
/**
* Component number for the Field 1 subfield.
*/
@@ -301,16 +280,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(10);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field348.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field348.java
index f50a5ae61..8046c6023 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field348.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field348.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -62,7 +62,7 @@ public class Field348 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -74,27 +74,6 @@ public class Field348 extends Field implements Serializable {
*/
public static final String F_348 = "348";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "S";
-
/**
* Component number for the Subset Sharing subfield.
*/
@@ -208,16 +187,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "S";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field349.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field349.java
index befa49ad8..80a033f8b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field349.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field349.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field349 extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field349 extends Field implements Serializable {
*/
public static final String F_349 = "349";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "N";
-
/**
* Component number for the Combined Criteria subfield.
*/
@@ -210,16 +189,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(1);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -341,16 +310,6 @@ public java.lang.Long getComponent1AsLong() {
return SwiftFormatUtils.getLong(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- Long l = getComponent1AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Combined Criteria (component 1).
* @return the Combined Criteria from component 1
@@ -368,15 +327,6 @@ public java.lang.Long getCombinedCriteriaAsLong() {
return getComponent1AsLong();
}
- /**
- * @deprecated use #getCombinedCriteriaAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getCombinedCriteriaAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Combined Criteria).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34A.java
index 6c07811ea..58395547a 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field34A extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field34A extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34A = "34A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34B.java
index c48299db1..5d5c79a22 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field34B extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field34B extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34B = "34B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CI";
-
/**
* Component number for the Currency subfield.
*/
@@ -231,16 +210,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -398,15 +367,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Amount (component 2).
* @return the Amount from component 2
@@ -424,15 +384,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent2AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34C.java
index 8b97c6000..2d4d07dc5 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -62,7 +62,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -70,7 +70,7 @@ public class Field34C extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -82,27 +82,6 @@ public class Field34C extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34C = "34C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S/[c]
@@ -465,16 +422,6 @@ public String getCurrencyPercent() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Currency/Percent
- * @deprecated use #getCurrencyPercent() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getCurrencyPercent();
- }
/**
* Get the Currency/Percent (component 3) as Currency
@@ -484,15 +431,6 @@ public java.util.Currency getCurrencyPercentAsCurrency() {
return getComponent3AsCurrency();
}
- /**
- * @deprecated use #getCurrencyPercentAsCurrency() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.util.Currency getCurrencyAsCurrency() {
- return getCurrencyPercentAsCurrency();
- }
-
/**
* Gets the component 4 (Amount/Rate).
* @return the component 4
@@ -511,15 +449,6 @@ public java.math.BigDecimal getComponent4AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- return getComponent4AsBigDecimal();
- }
-
/**
* Gets the Amount/Rate (component 4).
* @return the Amount/Rate from component 4
@@ -528,16 +457,6 @@ public String getAmountRate() {
return getComponent4();
}
- /**
- * Alternative DEPRECATED method getter for field's Amount/Rate
- * @deprecated use #getAmountRate() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getAmountRate();
- }
/**
* Get the Amount/Rate (component 4) as BigDecimal
@@ -548,33 +467,6 @@ public java.math.BigDecimal getAmountRateAsBigDecimal() {
return getComponent4AsBigDecimal();
}
- /**
- * @deprecated use #getAmountRateAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountRateAsNumber() {
- return getComponent4AsNumber();
- }
-
- /**
- * @deprecated use #getAmountRateAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getAmountRateAsBigDecimal();
- }
-
- /**
- * @deprecated use #getAmountRateAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getAmountRateAsNumber();
- }
-
/**
* Set the component 1 (Commission Type).
*
@@ -661,24 +553,6 @@ public Field34C setCurrencyPercent(java.util.Currency component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setCurrencyPercent(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field34C setCurrency(String component3) {
- return setCurrencyPercent(component3);
- }
-
- /**
- * @deprecated use #setComponent3(java.util.Currency) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field34C setCurrency(java.util.Currency component3) {
- return setCurrencyPercent(component3);
- }
-
/**
* Set the component 4 (Amount/Rate).
*
@@ -740,24 +614,6 @@ public Field34C setAmountRate(java.lang.Number component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setAmountRate(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field34C setAmount(String component4) {
- return setAmountRate(component4);
- }
-
- /**
- * @deprecated use #setAmountRate(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field34C setAmount(java.lang.Number component4) {
- return setAmountRate(component4);
- }
-
@Override
public List
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field34E extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field34E extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34E = "34E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[c]
@@ -438,15 +407,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -464,15 +424,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34F.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34F.java
index db1293c92..2cc5aee27 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34F.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34F.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field34F extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field34F extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34F = "34F";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "CSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "CSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "CSI";
-
/**
* Component number for the Currency subfield.
*/
@@ -249,16 +228,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "CSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -438,15 +407,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -464,15 +424,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Currency).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34J.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34J.java
index a849187dd..8dacc365b 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34J.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34J.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field34J extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field34J extends Field implements Serializable, AmountContainer {
*/
public static final String F_34J = "34J";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[c]
@@ -411,16 +374,6 @@ public String getUnit() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Unit
- * @deprecated use #getUnit() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getUnit();
- }
/**
* Gets the component 3 (Amount).
@@ -440,15 +393,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -466,15 +410,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
@@ -517,15 +452,6 @@ public Field34J setUnit(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setUnit(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field34J setCurrency(String component2) {
- return setUnit(component2);
- }
-
/**
* Set the component 3 (Amount).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34P.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34P.java
index 5de361989..b86de9bc6 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34P.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34P.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field34P extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field34P extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34P = "34P";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field34R.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field34R.java
index 0a750945b..96f72a088 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field34R.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field34R.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -72,7 +72,7 @@ public class Field34R extends Field implements Serializable, MonetaryAmountConta
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -84,27 +84,6 @@ public class Field34R extends Field implements Serializable, MonetaryAmountConta
*/
public static final String F_34R = "34R";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "
@@ -457,15 +426,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Amount (component 3).
* @return the Amount from component 3
@@ -483,15 +443,6 @@ public java.math.BigDecimal getAmountAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getAmountAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Date).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35A.java
index 177736eb8..5dd84c952 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field35A extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,50 +79,17 @@ public class Field35A extends Field implements Serializable, AmountContainer {
*/
public static final String F_35A = "35A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Type subfield.
*/
public static final Integer TYPE = 1;
- /**
- * @deprecated use #TYPE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 1;
/**
* Component number for the Quantity subfield.
*/
public static final Integer QUANTITY = 2;
- /**
- * @deprecated use #QUANTITY instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -244,16 +211,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -380,16 +337,6 @@ public String getType() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Type
- * @deprecated use #getType() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getType();
- }
/**
* Gets the component 2 (Quantity).
@@ -409,15 +356,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 2).
* @return the Quantity from component 2
@@ -426,16 +364,6 @@ public String getQuantity() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 2) as BigDecimal
@@ -446,33 +374,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Type).
*
@@ -494,15 +395,6 @@ public Field35A setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35A setCurrency(String component1) {
- return setType(component1);
- }
-
/**
* Set the component 2 (Quantity).
*
@@ -564,24 +456,6 @@ public Field35A setQuantity(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35A setAmount(String component2) {
- return setQuantity(component2);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35A setAmount(java.lang.Number component2) {
- return setQuantity(component2);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35B.java
index c5a35cf8d..ba52d3d4e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field35B extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field35B extends Field implements Serializable, MultiLineField {
*/
public static final String F_35B = "35B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[
@@ -483,7 +452,6 @@ public String getISIN() {
/**
* Alternative method getter for field's ISIN
- * @deprecated use #getISIN() instead
* @since 9.2.7
*/
public String getIdentificationOfInstrument() {
@@ -492,7 +460,6 @@ public String getIdentificationOfInstrument() {
/**
* Alternative method getter for field's ISIN
- * @deprecated use #getISIN() instead
* @since 9.2.7
*/
public String getIdentificationOfSecurity() {
@@ -517,7 +484,6 @@ public String getDescriptionLine1() {
/**
* Alternative method getter for field's Description
- * @deprecated use #getDescriptionLine1() instead
* @since 9.2.7
*/
public String getDescriptionOfInstrumentLine1() {
@@ -526,7 +492,6 @@ public String getDescriptionOfInstrumentLine1() {
/**
* Alternative method getter for field's Description
- * @deprecated use #getDescriptionLine1() instead
* @since 9.2.7
*/
public String getDescriptionOfSecurityLine1() {
@@ -561,30 +526,18 @@ public String getDescription(CharSequence deli) {
return result.toString();
}
- /**
- * @deprecated use #getDescription() instead
- */
public String getDescriptionOfInstrument() {
return getDescription();
}
- /**
- * @deprecated use #getDescription() instead
- */
public String getDescriptionOfInstrument(CharSequence deli) {
return getDescription(deli);
}
- /**
- * @deprecated use #getDescription() instead
- */
public String getDescriptionOfSecurity() {
return getDescription();
}
- /**
- * @deprecated use #getDescription() instead
- */
public String getDescriptionOfSecurity(CharSequence deli) {
return getDescription(deli);
}
@@ -607,7 +560,6 @@ public String getDescriptionLine2() {
/**
* Alternative method getter for field's Description 2
- * @deprecated use #getDescriptionLine2() instead
* @since 9.2.7
*/
public String getDescriptionOfInstrumentLine2() {
@@ -616,7 +568,6 @@ public String getDescriptionOfInstrumentLine2() {
/**
* Alternative method getter for field's Description 2
- * @deprecated use #getDescriptionLine2() instead
* @since 9.2.7
*/
public String getDescriptionOfSecurityLine2() {
@@ -641,7 +592,6 @@ public String getDescriptionLine3() {
/**
* Alternative method getter for field's Description 3
- * @deprecated use #getDescriptionLine3() instead
* @since 9.2.7
*/
public String getDescriptionOfInstrumentLine3() {
@@ -650,7 +600,6 @@ public String getDescriptionOfInstrumentLine3() {
/**
* Alternative method getter for field's Description 3
- * @deprecated use #getDescriptionLine3() instead
* @since 9.2.7
*/
public String getDescriptionOfSecurityLine3() {
@@ -675,7 +624,6 @@ public String getDescriptionLine4() {
/**
* Alternative method getter for field's Description 4
- * @deprecated use #getDescriptionLine4() instead
* @since 9.2.7
*/
public String getDescriptionOfInstrumentLine4() {
@@ -684,7 +632,6 @@ public String getDescriptionOfInstrumentLine4() {
/**
* Alternative method getter for field's Description 4
- * @deprecated use #getDescriptionLine4() instead
* @since 9.2.7
*/
public String getDescriptionOfSecurityLine4() {
@@ -733,16 +680,10 @@ public Field35B setISIN(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setISIN(String) instead
- */
public Field35B setIdentificationOfInstrument(String component2) {
return setISIN(component2);
}
- /**
- * @deprecated use #setISIN(String) instead
- */
public Field35B setIdentificationOfSecurity(String component2) {
return setISIN(component2);
}
@@ -768,16 +709,10 @@ public Field35B setDescriptionLine1(String component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setDescriptionLine1(String) instead
- */
public Field35B setDescriptionOfInstrumentLine1(String component3) {
return setDescriptionLine1(component3);
}
- /**
- * @deprecated use #setDescriptionLine1(String) instead
- */
public Field35B setDescriptionOfSecurityLine1(String component3) {
return setDescriptionLine1(component3);
}
@@ -794,16 +729,10 @@ public Field35B setDescription(String value) {
return this;
}
- /**
- * @deprecated use #setDescription(String) instead
- */
public Field35B setDescriptionOfInstrument(String value) {
return setDescription(value);
}
- /**
- * @deprecated use #setDescription(String) instead
- */
public Field35B setDescriptionOfSecurity(String value) {
return setDescription(value);
}
@@ -829,16 +758,10 @@ public Field35B setDescriptionLine2(String component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setDescriptionLine2(String) instead
- */
public Field35B setDescriptionOfInstrumentLine2(String component4) {
return setDescriptionLine2(component4);
}
- /**
- * @deprecated use #setDescriptionLine2(String) instead
- */
public Field35B setDescriptionOfSecurityLine2(String component4) {
return setDescriptionLine2(component4);
}
@@ -864,16 +787,10 @@ public Field35B setDescriptionLine3(String component5) {
return setComponent5(component5);
}
- /**
- * @deprecated use #setDescriptionLine3(String) instead
- */
public Field35B setDescriptionOfInstrumentLine3(String component5) {
return setDescriptionLine3(component5);
}
- /**
- * @deprecated use #setDescriptionLine3(String) instead
- */
public Field35B setDescriptionOfSecurityLine3(String component5) {
return setDescriptionLine3(component5);
}
@@ -899,16 +816,10 @@ public Field35B setDescriptionLine4(String component6) {
return setComponent6(component6);
}
- /**
- * @deprecated use #setDescriptionLine4(String) instead
- */
public Field35B setDescriptionOfInstrumentLine4(String component6) {
return setDescriptionLine4(component6);
}
- /**
- * @deprecated use #setDescriptionLine4(String) instead
- */
public Field35B setDescriptionOfSecurityLine4(String component6) {
return setDescriptionLine4(component6);
}
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35C.java
index 41a94bea5..09976073d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,7 +55,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -63,7 +63,7 @@ public class Field35C extends Field implements Serializable {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -75,27 +75,6 @@ public class Field35C extends Field implements Serializable {
*/
public static final String F_35C = "35C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[/S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Identification Of Instrument subfield.
*/
@@ -223,16 +202,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35D.java
index 31c72753e..be2fea281 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -65,7 +65,7 @@ public class Field35D extends Field implements Serializable, DateContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -77,27 +77,6 @@ public class Field35D extends Field implements Serializable, DateContainer {
*/
public static final String F_35D = "35D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "E";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "E";
-
/**
* Component number for the Date subfield.
*/
@@ -216,16 +195,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "E";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35E.java
index f05f2fa1d..7d2ce3dc1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field35E extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field35E extends Field implements Serializable, MultiLineField {
*/
public static final String F_35E = "35E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-5";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSS";
-
/**
* Component number for the Narrative subfield.
*/
@@ -236,16 +215,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(6);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35G.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35G.java
index 970ece175..76c9cd671 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35G.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35G.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -66,7 +66,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -74,7 +74,7 @@ public class Field35G extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -86,27 +86,6 @@ public class Field35G extends Field implements Serializable, MultiLineField {
*/
public static final String F_35G = "35G";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-11";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSSSSSSSSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSSSSSSSSSS";
-
/**
* Component number for the Narrative subfield.
*/
@@ -266,16 +245,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(12);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSSSSSSSSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35H.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35H.java
index 95490ff5a..ae568ded1 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35H.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35H.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field35H extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field35H extends Field implements Serializable, AmountContainer {
*/
public static final String F_35H = "35H";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "[c]
@@ -429,15 +392,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 3).
* @return the Quantity from component 3
@@ -446,16 +400,6 @@ public String getQuantity() {
return getComponent3();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 3) as BigDecimal
@@ -466,33 +410,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent3AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Sign).
*
@@ -596,24 +513,6 @@ public Field35H setQuantity(java.lang.Number component3) {
return setComponent3(component3);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35H setAmount(String component3) {
- return setQuantity(component3);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35H setAmount(java.lang.Number component3) {
- return setQuantity(component3);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35L.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35L.java
index ef6638f73..883de0998 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35L.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35L.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field35L extends Field implements Serializable, MultiLineField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field35L extends Field implements Serializable, MultiLineField {
*/
public static final String F_35L = "35L";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "S[$S]0-3";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSS";
-
/**
* Component number for the Narrative subfield.
*/
@@ -226,16 +205,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(4);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSS";
- }
-
/**
* Returns the field component types pattern.
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35N.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35N.java
index a5eaec3fd..553e6360e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35N.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35N.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field35N extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,50 +79,17 @@ public class Field35N extends Field implements Serializable, AmountContainer {
*/
public static final String F_35N = "35N";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Type subfield.
*/
public static final Integer TYPE = 1;
- /**
- * @deprecated use #TYPE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 1;
/**
* Component number for the Quantity subfield.
*/
public static final Integer QUANTITY = 2;
- /**
- * @deprecated use #QUANTITY instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -244,16 +211,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -380,16 +337,6 @@ public String getType() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Type
- * @deprecated use #getType() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getType();
- }
/**
* Gets the component 2 (Quantity).
@@ -409,15 +356,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 2).
* @return the Quantity from component 2
@@ -426,16 +364,6 @@ public String getQuantity() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 2) as BigDecimal
@@ -446,33 +374,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Type).
*
@@ -494,15 +395,6 @@ public Field35N setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35N setCurrency(String component1) {
- return setType(component1);
- }
-
/**
* Set the component 2 (Quantity).
*
@@ -564,24 +456,6 @@ public Field35N setQuantity(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35N setAmount(String component2) {
- return setQuantity(component2);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35N setAmount(java.lang.Number component2) {
- return setQuantity(component2);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35S.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35S.java
index 2f2eed9e6..63c67703e 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35S.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35S.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field35S extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,50 +79,17 @@ public class Field35S extends Field implements Serializable, AmountContainer {
*/
public static final String F_35S = "35S";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SI";
-
/**
* Component number for the Type subfield.
*/
public static final Integer TYPE = 1;
- /**
- * @deprecated use #TYPE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CURRENCY = 1;
/**
* Component number for the Quantity subfield.
*/
public static final Integer QUANTITY = 2;
- /**
- * @deprecated use #QUANTITY instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -244,16 +211,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -380,16 +337,6 @@ public String getType() {
return getComponent1();
}
- /**
- * Alternative DEPRECATED method getter for field's Type
- * @deprecated use #getType() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCurrency() {
- return getType();
- }
/**
* Gets the component 2 (Quantity).
@@ -409,15 +356,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 2).
* @return the Quantity from component 2
@@ -426,16 +364,6 @@ public String getQuantity() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 2) as BigDecimal
@@ -446,33 +374,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Type).
*
@@ -494,15 +395,6 @@ public Field35S setType(String component1) {
return setComponent1(component1);
}
- /**
- * @deprecated use #setType(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35S setCurrency(String component1) {
- return setType(component1);
- }
-
/**
* Set the component 2 (Quantity).
*
@@ -564,24 +456,6 @@ public Field35S setQuantity(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35S setAmount(String component2) {
- return setQuantity(component2);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35S setAmount(java.lang.Number component2) {
- return setQuantity(component2);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field35U.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field35U.java
index aef5cf0c1..f0360f98d 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field35U.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field35U.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -60,7 +60,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -68,7 +68,7 @@ public class Field35U extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -80,27 +80,6 @@ public class Field35U extends Field implements Serializable, AmountContainer {
*/
public static final String F_35U = "35U";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "SN[S]";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SNS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SIS";
-
/**
* Component number for the Currency subfield.
*/
@@ -111,12 +90,6 @@ public class Field35U extends Field implements Serializable, AmountContainer {
*/
public static final Integer PRICE = 2;
- /**
- * @deprecated use #PRICE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 2;
/**
* Component number for the Period subfield.
@@ -250,16 +223,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SNS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -408,15 +371,6 @@ public java.math.BigDecimal getComponent2AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(2));
}
- /**
- * @deprecated use #getComponent2AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent2AsNumber() {
- return getComponent2AsBigDecimal();
- }
-
/**
* Gets the Price (component 2).
* @return the Price from component 2
@@ -425,16 +379,6 @@ public String getPrice() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Price
- * @deprecated use #getPrice() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getPrice();
- }
/**
* Get the Price (component 2) as BigDecimal
@@ -445,33 +389,6 @@ public java.math.BigDecimal getPriceAsBigDecimal() {
return getComponent2AsBigDecimal();
}
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getPriceAsNumber() {
- return getComponent2AsNumber();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getPriceAsBigDecimal();
- }
-
- /**
- * @deprecated use #getPriceAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getPriceAsNumber();
- }
-
/**
* Gets the component 3 (Period).
* @return the component 3
@@ -570,24 +487,6 @@ public Field35U setPrice(java.lang.Number component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setPrice(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35U setAmount(String component2) {
- return setPrice(component2);
- }
-
- /**
- * @deprecated use #setPrice(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field35U setAmount(java.lang.Number component2) {
- return setPrice(component2);
- }
-
/**
* Set the component 3 (Period).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field36.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field36.java
index d7361ba89..fe14f906f 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field36.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field36.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -66,7 +66,7 @@ public class Field36 extends Field implements Serializable, AmountContainer {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -78,27 +78,6 @@ public class Field36 extends Field implements Serializable, AmountContainer {
*/
public static final String F_36 = "36";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "I";
-
/**
* Component number for the Rate subfield.
*/
@@ -218,16 +197,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "N";
- }
-
/**
* Returns the field component types pattern.
*
@@ -349,15 +318,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Rate (component 1).
* @return the Rate from component 1
@@ -375,15 +335,6 @@ public java.math.BigDecimal getRateAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getRateAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRateAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Set the component 1 (Rate).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field36B.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field36B.java
index 5bafd901f..30af863e3 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field36B.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field36B.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -69,7 +69,7 @@ public class Field36B extends Field implements Serializable, AmountContainer, Ge
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -81,27 +81,6 @@ public class Field36B extends Field implements Serializable, AmountContainer, Ge
*/
public static final String F_36B = "36B";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S/N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSI";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -248,16 +227,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -417,15 +386,6 @@ public java.math.BigDecimal getComponent3AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- return getComponent3AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 3).
* @return the Quantity from component 3
@@ -443,15 +403,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent3AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field36C.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field36C.java
index 25e7268ee..fde103011 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field36C.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field36C.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -56,7 +56,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -64,7 +64,7 @@ public class Field36C extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -76,27 +76,6 @@ public class Field36C extends Field implements Serializable, GenericField {
*/
public static final String F_36C = "36C";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SS";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SS";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -107,12 +86,6 @@ public class Field36C extends Field implements Serializable, GenericField {
*/
public static final Integer QUANTITY_CODE = 2;
- /**
- * @deprecated use #QUANTITY_CODE instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer CODE = 2;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -231,16 +204,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(2);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SS";
- }
-
/**
* Returns the field component types pattern.
*
@@ -381,16 +344,6 @@ public String getQuantityCode() {
return getComponent2();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity Code
- * @deprecated use #getQuantityCode() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getCode() {
- return getQuantityCode();
- }
/**
* Set the component 1 (Qualifier).
@@ -434,15 +387,6 @@ public Field36C setQuantityCode(String component2) {
return setComponent2(component2);
}
- /**
- * @deprecated use #setQuantityCode(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field36C setCode(String component2) {
- return setQuantityCode(component2);
- }
-
/**
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field36D.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field36D.java
index f075cadfa..3478cccfe 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field36D.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field36D.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -67,7 +67,7 @@ public class Field36D extends Field implements Serializable, GenericField {
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -79,27 +79,6 @@ public class Field36D extends Field implements Serializable, GenericField {
*/
public static final String F_36D = "36D";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S/N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSN";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -240,16 +219,6 @@ public String getValueDisplay(int component, Locale locale) {
return getComponent(3);
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -409,16 +378,6 @@ public java.lang.Long getComponent3AsLong() {
return SwiftFormatUtils.getLong(getComponent(3));
}
- /**
- * @deprecated use #getComponent3AsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent3AsNumber() {
- Long l = getComponent3AsLong();
- return l != null ? new BigDecimal(l) : null;
- }
-
/**
* Gets the Quantity Of Digital Tokens (component 3).
* @return the Quantity Of Digital Tokens from component 3
@@ -436,15 +395,6 @@ public java.lang.Long getQuantityOfDigitalTokensAsLong() {
return getComponent3AsLong();
}
- /**
- * @deprecated use #getQuantityOfDigitalTokensAsLong() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityOfDigitalTokensAsNumber() {
- return getComponent3AsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field36E.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field36E.java
index 4a2b84a28..8c3f5c515 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field36E.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field36E.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -62,7 +62,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -70,7 +70,7 @@ public class Field36E extends Field implements Serializable, AmountContainer, Ge
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -82,27 +82,6 @@ public class Field36E extends Field implements Serializable, AmountContainer, Ge
*/
public static final String F_36E = "36E";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = ":S//S/[c]N";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String COMPONENTS_PATTERN = "SSSN";
-
- /**
- * @deprecated Use {@link #typesPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String TYPES_PATTERN = "SSSI";
-
/**
* Component number for the Qualifier subfield.
*/
@@ -123,12 +102,6 @@ public class Field36E extends Field implements Serializable, AmountContainer, Ge
*/
public static final Integer QUANTITY = 4;
- /**
- * @deprecated use #QUANTITY instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final Integer AMOUNT = 4;
/**
* Default constructor. Creates a new field setting all components to null.
@@ -268,16 +241,6 @@ public String getValueDisplay(int component, Locale locale) {
return null;
}
- /**
- * @deprecated Use {@link #typesPattern()} instead.
- */
- @Override
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String componentsPattern() {
- return "SSSN";
- }
-
/**
* Returns the field component types pattern.
*
@@ -461,15 +424,6 @@ public java.math.BigDecimal getComponent4AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(4));
}
- /**
- * @deprecated use #getComponent4AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent4AsNumber() {
- return getComponent4AsBigDecimal();
- }
-
/**
* Gets the Quantity (component 4).
* @return the Quantity from component 4
@@ -478,16 +432,6 @@ public String getQuantity() {
return getComponent4();
}
- /**
- * Alternative DEPRECATED method getter for field's Quantity
- * @deprecated use #getQuantity() instead
- * @since 9.2.7
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public String getAmount() {
- return getQuantity();
- }
/**
* Get the Quantity (component 4) as BigDecimal
@@ -498,33 +442,6 @@ public java.math.BigDecimal getQuantityAsBigDecimal() {
return getComponent4AsBigDecimal();
}
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getQuantityAsNumber() {
- return getComponent4AsNumber();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.math.BigDecimal getAmountAsBigDecimal() {
- return getQuantityAsBigDecimal();
- }
-
- /**
- * @deprecated use #getQuantityAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getAmountAsNumber() {
- return getQuantityAsNumber();
- }
-
/**
* Set the component 1 (Qualifier).
*
@@ -649,24 +566,6 @@ public Field36E setQuantity(java.lang.Number component4) {
return setComponent4(component4);
}
- /**
- * @deprecated use #setQuantity(String) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field36E setAmount(String component4) {
- return setQuantity(component4);
- }
-
- /**
- * @deprecated use #setQuantity(java.math.BigDecimal) instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public Field36E setAmount(java.lang.Number component4) {
- return setQuantity(component4);
- }
-
/**
* Returns the list of all NON-NULL amounts as BigDecimal
diff --git a/src/generated/java/com/prowidesoftware/swift/model/field/Field37A.java b/src/generated/java/com/prowidesoftware/swift/model/field/Field37A.java
index 98081474c..29554ec4c 100644
--- a/src/generated/java/com/prowidesoftware/swift/model/field/Field37A.java
+++ b/src/generated/java/com/prowidesoftware/swift/model/field/Field37A.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2006-2023 Prowide
+ * Copyright 2006-2024 Prowide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -65,7 +65,7 @@
*
*
*
- * This class complies with standard release SRU2023
+ * This class complies with standard release SRU2024
*/
@SuppressWarnings("unused")
@Generated
@@ -73,7 +73,7 @@ public class Field37A extends Field implements Serializable, AmountContainer, Da
/**
* Constant identifying the SRU to which this class belongs to.
*/
- public static final int SRU = 2023;
+ public static final int SRU = 2024;
private static final long serialVersionUID = 1L;
/**
@@ -85,27 +85,6 @@ public class Field37A extends Field implements Serializable, AmountContainer, Da
*/
public static final String F_37A = "37A";
- /**
- * @deprecated Use {@link #parserPattern()} method instead.
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public static final String PARSER_PATTERN = "N[//
@@ -470,15 +421,6 @@ public java.math.BigDecimal getComponent1AsBigDecimal() {
return SwiftFormatUtils.getBigDecimal(getComponent(1));
}
- /**
- * @deprecated use #getComponent1AsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getComponent1AsNumber() {
- return getComponent1AsBigDecimal();
- }
-
/**
* Gets the Rate (component 1).
* @return the Rate from component 1
@@ -496,15 +438,6 @@ public java.math.BigDecimal getRateAsBigDecimal() {
return getComponent1AsBigDecimal();
}
- /**
- * @deprecated use #getRateAsBigDecimal() instead
- */
- @Deprecated
- @ProwideDeprecated(phase4 = TargetYear.SRU2024)
- public java.lang.Number getRateAsNumber() {
- return getComponent1AsNumber();
- }
-
/**
* Gets the component 2 (End Date).
* @return the component 2
@@ -530,16 +463,6 @@ public String getEndDate() {
return getComponent2();
}
- /**
- * Alternative
+ *
+ *
+ * String
+ *
+ *
+ * 4!c
S
S
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 14P");
+ }
+ //default format (as is)
+ return getComponent(1);
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 1;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List
- *
*
* String
String
String
- *
*
* <CC>[/65x]
S[/S]
SS
4!c
S
S
+ *
+ *
+ * String
+ *
+ *
+ * 4!c
S
S
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 14R");
+ }
+ //default format (as is)
+ return getComponent(1);
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 1;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List
- *
*
* String
Long
- *
*
* 4!c
2n
S
S
N
+ *
+ *
+ * String
+ *
+ *
+ * 4!c
S
S
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 16W");
+ }
+ //default format (as is)
+ return getComponent(1);
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 1;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List
- *
*
* 6a
12a
S
S
- *
*
* 6a
12a
S
S
+ *
+ *
+ * String
+ *
+ *
+ * 4!c
S
S
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 29Q");
+ }
+ //default format (as is)
+ return getComponent(1);
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 1;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List
+ *
+ *
+ * String
+ *
+ *
+ * 4!c
S
S
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component != 1) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 29W");
+ }
+ //default format (as is)
+ return getComponent(1);
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 1;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List
+ *
+ *
+ * Calendar
Calendar
+ *
+ *
+ * <DATE4>/<DATE4>
S/S
DD
new Tag(NAME, value)
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag tag(final String value) {
+ return new Tag(NAME, value);
+ }
+
+ /**
+ * Create a Tag with this field name and an empty string as value.
+ * Shorthand for new Tag(NAME, "")
+ * @see #NAME
+ * @since 7.5
+ */
+ public static Tag emptyTag() {
+ return new Tag(NAME, "");
+ }
+
+
+ /**
+ * Parses the parameter value into the internal components structure.
+ *
+ *
+ *
+ * @param component number of the component to display
+ * @param locale optional locale to format date and amounts, if null, the default locale is used
+ * @return formatted component value or null if component number is invalid or not present
+ * @throws IllegalArgumentException if component number is invalid for the field
+ * @since 7.8
+ */
+ @Override
+ public String getValueDisplay(int component, Locale locale) {
+ if (component < 1 || component > 2) {
+ throw new IllegalArgumentException("invalid component number " + component + " for field 30K");
+ }
+ if (component == 1) {
+ //date: [YY]YYMMDD
+ java.text.DateFormat f = java.text.DateFormat.getDateInstance(java.text.DateFormat.DEFAULT, notNull(locale));
+ java.util.Calendar cal = getComponent1AsCalendar();
+ if (cal != null) {
+ return f.format(cal.getTime());
+ }
+ }
+ // This is the last component, return directly without `if`
+ //date: [YY]YYMMDD
+ java.text.DateFormat f = java.text.DateFormat.getDateInstance(java.text.DateFormat.DEFAULT, notNull(locale));
+ java.util.Calendar cal = getComponent2AsCalendar();
+ if (cal != null) {
+ return f.format(cal.getTime());
+ }
+ return null;
+ }
+
+ /**
+ * Returns the field component types pattern.
+ *
+ * Being the field's value conformed by a composition of one or several
+ * internal component values, the field may be present in a message with
+ * a proper value but with some of its internal components not set.
+ *
+ * @param component component number, first component of a field is referenced as 1
+ * @return true if the component is optional for this field, false otherwise
+ */
+ @Override
+ public boolean isOptional(int component) {
+ return false;
+ }
+
+ /**
+ * Returns true if the field is a GENERIC FIELD as specified by the standard.
+ * @return true if the field is generic, false otherwise
+ */
+ @Override
+ public boolean isGeneric() {
+ return false;
+ }
+
+ /**
+ * Returns the defined amount of components.
+ * This is not the amount of components present in the field instance, but the total amount of components
+ * that this field accepts as defined.
+ * @since 7.7
+ */
+ @Override
+ public int componentsSize() {
+ return 2;
+ }
+
+ /**
+ * Returns english label for components.
+ *
+ * The index in the list is in sync with specific field component structure.
+ * @see #getComponentLabel(int)
+ * @since 7.8.4
+ */
+ @Override
+ public List