Moving micasa 1.5 trunk to Novell forge.
This commit is contained in:
30
c_sharp/NSSCSWrapper/BasicCredential.cs
Normal file
30
c_sharp/NSSCSWrapper/BasicCredential.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
|
||||
namespace Novell.CASA
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for BasicCredential.
|
||||
/// </summary>
|
||||
public class BasicCredential
|
||||
{
|
||||
|
||||
private string m_username = "";
|
||||
private string m_password = "";
|
||||
|
||||
public BasicCredential(string username, string password)
|
||||
{
|
||||
m_username = username;
|
||||
m_password = password;
|
||||
}
|
||||
|
||||
public string GetUsername()
|
||||
{
|
||||
return m_username;
|
||||
}
|
||||
|
||||
public string GetPassword()
|
||||
{
|
||||
return m_password;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user