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

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

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

import com.ircclouds.irc.api.domain.messages.*;

public class SendServerPingReplyCmd implements ICommand
{
	private ServerPongMessage pong;

	public SendServerPingReplyCmd(ServerPongMessage aPong)
	{
		pong = aPong;
	}

	public String asString()
	{
		return pong.toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy