Class CvsPass
- java.lang.Object
-
- org.apache.maven.scm.provider.cvslib.command.login.CvsPass
-
public class CvsPass extends java.lang.ObjectAdds an new entry to a CVS password file.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringcvsRootCVS Rootprivate ScmLoggerloggerprivate java.io.FilepassFilePassword file to add password toprivate java.lang.StringpasswordPassword to add to fileprivate char[]shiftsArray contain char conversion data
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute()Does the work.private java.lang.Stringmangle(java.lang.String password)voidsetCvsroot(java.lang.String cvsRoot)The CVS repository to add an entry for.voidsetPassfile(java.io.File passFile)Password file to add the entry to.voidsetPassword(java.lang.String password)Password to be added to the password file.
-
-
-
Field Detail
-
cvsRoot
private java.lang.String cvsRoot
CVS Root
-
passFile
private java.io.File passFile
Password file to add password to
-
password
private java.lang.String password
Password to add to file
-
logger
private ScmLogger logger
-
shifts
private final char[] shifts
Array contain char conversion data
-
-
Constructor Detail
-
CvsPass
public CvsPass(ScmLogger logger)
Create a CVS task using the default cvspass file location.
-
-
Method Detail
-
execute
public final void execute() throws ScmException, java.io.IOExceptionDoes the work.- Throws:
ScmException- if something is missingjava.io.IOException- if something goes wrong
-
mangle
private java.lang.String mangle(java.lang.String password)
-
setCvsroot
public void setCvsroot(java.lang.String cvsRoot)
The CVS repository to add an entry for.- Parameters:
cvsRoot- the CVS repository
-
setPassfile
public void setPassfile(java.io.File passFile)
Password file to add the entry to.- Parameters:
passFile- the password file.
-
setPassword
public void setPassword(java.lang.String password)
Password to be added to the password file.- Parameters:
password- the password.
-
-