
com.threerings.presents.data.AuthCodes Maven / Gradle / Ivy
//
// $Id: AuthCodes.java 6477 2011-02-04 19:38:53Z mjohnson $
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2011 Three Rings Design, Inc., All Rights Reserved
// http://code.google.com/p/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.data;
/**
* Basic authentication response codes.
*/
public interface AuthCodes
{
/** A code indicating that no user exists with the specified
* username. */
public static final String NO_SUCH_USER = "m.no_such_user";
/** A code indicating that the supplied password was invalid. */
public static final String INVALID_PASSWORD = "m.invalid_password";
/** A code indicating that an internal server error occurred while
* trying to log the user on. */
public static final String SERVER_ERROR = "m.server_error";
/** A code indicating that the server is not available at the moment. */
public static final String SERVER_UNAVAILABLE = "m.server_unavailable";
/** A code indicating that we failed to connect to the server on a port and
* are trying the next port in the list. */
public static final String TRYING_NEXT_PORT = "m.trying_next_port";
/** A code indicating that we failed to establish a secure connection. */
public static final String FAILED_TO_SECURE = "m.failed_to_secure";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy