Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for C1CountryIdentifier (COUNTRY_C1) not set in As4PayloadHeader … #218

Merged
merged 1 commit into from
Oct 8, 2023
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
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();
}
}