Issue #273: Fixed HTML tags in comments
This commit is contained in:
parent
6418a6c2b6
commit
998ba7e6e0
@ -28,7 +28,7 @@ package com.iluwatar.caching;
|
|||||||
* (depending on the preferred caching policy/strategy).
|
* (depending on the preferred caching policy/strategy).
|
||||||
*
|
*
|
||||||
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
|
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
|
||||||
* <p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @see CacheStore
|
* @see CacheStore
|
||||||
* @See LRUCache
|
* @See LRUCache
|
||||||
|
@ -12,16 +12,14 @@ import com.mongodb.client.model.UpdateOptions;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>DBManager handles the communication with the underlying data store i.e. Database. It contains the
|
||||||
* DBManager handles the communication with the underlying data store i.e. Database. It contains the
|
|
||||||
* implemented methods for querying, inserting, and updating data. MongoDB was used as the database
|
* implemented methods for querying, inserting, and updating data. MongoDB was used as the database
|
||||||
* for the application.
|
* for the application.</p>
|
||||||
* </p>
|
*
|
||||||
* <p>
|
* <p>Developer/Tester is able to choose whether the application should use MongoDB as its underlying
|
||||||
* Developer/Tester is able to choose whether the application should use MongoDB as its underlying
|
|
||||||
* data storage (connect()) or a simple Java data structure to (temporarily) store the data/objects
|
* data storage (connect()) or a simple Java data structure to (temporarily) store the data/objects
|
||||||
* during runtime (createVirtualDB()).
|
* during runtime (createVirtualDB()).</p>
|
||||||
* </p>
|
*
|
||||||
*/
|
*/
|
||||||
public class DBManager {
|
public class DBManager {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user