Skip to content
Merged
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 @@ -202,6 +202,8 @@ public record ApplicationInformationDto(

/**
* Default constructor for JAXB.
* Creates an ApplicationInformationDto with all fields set to null.
* The canonical constructor with all fields is automatically provided by the record declaration.
*/
public ApplicationInformationDto() {
this(null, null, null, null, null, null, null, null, null,
Expand All @@ -211,17 +213,6 @@ public ApplicationInformationDto() {
null);
}

/**
* Constructor for basic application information (minimum required fields).
*/
public ApplicationInformationDto(String dataCustodianId, String clientId, String clientSecret, String clientName) {
this(null, dataCustodianId, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
clientSecret, null, clientName, null, null, clientId, null, null,
null, null, null, null, null, null, null, null, null,
null, null);
}

// JAXB property accessors - must match propOrder sequence

@XmlElement(name = "dataCustodianId", namespace = "http://naesb.org/espi")
Expand Down
Loading