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