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

com.ircclouds.irc.api.IServerParameters Maven / Gradle / Ivy

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

import java.util.*;

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

/**
 * This interface stores the IRC connection parameters needed on connect.
 * 
 * @author [email protected]
 *
 */
public interface IServerParameters
{
	/**
	 * Returns the desired to use nickname
	 * @return
	 */
	String getNickname();

	/**
	 * Returns desired to use alternative nicknames
	 * @return
	 */
	List getAlternativeNicknames();

	/**
	 * Returns the desired to use ident
	 * @return
	 */
	String getIdent();

	/**
	 * Returns the desired to use real name
	 * @return
	 */
	String getRealname();

	/**
	 * Returns the desired to use {@link IRCServer}
	 * @return
	 */
	IRCServer getServer();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy