irc
Class StartupConfiguration

java.lang.Object
  |
  +--irc.StartupConfiguration

public class StartupConfiguration
extends java.lang.Object

Startup configuration.


Constructor Summary
StartupConfiguration(java.lang.String nick, java.lang.String altNick, java.lang.String name, java.lang.String[] pass, java.lang.String[] host, int[] port, java.lang.String alias, java.lang.String[] commands)
          Create a new StartupConfiguration.
 
Method Summary
 java.lang.String getAlias()
          Get the server alias.
 java.lang.String getAltNick()
          Get the alternate nickname.
 java.lang.String[] getCommands()
          Get initial server commands.
 java.lang.String[] getHost()
          Get the server host names.
 java.lang.String getName()
          Get the full name.
 java.lang.String getNick()
          Get the nickname.
 java.lang.String[] getPass()
          Get the server passwords.
 int[] getPort()
          Get the server ports.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StartupConfiguration

public StartupConfiguration(java.lang.String nick,
                            java.lang.String altNick,
                            java.lang.String name,
                            java.lang.String[] pass,
                            java.lang.String[] host,
                            int[] port,
                            java.lang.String alias,
                            java.lang.String[] commands)
Create a new StartupConfiguration.

Parameters:
nick - claimed nickname.
altNick - claimed alternate nickname.
name - full user name.
pass - user server passwords.
host - IRC server hosts.
port - IRC server ports.
alias - IRC server alias.
commands - initial server commands.
Method Detail

getNick

public java.lang.String getNick()
Get the nickname.

Returns:
the nickname.

getAltNick

public java.lang.String getAltNick()
Get the alternate nickname.

Returns:
the alternate nickname.

getName

public java.lang.String getName()
Get the full name.

Returns:
the full name.

getPass

public java.lang.String[] getPass()
Get the server passwords.

Returns:
the server passwords.

getHost

public java.lang.String[] getHost()
Get the server host names.

Returns:
the server host names.

getPort

public int[] getPort()
Get the server ports.

Returns:
the server ports.

getAlias

public java.lang.String getAlias()
Get the server alias.

Returns:
the server alias.

getCommands

public java.lang.String[] getCommands()
Get initial server commands.

Returns:
initial on-connect server commands.