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 --- .../library/accounting/usecase/Accounting.html | 253 +++++++++++++++++++++ .../accounting/usecase/class-use/Accounting.html | 138 +++++++++++ .../library/accounting/usecase/package-frame.html | 32 +++ .../accounting/usecase/package-summary.html | 153 +++++++++++++ .../library/accounting/usecase/package-tree.html | 145 ++++++++++++ .../library/accounting/usecase/package-use.html | 138 +++++++++++ 6 files changed, 859 insertions(+) create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/Accounting.html create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/class-use/Accounting.html create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-frame.html create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-summary.html create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-tree.html create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-use.html (limited to 'Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase') diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/Accounting.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/Accounting.html new file mode 100644 index 0000000..555b503 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/Accounting.html @@ -0,0 +1,253 @@ + + + + + + +Accounting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +de.h_da.library.accounting.usecase +
+Interface Accounting

+
+
+
public interface Accounting
+ + +

+[usecase] This use case comprises the functionality of the accounting + component. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+ voidreceiveMoney(int invoiceId) + +
+          Notifies the accounting component that the money corresponding to an + invoice has been received and, hence, the invoice can be closed
+ intsendInvoice(java.lang.String subject, + java.lang.String name, + java.lang.String address, + int amount) + +
+          Generates a new Invoice object.
+  +

+ + + + + + + + +
+Method Detail
+ +

+receiveMoney

+
+void receiveMoney(int invoiceId)
+
+
Notifies the accounting component that the money corresponding to an + invoice has been received and, hence, the invoice can be closed +

+

+
Parameters:
invoiceId - [in] the id of the invoice to be closed + +
+     [post Invoice i (i.id == invoiceID): i.invoiceStatus == InvoiceStatus.PAID
+ 
+
+
+
+ +

+sendInvoice

+
+int sendInvoice(java.lang.String subject,
+                java.lang.String name,
+                java.lang.String address,
+                int amount)
+
+
Generates a new Invoice object. +

+

+
Parameters:
subject - [in] invoice subject
name - [in] name of the invoice's recipient
address - [in] address where the invoice is to be sent to
amount - [in] invoice amount in Euro cents +
Returns:
[out] id of the generated Invoice object + +
+       [post exists new Invoice i: i.id == result 
+        post i.date is current date
+        post i.subject == subject
+        post i.name == name
+        post i.address == address
+        post i.amount == amount
+        post i.status == InvoiceStatus.SENT
+       ]
+ 
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/class-use/Accounting.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/class-use/Accounting.html new file mode 100644 index 0000000..455d791 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/class-use/Accounting.html @@ -0,0 +1,138 @@ + + + + + + +Uses of Interface de.h_da.library.accounting.usecase.Accounting + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
de.h_da.library.accounting.usecase.Accounting

+
+No usage of de.h_da.library.accounting.usecase.Accounting +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-frame.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-frame.html new file mode 100644 index 0000000..9682d51 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-frame.html @@ -0,0 +1,32 @@ + + + + + + +de.h_da.library.accounting.usecase + + + + + + + + + + + +de.h_da.library.accounting.usecase + + + + +
+Interfaces  + +
+Accounting
+ + + + diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-summary.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-summary.html new file mode 100644 index 0000000..c42e066 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-summary.html @@ -0,0 +1,153 @@ + + + + + + +de.h_da.library.accounting.usecase + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package de.h_da.library.accounting.usecase +

+ + + + + + + + + +
+Interface Summary
Accounting[usecase] This use case comprises the functionality of the accounting + component.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-tree.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-tree.html new file mode 100644 index 0000000..0a52e41 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-tree.html @@ -0,0 +1,145 @@ + + + + + + +de.h_da.library.accounting.usecase Class Hierarchy + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package de.h_da.library.accounting.usecase +

+
+
+
Package Hierarchies:
All Packages
+
+

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-use.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-use.html new file mode 100644 index 0000000..88d0604 --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/accounting/usecase/package-use.html @@ -0,0 +1,138 @@ + + + + + + +Uses of Package de.h_da.library.accounting.usecase + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
de.h_da.library.accounting.usecase

+
+No usage of de.h_da.library.accounting.usecase +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3