1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00
Yaaic/src/org/yaaic/model/Query.java

28 lines
412 B
Java
Raw Normal View History

package org.yaaic.model;
/**
* A query (a private chat between to users)
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class Query extends Conversation
{
/**
* Create a new query
*
* @param name The user's nickname
*/
public Query(String name)
{
super(name);
}
/**
* Get the type of this conversation
*/
public int getType()
{
return Conversation.TYPE_QUERY;
}
}