File tree 2 files changed +7
-9
lines changed
caching/src/main/java/com/iluwatar/caching
2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 28
28
* (depending on the preferred caching policy/strategy).
29
29
*
30
30
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
31
- * <p>
31
+ * </ p>
32
32
*
33
33
* @see CacheStore
34
34
* @See LRUCache
Original file line number Diff line number Diff line change 12
12
13
13
/**
14
14
*
15
- * <p>
16
- * DBManager handles the communication with the underlying data store i.e. Database. It contains the
15
+ * <p>DBManager handles the communication with the underlying data store i.e. Database. It contains the
17
16
* implemented methods for querying, inserting, and updating data. MongoDB was used as the database
18
- * for the application.
19
- * </p>
20
- * <p>
21
- * Developer/Tester is able to choose whether the application should use MongoDB as its underlying
17
+ * for the application.</p>
18
+ *
19
+ * <p>Developer/Tester is able to choose whether the application should use MongoDB as its underlying
22
20
* data storage (connect()) or a simple Java data structure to (temporarily) store the data/objects
23
- * during runtime (createVirtualDB()).
24
- * </p>
21
+ * during runtime (createVirtualDB()).</p>
22
+ *
25
23
*/
26
24
public class DBManager {
27
25
You can’t perform that action at this time.
0 commit comments