Class CvsUser
- java.lang.Object
- 
- org.apache.tools.ant.taskdefs.cvslib.CvsUser
 
- 
 public class CvsUser extends java.lang.ObjectRepresents a CVS user with a userID and a full name.
- 
- 
Constructor SummaryConstructors Constructor Description CvsUser()
 - 
Method SummaryModifier and Type Method Description java.lang.StringgetDisplayname()Get the user's full namejava.lang.StringgetUserID()Get the user's id.voidsetDisplayname(java.lang.String displayName)Set the user's fullnamevoidsetUserid(java.lang.String userID)Set the user's idvoidvalidate()Validate that this object is configured.
 
- 
- 
- 
Method Detail- 
setDisplaynamepublic void setDisplayname(java.lang.String displayName) Set the user's fullname- Parameters:
- displayName- the user's full name
 
 - 
setUseridpublic void setUserid(java.lang.String userID) Set the user's id- Parameters:
- userID- the user's new id value.
 
 - 
getUserIDpublic java.lang.String getUserID() Get the user's id.- Returns:
- The userID value
 
 - 
getDisplaynamepublic java.lang.String getDisplayname() Get the user's full name- Returns:
- the user's full name
 
 - 
validatepublic void validate() throws BuildExceptionValidate that this object is configured.- Throws:
- BuildException- if the instance has not be correctly configured.
 
 
- 
 
-