MailHostData.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: MailHostData.java,v 1.3 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import java.util.*;
  4. /**
  5.  * MailHostData.java
  6.  *
  7.  *
  8.  * Created: Sun Feb  7 15:56:39 1999
  9.  *
  10.  * Copyright (C) 1999-2000 Sebastian Schaffert
  11.  * 
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version 2
  15.  * of the License, or (at your option) any later version.
  16.  * 
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  * 
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  25.  */
  26. /**
  27.  *
  28.  * @author Sebastian Schaffert
  29.  * @version $Revision: 1.3 $
  30.  */
  31. public interface MailHostData {
  32.     /**
  33.      * The password for this mailbox
  34.      * @return Value of password.
  35.      */
  36.     public String getPassword();
  37.     
  38.     /**
  39.      * Set the value of password.
  40.      * @param v  Value to assign to password.
  41.      */
  42.     public void setPassword(String  v);
  43.     
  44.     /**
  45.      * The name of this mailbox
  46.      * @return Value of name.
  47.      */
  48.     public String getName();
  49.     
  50.     /**
  51.      * Set the value of name.
  52.      * @param v  Value to assign to name.
  53.      */
  54.     public void setName(String  v);
  55.     
  56.     /**
  57.      * The login for this mailbox
  58.      */
  59.     public String getLogin();
  60.     public void setLogin(String s);
  61.     /**
  62.      * The Hostname for this mailbox
  63.      * @return Value of host.
  64.      */
  65.     public String getHostURL();
  66.     /**
  67.      * Set the value of host.
  68.      * @param v  Value to assign to host.
  69.      */
  70.     public void setHostURL(String  v); 
  71.     /**
  72.      * The unique ID of this mailbox
  73.      */
  74.     public String getID();
  75. }