// // $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 * PresentsClient once a session is started. This is a means by * which the Authenticator 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; } public String toString () { return "[type=ARSP, msgid=" + messageId + ", data=" + _data + "]"; } protected AuthResponseData _data; }