summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/commands/WhoisCommand.java
blob: 1c5dea618ce5f9ff82d45faae298e2bdac3841cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package f00f.net.irc.martyr.commands;

import f00f.net.irc.martyr.OutCommand;

/**
 * Implements a WHOIS command, to query details about a user.
 *
 */
public class WhoisCommand implements OutCommand
{
	private static final String WHOIS = "WHOIS";

	private String target;

	/**
	 * @param target the nick or mask that you wish to know about.
	 */
	public WhoisCommand( String target )
	{
		this.target = target;
	}

	/**
	 * @return "WHOIS"
	 */
	public String getIrcIdentifier()
	{
		return WHOIS;
	}

	/**
	 * Simply returns the string given in the constructor.
	 */
	public String render()
	{
		return WHOIS + " " + target;
	}
}