Merge pull request #575 from langfr/fix_compile_20241123

Fix compilation problems.
This commit is contained in:
Jochen Staerk
2024-12-03 13:29:15 +01:00
committed by GitHub
3 changed files with 17 additions and 6 deletions

View File

@@ -46,8 +46,18 @@ public class DirectDebit implements IZUGFeRDTradeSettlementDebit {
return this.IBAN; return this.IBAN;
} }
public DirectDebit setIBAN(String iBAN) {
this.IBAN = iBAN;
return this;
}
@Override @Override
public String getMandate() { public String getMandate() {
return this.mandate; return this.mandate;
} }
public DirectDebit setMandate(String mandate) {
this.mandate = mandate;
return this;
}
} }

View File

@@ -26,7 +26,7 @@ public class FileAttachment {
this.mimetype = mimetype; this.mimetype = mimetype;
this.relation = relation; this.relation = relation;
this.data = data; this.data = data;
description = "Additional file attachment"; this.description = "Additional file attachment";
} }
public String getDescription() { public String getDescription() {
@@ -73,8 +73,4 @@ public class FileAttachment {
this.data = data; this.data = data;
return this; return this;
} }
} }

View File

@@ -72,6 +72,11 @@ public class IncludedNote {
return content; return content;
} }
public IncludedNote setContent(String content) {
this.content = content;
return this;
}
public SubjectCode getSubjectCode() { public SubjectCode getSubjectCode() {
return subjectCode; return subjectCode;
} }