mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-12 12:05:03 -05:00
39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
|
/*
|
||
|
Yaaic - Yet Another Android IRC Client
|
||
|
|
||
|
Copyright 2009-2011 Sebastian Kaspari
|
||
|
|
||
|
This file is part of Yaaic.
|
||
|
|
||
|
Yaaic is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
Yaaic 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 General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
package org.yaaic.model;
|
||
|
|
||
|
/**
|
||
|
* Helper class for anything regarding users
|
||
|
*
|
||
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
||
|
*/
|
||
|
public class User
|
||
|
{
|
||
|
public static final int ACTION_REPLY = 1;
|
||
|
public static final int ACTION_QUERY = 2;
|
||
|
public static final int ACTION_OP = 3;
|
||
|
public static final int ACTION_DEOP = 4;
|
||
|
public static final int ACTION_VOICE = 5;
|
||
|
public static final int ACTION_DEVOICE = 6;
|
||
|
public static final int ACTION_KICK = 7;
|
||
|
public static final int ACTION_BAN = 8;
|
||
|
}
|