Skip to content

Commit 7e479f6

Browse files
Merge pull request #200 from regulaforensics/develop
Develop -> Stable
2 parents 275d0d4 + 560be04 commit 7e479f6

File tree

5 files changed

+32
-34
lines changed

5 files changed

+32
-34
lines changed

client/src/main/generated/com/regula/documentreader/webclient/model/RfidAccessControlInfo.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class RfidAccessControlInfo {
5959

6060
@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
6161
@javax.annotation.Nonnull
62-
private List<ParsingErrorCodes> notifications;
62+
private List<Integer> notifications;
6363

6464
public static final String SERIALIZED_NAME_ACCESS_CONTROL_OPTIONS = "AccessControlOptions";
6565

@@ -128,12 +128,12 @@ public void setActiveOptionIdx(@javax.annotation.Nullable BigDecimal activeOptio
128128
}
129129

130130
public RfidAccessControlInfo notifications(
131-
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
131+
@javax.annotation.Nonnull List<Integer> notifications) {
132132
this.notifications = notifications;
133133
return this;
134134
}
135135

136-
public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notificationsItem) {
136+
public RfidAccessControlInfo addNotificationsItem(Integer notificationsItem) {
137137
if (this.notifications == null) {
138138
this.notifications = new ArrayList<>();
139139
}
@@ -142,16 +142,17 @@ public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notification
142142
}
143143

144144
/**
145-
* List of remarks arisen during the procedure.
145+
* List of remarks arisen during the procedure. Can be ParsingErrorCodes or
146+
* ParsingNotificationCodes enum.
146147
*
147148
* @return notifications
148149
*/
149150
@javax.annotation.Nonnull
150-
public List<ParsingErrorCodes> getNotifications() {
151+
public List<Integer> getNotifications() {
151152
return notifications;
152153
}
153154

154-
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
155+
public void setNotifications(@javax.annotation.Nonnull List<Integer> notifications) {
155156
this.notifications = notifications;
156157
}
157158

client/src/main/generated/com/regula/documentreader/webclient/model/RfidCertificateEx.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public class RfidCertificateEx {
9191

9292
@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
9393
@javax.annotation.Nonnull
94-
private List<ParsingErrorCodes> notifications;
94+
private List<Integer> notifications;
9595

9696
public static final String SERIALIZED_NAME_ORIGIN = "Origin";
9797

@@ -281,13 +281,12 @@ public void setExtensions(@javax.annotation.Nonnull List<RfidPkiExtension> exten
281281
this.extensions = extensions;
282282
}
283283

284-
public RfidCertificateEx notifications(
285-
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
284+
public RfidCertificateEx notifications(@javax.annotation.Nonnull List<Integer> notifications) {
286285
this.notifications = notifications;
287286
return this;
288287
}
289288

290-
public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
289+
public RfidCertificateEx addNotificationsItem(Integer notificationsItem) {
291290
if (this.notifications == null) {
292291
this.notifications = new ArrayList<>();
293292
}
@@ -297,16 +296,16 @@ public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsIte
297296

298297
/**
299298
* List of remarks arisen during the analysis of the certificate data structure and its validity
300-
* verification.
299+
* verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
301300
*
302301
* @return notifications
303302
*/
304303
@javax.annotation.Nonnull
305-
public List<ParsingErrorCodes> getNotifications() {
304+
public List<Integer> getNotifications() {
306305
return notifications;
307306
}
308307

309-
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
308+
public void setNotifications(@javax.annotation.Nonnull List<Integer> notifications) {
310309
this.notifications = notifications;
311310
}
312311

client/src/main/generated/com/regula/documentreader/webclient/model/RfidDataFile.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class RfidDataFile {
7878

7979
@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
8080
@javax.annotation.Nullable
81-
private List<ParsingErrorCodes> notifications;
81+
private List<Integer> notifications;
8282

8383
public static final String SERIALIZED_NAME_DOC_FIELDS_TEXT = "DocFields_Text";
8484

@@ -228,13 +228,12 @@ public void setPaStatus(@javax.annotation.Nullable RFIDErrorCodes paStatus) {
228228
this.paStatus = paStatus;
229229
}
230230

231-
public RfidDataFile notifications(
232-
@javax.annotation.Nullable List<ParsingErrorCodes> notifications) {
231+
public RfidDataFile notifications(@javax.annotation.Nullable List<Integer> notifications) {
233232
this.notifications = notifications;
234233
return this;
235234
}
236235

237-
public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) {
236+
public RfidDataFile addNotificationsItem(Integer notificationsItem) {
238237
if (this.notifications == null) {
239238
this.notifications = new ArrayList<>();
240239
}
@@ -244,16 +243,16 @@ public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) {
244243

245244
/**
246245
* List of remarks arisen when reading data from the memory of the chip and analysing their
247-
* ASN.1-structure.
246+
* ASN.1-structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
248247
*
249248
* @return notifications
250249
*/
251250
@javax.annotation.Nullable
252-
public List<ParsingErrorCodes> getNotifications() {
251+
public List<Integer> getNotifications() {
253252
return notifications;
254253
}
255254

256-
public void setNotifications(@javax.annotation.Nullable List<ParsingErrorCodes> notifications) {
255+
public void setNotifications(@javax.annotation.Nullable List<Integer> notifications) {
257256
this.notifications = notifications;
258257
}
259258

client/src/main/generated/com/regula/documentreader/webclient/model/RfidSecurityObject.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class RfidSecurityObject {
6060

6161
@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
6262
@javax.annotation.Nonnull
63-
private List<ParsingErrorCodes> notifications;
63+
private List<Integer> notifications;
6464

6565
public static final String SERIALIZED_NAME_SIGNER_INFOS = "SignerInfos";
6666

@@ -127,13 +127,12 @@ public void setFileReference(@javax.annotation.Nonnull BigDecimal fileReference)
127127
this.fileReference = fileReference;
128128
}
129129

130-
public RfidSecurityObject notifications(
131-
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
130+
public RfidSecurityObject notifications(@javax.annotation.Nonnull List<Integer> notifications) {
132131
this.notifications = notifications;
133132
return this;
134133
}
135134

136-
public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsItem) {
135+
public RfidSecurityObject addNotificationsItem(Integer notificationsItem) {
137136
if (this.notifications == null) {
138137
this.notifications = new ArrayList<>();
139138
}
@@ -142,16 +141,17 @@ public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsIt
142141
}
143142

144143
/**
145-
* List of remarks arisen during the analysis of SO data structure.
144+
* List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or
145+
* ParsingNotificationCodes enum.
146146
*
147147
* @return notifications
148148
*/
149149
@javax.annotation.Nonnull
150-
public List<ParsingErrorCodes> getNotifications() {
150+
public List<Integer> getNotifications() {
151151
return notifications;
152152
}
153153

154-
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
154+
public void setNotifications(@javax.annotation.Nonnull List<Integer> notifications) {
155155
this.notifications = notifications;
156156
}
157157

client/src/main/generated/com/regula/documentreader/webclient/model/RfidSignerInfoEx.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public class RfidSignerInfoEx {
109109

110110
@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
111111
@javax.annotation.Nonnull
112-
private List<ParsingErrorCodes> notifications;
112+
private List<Integer> notifications;
113113

114114
public RfidSignerInfoEx() {}
115115

@@ -344,13 +344,12 @@ public void setDataToHash(@javax.annotation.Nonnull String dataToHash) {
344344
this.dataToHash = dataToHash;
345345
}
346346

347-
public RfidSignerInfoEx notifications(
348-
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
347+
public RfidSignerInfoEx notifications(@javax.annotation.Nonnull List<Integer> notifications) {
349348
this.notifications = notifications;
350349
return this;
351350
}
352351

353-
public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
352+
public RfidSignerInfoEx addNotificationsItem(Integer notificationsItem) {
354353
if (this.notifications == null) {
355354
this.notifications = new ArrayList<>();
356355
}
@@ -359,16 +358,16 @@ public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem
359358
}
360359

361360
/**
362-
* Get notifications
361+
* Can be ParsingErrorCodes or ParsingNotificationCodes enum.
363362
*
364363
* @return notifications
365364
*/
366365
@javax.annotation.Nonnull
367-
public List<ParsingErrorCodes> getNotifications() {
366+
public List<Integer> getNotifications() {
368367
return notifications;
369368
}
370369

371-
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
370+
public void setNotifications(@javax.annotation.Nonnull List<Integer> notifications) {
372371
this.notifications = notifications;
373372
}
374373

0 commit comments

Comments
 (0)