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 --- .../h_da/library/datamanagement/entity/Loan.html | 342 +++++++++++++++++++++ 1 file changed, 342 insertions(+) create mode 100644 Master/Reference Architectures and Patterns/doc/de/h_da/library/datamanagement/entity/Loan.html (limited to 'Master/Reference Architectures and Patterns/doc/de/h_da/library/datamanagement/entity/Loan.html') diff --git a/Master/Reference Architectures and Patterns/doc/de/h_da/library/datamanagement/entity/Loan.html b/Master/Reference Architectures and Patterns/doc/de/h_da/library/datamanagement/entity/Loan.html new file mode 100644 index 0000000..e43f82b --- /dev/null +++ b/Master/Reference Architectures and Patterns/doc/de/h_da/library/datamanagement/entity/Loan.html @@ -0,0 +1,342 @@ + + + + + + +Loan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +de.h_da.library.datamanagement.entity +
+Class Loan

+
+java.lang.Object
+  extended by de.h_da.library.datamanagement.entity.Loan
+
+
+
+
public class Loan
extends java.lang.Object
+ + +

+[entity] This entity represents a concrete loan of one + BookOnStock by one Customer. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+private  BookOnStockbookOnStock + +
+          Concrete book instance that is being borrowed.
+private  Customercustomer + +
+          Customer who borrows the book.
+private  java.util.DatedueDate + +
+          Date when the bookOnStock must be returned.
+private  java.util.DateloanDate + +
+          Date when the bookOnStock was borrowed.
+private  LoanStatusstatus + +
+          Status of the loan (BORROWED, DELAYED, RETURNED).
+  + + + + + + + + + + +
+Constructor Summary
Loan() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

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

+bookOnStock

+
+private BookOnStock bookOnStock
+
+
Concrete book instance that is being borrowed. +

+

+
+
+
+ +

+customer

+
+private Customer customer
+
+
Customer who borrows the book. +

+

+
+
+
+ +

+dueDate

+
+private java.util.Date dueDate
+
+
Date when the bookOnStock must be returned. +

+

+
+
+
+ +

+loanDate

+
+private java.util.Date loanDate
+
+
Date when the bookOnStock was borrowed. +

+

+
+
+
+ +

+status

+
+private LoanStatus status
+
+
Status of the loan (BORROWED, DELAYED, RETURNED). +

+

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

+Loan

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