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 @@ -59,7 +59,7 @@ public class RfidAccessControlInfo {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<ParsingErrorCodes> notifications;
private List<Integer> 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<ParsingErrorCodes> notifications) {
@javax.annotation.Nonnull List<Integer> notifications) {
this.notifications = notifications;
return this;
}

public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notificationsItem) {
public RfidAccessControlInfo addNotificationsItem(Integer notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -142,16 +142,17 @@ public RfidAccessControlInfo addNotificationsItem(ParsingErrorCodes notification
}

/**
* List of remarks arisen during the procedure.
* List of remarks arisen during the procedure. Can be ParsingErrorCodes or
* ParsingNotificationCodes enum.
*
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingErrorCodes> getNotifications() {
public List<Integer> getNotifications() {
return notifications;
}

public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<Integer> 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<ParsingErrorCodes> notifications;
private List<Integer> notifications;

public static final String SERIALIZED_NAME_ORIGIN = "Origin";

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

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

public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
public RfidCertificateEx addNotificationsItem(Integer notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -297,16 +296,16 @@ public RfidCertificateEx addNotificationsItem(ParsingErrorCodes notificationsIte

/**
* List of remarks arisen during the analysis of the certificate data structure and its validity
* verification.
* verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
*
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingErrorCodes> getNotifications() {
public List<Integer> getNotifications() {
return notifications;
}

public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<Integer> 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<ParsingErrorCodes> notifications;
private List<Integer> notifications;

public static final String SERIALIZED_NAME_DOC_FIELDS_TEXT = "DocFields_Text";

Expand Down Expand Up @@ -228,13 +228,12 @@ public void setPaStatus(@javax.annotation.Nullable RFIDErrorCodes paStatus) {
this.paStatus = paStatus;
}

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

public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) {
public RfidDataFile addNotificationsItem(Integer notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -244,16 +243,16 @@ public RfidDataFile addNotificationsItem(ParsingErrorCodes notificationsItem) {

/**
* List of remarks arisen when reading data from the memory of the chip and analysing their
* ASN.1-structure.
* ASN.1-structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
*
* @return notifications
*/
@javax.annotation.Nullable
public List<ParsingErrorCodes> getNotifications() {
public List<Integer> getNotifications() {
return notifications;
}

public void setNotifications(@javax.annotation.Nullable List<ParsingErrorCodes> notifications) {
public void setNotifications(@javax.annotation.Nullable List<Integer> 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<ParsingErrorCodes> notifications;
private List<Integer> notifications;

public static final String SERIALIZED_NAME_SIGNER_INFOS = "SignerInfos";

Expand Down Expand Up @@ -127,13 +127,12 @@ public void setFileReference(@javax.annotation.Nonnull BigDecimal fileReference)
this.fileReference = fileReference;
}

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

public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsItem) {
public RfidSecurityObject addNotificationsItem(Integer notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -142,16 +141,17 @@ public RfidSecurityObject addNotificationsItem(ParsingErrorCodes notificationsIt
}

/**
* List of remarks arisen during the analysis of SO data structure.
* List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or
* ParsingNotificationCodes enum.
*
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingErrorCodes> getNotifications() {
public List<Integer> getNotifications() {
return notifications;
}

public void setNotifications(@javax.annotation.Nonnull List<ParsingErrorCodes> notifications) {
public void setNotifications(@javax.annotation.Nonnull List<Integer> 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<ParsingErrorCodes> notifications;
private List<Integer> notifications;

public RfidSignerInfoEx() {}

Expand Down Expand Up @@ -344,13 +344,12 @@ public void setDataToHash(@javax.annotation.Nonnull String dataToHash) {
this.dataToHash = dataToHash;
}

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

public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem) {
public RfidSignerInfoEx addNotificationsItem(Integer notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -359,16 +358,16 @@ public RfidSignerInfoEx addNotificationsItem(ParsingErrorCodes notificationsItem
}

/**
* Get notifications
* Can be ParsingErrorCodes or ParsingNotificationCodes enum.
*
* @return notifications
*/
@javax.annotation.Nonnull
public List<ParsingErrorCodes> getNotifications() {
public List<Integer> getNotifications() {
return notifications;
}

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

Expand Down