blob: 0715ee0f00044f2cccbe1f8150c58552282052c5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ecf.internal.presence.bot;
import java.util.List;
import org.eclipse.ecf.presence.bot.IChatRoomBotEntry;
public class ChatRoomBotEntry implements IChatRoomBotEntry {
private String id;
private String name;
private String containerFactoryName;
private String connectID;
private String password;
private String[] chatRoomNames;
private String[] chatRoomPasswords;
private List commands;
public ChatRoomBotEntry(String id, String name,
String containerFactoryName, String connectID, String password,
String[] chatRoomNames, String[] chatRoomPasswords, List commands) {
this.id = id;
this.name = name;
this.containerFactoryName = containerFactoryName;
this.connectID = connectID;
this.password = password;
this.chatRoomNames = chatRoomNames;
this.chatRoomPasswords = chatRoomPasswords;
this.commands = commands;
}
public List getCommands() {
return commands;
}
public String getId() {
return id;
}
public String getName() {
return name;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.internal.presence.bot.IChatRoomBotEntry#getChatRoom()
*/
public String[] getChatRooms() {
return chatRoomNames;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.internal.presence.bot.IChatRoomBotEntry#getConnectID()
*/
public String getConnectID() {
return connectID;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.internal.presence.bot.IChatRoomBotEntry#getContainerFactoryName()
*/
public String getContainerFactoryName() {
return containerFactoryName;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.internal.presence.bot.IChatRoomBotEntry#getPassword()
*/
public String getPassword() {
return password;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ecf.internal.presence.bot.IChatRoomBotEntry#getChatRoomPassword()
*/
public String[] getChatRoomPasswords() {
return chatRoomPasswords;
}
}