Skip to content

Commit

Permalink
Merge pull request #218 from seciq/bugfix/issue-217
Browse files Browse the repository at this point in the history
Fix for C1CountryIdentifier (COUNTRY_C1) not set in As4PayloadHeader …
  • Loading branch information
aaron-kumar authored Oct 8, 2023
2 parents 40e0775 + e7948a3 commit a331236
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/network/oxalis/as4/inbound/As4PayloadHeader.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ public Header creationTimestamp(Date creationTimestamp) {
return header.creationTimestamp(creationTimestamp);
}

@Override
public Header c1CountryIdentifier(C1CountryIdentifier c1CountryIdentifier) {
return header.c1CountryIdentifier(c1CountryIdentifier);
}

@Override
public Header argument(ArgumentIdentifier identifier) {
return header.argument(identifier);
Expand Down Expand Up @@ -125,4 +130,9 @@ public InstanceType getInstanceType() {
public Date getCreationTimestamp() {
return header.getCreationTimestamp();
}

@Override
public C1CountryIdentifier getC1CountryIdentifier() {
return header.getC1CountryIdentifier();
}
}

0 comments on commit a331236

Please sign in to comment.