Merge pull request #575 from langfr/fix_compile_20241123
Fix compilation problems.
This commit is contained in:
@@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user