Add setter methods for NTLM variables.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@374136 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-02-01 18:25:39 +00:00
parent 3a79e32e19
commit f6d415de72

View File

@ -689,6 +689,26 @@ public final class JiraDownloader
this.webUser = thisWebUser;
}
/**
* Sets the NTLM host.
*
* @param thisProxyNtlmHost The NTLM host to set.
*/
public void setProxyNtlmHost( final String thisProxyNtlmHost )
{
this.proxyNtlmHost = thisProxyNtlmHost;
}
/**
* Sets the NTLM domain.
*
* @param thisProxyNtlmDomain The NTLM domain to set.
*/
public void setProxyNtlmDomain( final String thisProxyNtlmDomain )
{
this.proxyNtlmDomain = thisProxyNtlmDomain;
}
/**
* Sets the password to LOG into a secured JIRA.
*