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 @@ -142,17 +142,8 @@ public enum Result {
/** Digital Travel Credential data */
DTC_VC(109),

/** Contains mDL device raw response */
MDL_DEVICE_RAW_RESPONSE(120),

/** Contains mDL device parsed response */
MDL_DEVICE_PARSED_RESPONSE(121),

/** Contains mDL server raw response */
MDL_SERVER_RAW_RESPONSE(122),

/** Contains mDL server parsed response */
MDL_SERVER_PARSED_RESPONSE(123),
/** Contains mDL parsed response */
MDL_PARSED_RESPONSE(121),

/** Contains result of VDS NC */
VDS_NC(124),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class RfidAccessControlInfo {

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<Integer> notifications;
private List<Long> notifications;

public static final String SERIALIZED_NAME_ACCESS_CONTROL_OPTIONS = "AccessControlOptions";

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

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

public RfidAccessControlInfo addNotificationsItem(Integer notificationsItem) {
public RfidAccessControlInfo addNotificationsItem(Long notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -149,11 +148,11 @@ public RfidAccessControlInfo addNotificationsItem(Integer notificationsItem) {
* @return notifications
*/
@javax.annotation.Nonnull
public List<Integer> getNotifications() {
public List<Long> getNotifications() {
return notifications;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nonnull
private List<Integer> notifications;
private List<Long> notifications;

public RfidSignerInfoEx() {}

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

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

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

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

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

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nullable
private List<Integer> notifications;
private List<Long> notifications;

public static final String SERIALIZED_NAME_SIGNATURE = "Signature";

Expand Down Expand Up @@ -266,12 +266,12 @@ public void setIssuingCountry(@javax.annotation.Nullable String issuingCountry)
this.issuingCountry = issuingCountry;
}

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

public VDSData addNotificationsItem(Integer notificationsItem) {
public VDSData addNotificationsItem(Long notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -285,11 +285,11 @@ public VDSData addNotificationsItem(Integer notificationsItem) {
* @return notifications
*/
@javax.annotation.Nullable
public List<Integer> getNotifications() {
public List<Long> getNotifications() {
return notifications;
}

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

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

@SerializedName(SERIALIZED_NAME_NOTIFICATIONS)
@javax.annotation.Nullable
private List<Integer> notifications;
private List<Long> notifications;

public static final String SERIALIZED_NAME_SIGNATURE = "Signature";

Expand Down Expand Up @@ -177,12 +177,12 @@ public void setMessage(@javax.annotation.Nullable Message message) {
this.message = message;
}

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

public VDSNCData addNotificationsItem(Integer notificationsItem) {
public VDSNCData addNotificationsItem(Long notificationsItem) {
if (this.notifications == null) {
this.notifications = new ArrayList<>();
}
Expand All @@ -196,11 +196,11 @@ public VDSNCData addNotificationsItem(Integer notificationsItem) {
* @return notifications
*/
@javax.annotation.Nullable
public List<Integer> getNotifications() {
public List<Long> getNotifications() {
return notifications;
}

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

Expand Down