Files
narya/src/java/com/threerings/presents/net/AuthResponse.java
T
Michael Bayne 48823b10f9 More revamped serialization cleanup.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2079 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-12-20 23:41:27 +00:00

43 lines
1008 B
Java

//
// $Id: AuthResponse.java,v 1.14 2002/12/20 23:41:26 mdb Exp $
package com.threerings.presents.net;
/**
* The auth response communicates authentication success or failure as
* well as associated information via a distribted object transmitted
* along with the response. The distributed object simply serves as a
* container for the varied and manifold data involved in the
* authentication process.
*/
public class AuthResponse extends DownstreamMessage
{
/**
* Zero argument constructor used when unserializing an instance.
*/
public AuthResponse ()
{
super();
}
/**
* Constructs a auth response with the supplied response data.
*/
public AuthResponse (AuthResponseData data)
{
_data = data;
}
public AuthResponseData getData ()
{
return _data;
}
public String toString ()
{
return "[type=ARSP, msgid=" + messageId + ", data=" + _data + "]";
}
protected AuthResponseData _data;
}