All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ircclouds.irc.api.commands.QuitCmd Maven / Gradle / Ivy

There is a newer version: 1.0-0014
Show newest version
package com.ircclouds.irc.api.commands;


public class QuitCmd implements ICommand
{
	private static final String QUIT_ID = "QUIT";

	private String quitMsg;

	public QuitCmd(String aQuitMsg)
	{
		quitMsg = aQuitMsg;
	}

	@Override
	public String asString()
	{
		return QUIT_ID + " :" + quitMsg;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy