6b1d65553f
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5241 542714f4-19e9-0310-aa3c-eee0fc999fb1
77 lines
2.3 KiB
Java
77 lines
2.3 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
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
|
|
{
|
|
/** Auxilliary authentication data to be communicated to the <code>
|
|
* PresentsClient</code> once a session is started. This is a means by
|
|
* which the <code>Authenticator</code> can pass information loaded from,
|
|
* say, an authentication database into the runtime system to be used, for
|
|
* example for permissions. */
|
|
public transient Object authdata;
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
/**
|
|
* Replaces this response's auth data.
|
|
*/
|
|
public void setData (AuthResponseData data)
|
|
{
|
|
_data = data;
|
|
}
|
|
|
|
@Override
|
|
public String toString ()
|
|
{
|
|
return "[type=ARSP, msgid=" + messageId + ", data=" + _data + "]";
|
|
}
|
|
|
|
protected AuthResponseData _data;
|
|
}
|