Yohoho needs to replace the auth response data on the fly. Allow it.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5010 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-04-22 21:23:37 +00:00
parent 5b1b22b955
commit 4328cc7875
@@ -58,6 +58,14 @@ public class AuthResponse extends DownstreamMessage
return _data;
}
/**
* Replaces this response's auth data.
*/
public void setData (AuthResponseData data)
{
_data = data;
}
public String toString ()
{
return "[type=ARSP, msgid=" + messageId + ", data=" + _data + "]";