summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java')
-rw-r--r--base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java b/base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java
index fec6e6afa..dfa5312e5 100644
--- a/base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java
+++ b/base/common/src/com/netscape/certsrv/dbs/IDBSubsystem.java
@@ -30,7 +30,7 @@ import com.netscape.certsrv.base.ISubsystem;
* <P>
* This interface separate the database subsystem functionalities from internal implementation.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public interface IDBSubsystem extends ISubsystem {
@@ -45,21 +45,21 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Retrieves the base DN.
- *
+ *
* @return base DN of the subsystem
*/
public String getBaseDN();
/**
* Retrieves the registry.
- *
+ *
* @return registry
*/
public IDBRegistry getRegistry();
/**
* Creates a database session.
- *
+ *
* @return database session
* @exception EDBException failed to create session
*/
@@ -67,14 +67,14 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Avoids losing serial number.
- *
+ *
* @return true if serial number recovery option is enabled
*/
public boolean enableSerialNumberRecovery();
/**
* Records next serial number in config file
- *
+ *
* @param serial next serial number
* @exception EBaseException failed to set
*/
@@ -82,14 +82,14 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets the next serial number in config file
- *
+ *
* @return next serial number
*/
public BigInteger getNextSerialConfig();
/**
* Records maximum serial number limit in config file
- *
+ *
* @param serial max serial number
* @param repo repo identifier
* @exception EBaseException failed to set
@@ -98,7 +98,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Records minimum serial number limit in config file
- *
+ *
* @param serial min serial number
* @param repo repo identifier
* @exception EBaseException failed to set
@@ -107,7 +107,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Records maximum serial number limit for the next range in config file
- *
+ *
* @param serial max serial number
* @param repo repo identifier
* @exception EBaseException failed to set
@@ -116,7 +116,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Records minimum serial number limit for the next range in config file
- *
+ *
* @param serial min serial number
* @param repo repo identifier
* @exception EBaseException failed to set
@@ -125,7 +125,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets minimum serial number limit in config file
- *
+ *
* @param repo repo identifier
* @return min serial number
*/
@@ -133,7 +133,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets the maximum serial number limit in config file
- *
+ *
* @param repo repo identifier
* @return max serial number
*/
@@ -141,7 +141,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets the maximum serial number limit for next range in config file
- *
+ *
* @param repo repo identifier
* @return max serial number
*/
@@ -149,7 +149,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets minimum serial number limit for next range in config file
- *
+ *
* @param repo repo identifier
* @return min serial number
*/
@@ -157,7 +157,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets low water mark limit in config file
- *
+ *
* @param repo repo identifier
* @return low water mark
*/
@@ -165,7 +165,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets range increment limit for next range in config file
- *
+ *
* @param repo repo identifier
* @return range increment
*/
@@ -173,7 +173,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Gets number corresponding to start of next range from database
- *
+ *
* @param repo repo identifier
* @return start of next range
*/
@@ -181,7 +181,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Determines if a range conflict has been observed in database
- *
+ *
* @param repo repo identifier
* @return true if range conflict, false otherwise
*/
@@ -189,7 +189,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Determines if serial number management has been enabled
- *
+ *
* @return true if enabled, false otherwise
*/
public boolean getEnableSerialMgmt();
@@ -197,7 +197,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Sets whether serial number management is enabled for certs
* and requests.
- *
+ *
* @param value true/false
* @exception EBaseException failed to set
*/
@@ -205,7 +205,7 @@ public interface IDBSubsystem extends ISubsystem {
/**
* Returns LDAP connection to connection pool.
- *
+ *
* @param conn connection to be returned
*/
public void returnConn(LDAPConnection conn);