KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > message > impl > AccountListenerConfig


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 package org.exoplatform.services.communication.message.impl;
6
7 /**
8  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Oct 29, 2004
10  * @version $Id: AccountListenerConfig.java,v 1.1 2004/10/30 02:24:13 tuan08 Exp $
11  */

12 public class AccountListenerConfig {
13   private String JavaDoc accountName ;
14   private String JavaDoc server ;
15   private String JavaDoc protocol ;
16   
17   
18   public String JavaDoc getAccountName() { return accountName; }
19   public void setAccountName(String JavaDoc accountName) { this.accountName = accountName; }
20   
21   public String JavaDoc getProtocol() { return protocol; }
22   public void setProtocol(String JavaDoc protocol) { this.protocol = protocol; }
23   
24   public String JavaDoc getServer() { return server; }
25   public void setServer(String JavaDoc server) { this.server = server; }
26 }
Popular Tags