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

+ +de.h_da.library.datamanagement.usecase +
+Interface Search

+
+
+
public interface Search
+ + +

+[usecase] This use case comprises all functionality for library customers to + search the library catalogue. +

+ +

+


+ +

+ + + + + + + + + + + + +
+Method Summary
+ java.util.Collection<Book>findBooksByAttributes(Book book) + +
+          [basicQuery] Finds all books in the library system according to a given template.
+  +

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

+findBooksByAttributes

+
+java.util.Collection<Book> findBooksByAttributes(Book book)
+
+
[basicQuery] Finds all books in the library system according to a given template. +

+

+
Parameters:
book - [in] volatile Book object as search template +
Returns:
[out] Collection of all Book objects in the library + system whose attributes match the search template (substring + comparison, case-insensitive) + +
+    [post forall Book b in result: 
+            b.title.toUpperCase().contains(book.title.toUpperCase()) if book.title != null 
+     analogous for all other attributes of entity book
+    ]
+ 
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3