summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/usrgrp/IUser.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/usrgrp/IUser.java')
-rw-r--r--base/common/src/com/netscape/certsrv/usrgrp/IUser.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/base/common/src/com/netscape/certsrv/usrgrp/IUser.java b/base/common/src/com/netscape/certsrv/usrgrp/IUser.java
index 9370a671..7c957fd8 100644
--- a/base/common/src/com/netscape/certsrv/usrgrp/IUser.java
+++ b/base/common/src/com/netscape/certsrv/usrgrp/IUser.java
@@ -24,147 +24,147 @@ import com.netscape.certsrv.base.IAttrSet;
/**
* This interface defines the basic interfaces for
* a user identity. (get/set methods for a user entry attributes)
- *
+ *
* @version $Revision$, $Date$
*/
public interface IUser extends IAttrSet, IUserConstants {
/**
* Retrieves name.
- *
+ *
* @return user name
*/
public String getName();
/**
* Retrieves user identifier.
- *
+ *
* @return user id
*/
public String getUserID();
/**
* Retrieves user full name.
- *
+ *
* @return user fullname
*/
public String getFullName();
/**
* Retrieves user phonenumber.
- *
+ *
* @return user phonenumber
*/
public String getPhone();
/**
* Retrieves user state
- *
+ *
* @return user state
*/
public String getState();
/**
* Sets user full name.
- *
+ *
* @param name the given full name
*/
public void setFullName(String name);
/**
* Sets user ldap DN.
- *
+ *
* @param userdn the given user DN
*/
public void setUserDN(String userdn);
/**
* Gets user ldap dn
- *
+ *
* @return user DN
*/
public String getUserDN();
/**
* Retrieves user password.
- *
+ *
* @return user password
*/
public String getPassword();
/**
* Sets user password.
- *
+ *
* @param p the given password
*/
public void setPassword(String p);
/**
* Sets user phonenumber
- *
+ *
* @param p user phonenumber
*/
public void setPhone(String p);
/**
* Sets user state
- *
+ *
* @param p the given user state
*/
public void setState(String p);
/**
* Sets user type
- *
+ *
* @param userType the given user type
*/
public void setUserType(String userType);
/**
* Gets user email address.
- *
+ *
* @return email address
*/
public String getEmail();
/**
* Sets user email address.
- *
+ *
* @param email the given email address
*/
public void setEmail(String email);
/**
* Gets list of certificates from this user
- *
+ *
* @return list of certificates
*/
public X509Certificate[] getX509Certificates();
/**
* Sets list of certificates in this user
- *
+ *
* @param certs list of certificates
*/
public void setX509Certificates(X509Certificate certs[]);
/**
* Get certificate DN
- *
+ *
* @return certificate DN
*/
public String getCertDN();
/**
* Set certificate DN
- *
+ *
* @param userdn the given DN
*/
public void setCertDN(String userdn);
/**
* Get user type
- *
+ *
* @return user type.
*/
public String getUserType();