Woking on implementing support for SIP

Added a getPasswordAsString() method
cusax-fix
Emil Ivov 20 years ago
parent d030da78c0
commit 362ae35510

@ -58,6 +58,19 @@ public char[] getPassword()
return password;
}
/**
* Returns a String containing the password associated with this set of
* credentials.
*
* @return a String containing the password associated with this set of
* credentials.
*/
public String getPasswordAsString()
{
return new String(password);
}
/**
* Specifies whether or not the password associated with this credentials
* object is to be sored persistently (insecure!) or not.

Loading…
Cancel
Save