1 /** 2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. 3 * Please look at license.txt in info directory for more license detail. 4 **/ 5 6 /** 7 * Created by The eXo Platform SARL . 8 * Author : Mestrallet Benjamin 9 * benjmestrallet@users.sourceforge.net 10 * Date: Oct 7, 2003 11 * Time: 7:02:20 PM 12 */ 13 package org.exoplatform.services.communication.irc; 14 15 public interface IRCService { 16 17 public int getPort(); 18 public void start(); 19 public void stop(); 20 public String getHostAddress(); 21 public String getHost(); 22 public boolean isServerStarted(); 23 24 } 25