From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- .../de/h_da/library/accounting/entity/Invoice.html | 363 +++++++++++++++++++++ 1 file changed, 363 insertions(+) create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/entity/Invoice.html (limited to 'Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/entity/Invoice.html') diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/entity/Invoice.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/entity/Invoice.html new file mode 100644 index 0000000..b34a31f --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/entity/Invoice.html @@ -0,0 +1,363 @@ + + + + + + +Invoice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +de.h_da.library.accounting.entity +
+Class Invoice

+
+java.lang.Object
+  extended by de.h_da.library.accounting.entity.Invoice
+
+
+
+
public class Invoice
extends java.lang.Object
+ + +

+[entity] + + This entity represents an invoice, managed by the accounting component. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+private  java.lang.Stringaddress + +
+          Address where the invoice is to be sent to.
+private  intamount + +
+          Invoice amount in Euro cents.
+private  java.util.Datedate + +
+          Issuing date of the invoice.
+private  java.lang.Stringname + +
+          Name of the invoice's recipient.
+private  InvoiceStatusstatus + +
+          SENT, PAID.
+private  java.lang.Stringsubject + +
+          Reason for the invoice.
+  + + + + + + + + + + +
+Constructor Summary
Invoice() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+address

+
+private java.lang.String address
+
+
Address where the invoice is to be sent to. +

+

+
+
+
+ +

+amount

+
+private int amount
+
+
Invoice amount in Euro cents. +

+

+
+
+
+ +

+date

+
+private java.util.Date date
+
+
Issuing date of the invoice. +

+

+
+
+
+ +

+name

+
+private java.lang.String name
+
+
Name of the invoice's recipient. +

+

+
+
+
+ +

+status

+
+private InvoiceStatus status
+
+
SENT, PAID. +

+

+
+
+
+ +

+subject

+
+private java.lang.String subject
+
+
Reason for the invoice. +

+

+
+
+ + + + + + + + +
+Constructor Detail
+ +

+Invoice

+
+public Invoice()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3