summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java')
-rw-r--r--base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java b/base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java
index f6cef0d46..d5d37614e 100644
--- a/base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java
+++ b/base/common/src/com/netscape/certsrv/usrgrp/IUsrGrp.java
@@ -22,28 +22,28 @@ import netscape.ldap.LDAPException;
/**
* This interface defines the basic capabilities of
* a usr/group manager. (get/add/modify/remove users or groups)
- *
+ *
* @version $Revision$, $Date$
*/
public interface IUsrGrp extends IIdEvaluator {
/**
* Retrieves usr/grp manager identifier.
- *
+ *
* @return id
*/
public String getId();
/**
* Retrieves the description
- *
+ *
* @return description
*/
public String getDescription();
/**
* Retrieves an identity
- *
+ *
* @param userid the user id for the given user
* @return user interface
*/
@@ -56,7 +56,7 @@ public interface IUsrGrp extends IIdEvaluator {
* user.setPassword("secret");
* usrgrp.addUser(user);
* </code>
- *
+ *
* @param user an user interface
* @exception EUsrGrpException thrown when some of the user attribute values
* are null
@@ -67,7 +67,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Removes a user.
- *
+ *
* @param userid the user id for the given user
* @exception EUsrGrpException thrown when failed to remove user
*/
@@ -75,7 +75,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Modifies user.
- *
+ *
* @param user the user interface which contains the modified information
* @exception EUsrGrpException thrown when failed to modify user
*/
@@ -83,7 +83,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Retrieves an identity group
- *
+ *
* @param groupid the given group id.
* @return the group interface
*/
@@ -91,7 +91,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Adds a group
- *
+ *
* @param group the given group
* @exception EUsrGrpException thrown when failed to add the group.
*/
@@ -99,7 +99,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Modifies a group
- *
+ *
* @param group the given group contains the new information for modification.
* @exception EUsrGrpException thrown when failed to modify the group.
*/
@@ -107,7 +107,7 @@ public interface IUsrGrp extends IIdEvaluator {
/**
* Removes a group
- *
+ *
* @param name the group name
* @exception EUsrGrpException thrown when failed to remove the given
* group.