Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ public class ParsedData {

@SerializedName(SERIALIZED_NAME_PARSING_NOTIFICATIONS)
@javax.annotation.Nullable
private List<Long> parsingNotifications;
private List<ParsingNotificationCodes> parsingNotifications;

public ParsedData() {}

public ParsedData parsingNotifications(
@javax.annotation.Nullable List<Long> parsingNotifications) {
@javax.annotation.Nullable List<ParsingNotificationCodes> parsingNotifications) {
this.parsingNotifications = parsingNotifications;
return this;
}

public ParsedData addParsingNotificationsItem(Long parsingNotificationsItem) {
public ParsedData addParsingNotificationsItem(ParsingNotificationCodes parsingNotificationsItem) {
if (this.parsingNotifications == null) {
this.parsingNotifications = new ArrayList<>();
}
Expand All @@ -61,11 +61,12 @@ public ParsedData addParsingNotificationsItem(Long parsingNotificationsItem) {
* @return parsingNotifications
*/
@javax.annotation.Nullable
public List<Long> getParsingNotifications() {
public List<ParsingNotificationCodes> getParsingNotifications() {
return parsingNotifications;
}

public void setParsingNotifications(@javax.annotation.Nullable List<Long> parsingNotifications) {
public void setParsingNotifications(
@javax.annotation.Nullable List<ParsingNotificationCodes> parsingNotifications) {
this.parsingNotifications = parsingNotifications;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class RfidAccessControlInfo {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<ParsingNotificationCodes> notifications;
private List<ParsingErrorCodes> notifications;

public static final String SERIALIZED_NAME_ACCESS_CONTROL_OPTIONS = "AccessControlOptions";

Expand Down Expand Up @@ -128,12 +128,12 @@ public void setActiveOptionIdx(@javax.annotation.Nullable BigDecimal activeOptio
}

public RfidAccessControlInfo notifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
return this;
}

public RfidAccessControlInfo addNotificationsItem(ParsingNotificationCodes notificationsItem) {
public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -147,12 +147,11 @@ public RfidAccessControlInfo addNotificationsItem(ParsingNotificationCodes notif
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingNotificationCodes> getNotifications() {
public List<ParsingErrorCodes> getNotifications() {
return notifications;
}

public void setNotifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class RfidCertificateEx {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<ParsingNotificationCodes> notifications;
private List<ParsingErrorCodes> notifications;

public static final String SERIALIZED_NAME_ORIGIN = "Origin";

Expand Down Expand Up @@ -282,12 +282,12 @@ public void setExtensions(@javax.annotation.Nonnull List<RfidPkiExtension> exten
}

public RfidCertificateEx notifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
return this;
}

public RfidCertificateEx addNotificationsItem(ParsingNotificationCodes notificationsItem) {
public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -302,12 +302,11 @@ public RfidCertificateEx addNotificationsItem(ParsingNotificationCodes notificat
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingNotificationCodes> getNotifications() {
public List<ParsingErrorCodes> getNotifications() {
return notifications;
}

public void setNotifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class RfidDataFile {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nullable
private List<ParsingNotificationCodes> notifications;
private List<ParsingErrorCodes> notifications;

public static final String SERIALIZED_NAME_DOC_FIELDS_TEXT = "DocFields_Text";

Expand Down Expand Up @@ -229,12 +229,12 @@ public void setPaStatus(@javax.annotation.Nullable RFIDErrorCodes paStatus) {
}

public RfidDataFile notifications(
@javax.annotation.Nullable List<ParsingNotificationCodes> notifications) {
@javax.annotation.Nullable List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
return this;
}

public RfidDataFile addNotificationsItem(ParsingNotificationCodes notificationsItem) {
public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -249,12 +249,11 @@ public RfidDataFile addNotificationsItem(ParsingNotificationCodes notificationsI
* @return notifications
*/
@javax.annotation.Nullable
public List<ParsingNotificationCodes> getNotifications() {
public List<ParsingErrorCodes> getNotifications() {
return notifications;
}

public void setNotifications(
@javax.annotation.Nullable List<ParsingNotificationCodes> notifications) {
public void setNotifications(@javax.annotation.Nullable List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class RfidSecurityObject {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<ParsingNotificationCodes> notifications;
private List<ParsingErrorCodes> notifications;

public static final String SERIALIZED_NAME_SIGNER_INFOS = "SignerInfos";

Expand Down Expand Up @@ -128,12 +128,12 @@ public void setFileReference(@javax.annotation.Nonnull BigDecimal fileReference)
}

public RfidSecurityObject notifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
return this;
}

public RfidSecurityObject addNotificationsItem(ParsingNotificationCodes notificationsItem) {
public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -147,12 +147,11 @@ public RfidSecurityObject addNotificationsItem(ParsingNotificationCodes notifica
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingNotificationCodes> getNotifications() {
public List<ParsingErrorCodes> getNotifications() {
return notifications;
}

public void setNotifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public class RfidSignerInfoEx {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<ParsingNotificationCodes> notifications;
private List<ParsingErrorCodes> notifications;

public RfidSignerInfoEx() {}

Expand Down Expand Up @@ -345,12 +345,12 @@ public void setDataToHash(@javax.annotation.Nonnull String dataToHash) {
}

public RfidSignerInfoEx notifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
return this;
}

public RfidSignerInfoEx addNotificationsItem(ParsingNotificationCodes notificationsItem) {
public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -364,12 +364,11 @@ public RfidSignerInfoEx addNotificationsItem(ParsingNotificationCodes notificati
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingNotificationCodes> getNotifications() {
public List<ParsingErrorCodes> getNotifications() {
return notifications;
}

public void setNotifications(
@javax.annotation.Nonnull List<ParsingNotificationCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
this.notifications = notifications;
}

Expand Down