diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/ParsedData.java b/client/src/main/generated/com/regula/documentreader/webclient/model/ParsedData.java index 846ff27..073df69 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/ParsedData.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/ParsedData.java @@ -37,17 +37,17 @@ public class ParsedData { @SerializedName(SERIALIZED_NAME_PARSING_NOTIFICATIONS) @javax.annotation.Nullable - private List parsingNotifications; + private List parsingNotifications; public ParsedData() {} public ParsedData parsingNotifications( - @javax.annotation.Nullable List parsingNotifications) { + @javax.annotation.Nullable List parsingNotifications) { this.parsingNotifications = parsingNotifications; return this; } - public ParsedData addParsingNotificationsItem(Long parsingNotificationsItem) { + public ParsedData addParsingNotificationsItem(ParsingNotificationCodes parsingNotificationsItem) { if (this.parsingNotifications == null) { this.parsingNotifications = new ArrayList<>(); } @@ -61,11 +61,12 @@ public ParsedData addParsingNotificationsItem(Long parsingNotificationsItem) { * @return parsingNotifications */ @javax.annotation.Nullable - public List getParsingNotifications() { + public List getParsingNotifications() { return parsingNotifications; } - public void setParsingNotifications(@javax.annotation.Nullable List parsingNotifications) { + public void setParsingNotifications( + @javax.annotation.Nullable List parsingNotifications) { this.parsingNotifications = parsingNotifications; } diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlInfo.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlInfo.java index 75c7499..8cf89c8 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlInfo.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlInfo.java @@ -59,7 +59,7 @@ public class RfidAccessControlInfo { @SerializedName(SERIALIZED_NAME_NOTIFICATIONS) @javax.annotation.Nonnull - private List notifications; + private List notifications; public static final String SERIALIZED_NAME_ACCESS_CONTROL_OPTIONS = "AccessControlOptions"; @@ -128,12 +128,12 @@ public void setActiveOptionIdx(@javax.annotation.Nullable BigDecimal activeOptio } public RfidAccessControlInfo notifications( - @javax.annotation.Nonnull List notifications) { + @javax.annotation.Nonnull List notifications) { this.notifications = notifications; return this; } - public RfidAccessControlInfo addNotificationsItem(ParsingNotificationCodes notificationsItem) { + public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notificationsItem) { if (this.notifications == null) { this.notifications = new ArrayList<>(); } @@ -147,12 +147,11 @@ public RfidAccessControlInfo addNotificationsItem(ParsingNotificationCodes notif * @return notifications */ @javax.annotation.Nonnull - public List getNotifications() { + public List getNotifications() { return notifications; } - public void setNotifications( - @javax.annotation.Nonnull List notifications) { + public void setNotifications(@javax.annotation.Nonnull List notifications) { this.notifications = notifications; } diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateEx.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateEx.java index 7b256a0..1603b58 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateEx.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateEx.java @@ -91,7 +91,7 @@ public class RfidCertificateEx { @SerializedName(SERIALIZED_NAME_NOTIFICATIONS) @javax.annotation.Nonnull - private List notifications; + private List notifications; public static final String SERIALIZED_NAME_ORIGIN = "Origin"; @@ -282,12 +282,12 @@ public void setExtensions(@javax.annotation.Nonnull List exten } public RfidCertificateEx notifications( - @javax.annotation.Nonnull List notifications) { + @javax.annotation.Nonnull List notifications) { this.notifications = notifications; return this; } - public RfidCertificateEx addNotificationsItem(ParsingNotificationCodes notificationsItem) { + public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsItem) { if (this.notifications == null) { this.notifications = new ArrayList<>(); } @@ -302,12 +302,11 @@ public RfidCertificateEx addNotificationsItem(ParsingNotificationCodes notificat * @return notifications */ @javax.annotation.Nonnull - public List getNotifications() { + public List getNotifications() { return notifications; } - public void setNotifications( - @javax.annotation.Nonnull List notifications) { + public void setNotifications(@javax.annotation.Nonnull List notifications) { this.notifications = notifications; } diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java index 9feac26..ebc40f8 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java @@ -78,7 +78,7 @@ public class RfidDataFile { @SerializedName(SERIALIZED_NAME_NOTIFICATIONS) @javax.annotation.Nullable - private List notifications; + private List notifications; public static final String SERIALIZED_NAME_DOC_FIELDS_TEXT = "DocFields_Text"; @@ -229,12 +229,12 @@ public void setPaStatus(@javax.annotation.Nullable RFIDErrorCodes paStatus) { } public RfidDataFile notifications( - @javax.annotation.Nullable List notifications) { + @javax.annotation.Nullable List notifications) { this.notifications = notifications; return this; } - public RfidDataFile addNotificationsItem(ParsingNotificationCodes notificationsItem) { + public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) { if (this.notifications == null) { this.notifications = new ArrayList<>(); } @@ -249,12 +249,11 @@ public RfidDataFile addNotificationsItem(ParsingNotificationCodes notificationsI * @return notifications */ @javax.annotation.Nullable - public List getNotifications() { + public List getNotifications() { return notifications; } - public void setNotifications( - @javax.annotation.Nullable List notifications) { + public void setNotifications(@javax.annotation.Nullable List notifications) { this.notifications = notifications; } diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSecurityObject.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSecurityObject.java index 2e27337..4221caf 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSecurityObject.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSecurityObject.java @@ -60,7 +60,7 @@ public class RfidSecurityObject { @SerializedName(SERIALIZED_NAME_NOTIFICATIONS) @javax.annotation.Nonnull - private List notifications; + private List notifications; public static final String SERIALIZED_NAME_SIGNER_INFOS = "SignerInfos"; @@ -128,12 +128,12 @@ public void setFileReference(@javax.annotation.Nonnull BigDecimal fileReference) } public RfidSecurityObject notifications( - @javax.annotation.Nonnull List notifications) { + @javax.annotation.Nonnull List notifications) { this.notifications = notifications; return this; } - public RfidSecurityObject addNotificationsItem(ParsingNotificationCodes notificationsItem) { + public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsItem) { if (this.notifications == null) { this.notifications = new ArrayList<>(); } @@ -147,12 +147,11 @@ public RfidSecurityObject addNotificationsItem(ParsingNotificationCodes notifica * @return notifications */ @javax.annotation.Nonnull - public List getNotifications() { + public List getNotifications() { return notifications; } - public void setNotifications( - @javax.annotation.Nonnull List notifications) { + public void setNotifications(@javax.annotation.Nonnull List notifications) { this.notifications = notifications; } diff --git a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSignerInfoEx.java b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSignerInfoEx.java index 88a42a7..b917122 100644 --- a/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSignerInfoEx.java +++ b/client/src/main/generated/com/regula/documentreader/webclient/model/RfidSignerInfoEx.java @@ -109,7 +109,7 @@ public class RfidSignerInfoEx { @SerializedName(SERIALIZED_NAME_NOTIFICATIONS) @javax.annotation.Nonnull - private List notifications; + private List notifications; public RfidSignerInfoEx() {} @@ -345,12 +345,12 @@ public void setDataToHash(@javax.annotation.Nonnull String dataToHash) { } public RfidSignerInfoEx notifications( - @javax.annotation.Nonnull List notifications) { + @javax.annotation.Nonnull List notifications) { this.notifications = notifications; return this; } - public RfidSignerInfoEx addNotificationsItem(ParsingNotificationCodes notificationsItem) { + public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem) { if (this.notifications == null) { this.notifications = new ArrayList<>(); } @@ -364,12 +364,11 @@ public RfidSignerInfoEx addNotificationsItem(ParsingNotificationCodes notificati * @return notifications */ @javax.annotation.Nonnull - public List getNotifications() { + public List getNotifications() { return notifications; } - public void setNotifications( - @javax.annotation.Nonnull List notifications) { + public void setNotifications(@javax.annotation.Nonnull List notifications) { this.notifications = notifications; }