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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: UserData.java,v 1.4 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.server;
  3. import java.util.*;
  4. /**
  5.  * UserData.java
  6.  *
  7.  * Created: Wed Mar 24 1999
  8.  *
  9.  * Copyright (C) 1999-2000 Sebastian Schaffert
  10.  * 
  11.  * This program is free software; you can redistribute it and/or
  12.  * modify it under the terms of the GNU General Public License
  13.  * as published by the Free Software Foundation; either version 2
  14.  * of the License, or (at your option) any later version.
  15.  * 
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  * 
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  24.  */
  25. /**
  26.  *
  27.  * @author Sebastian Schaffert
  28.  * @version $Revision: 1.4 $
  29.  */
  30. public interface UserData {
  31.     /**
  32.      * @deprecated Use Authenticators and login() instead
  33.      */
  34.     public void login(String password) throws InvalidPasswordException;
  35.     public void login();
  36.     public void addMailHost(String name, String host, String login, String password);
  37.     public void removeMailHost(String name);
  38.     public MailHostData getMailHost(String name);
  39.     public Enumeration mailHosts();
  40.  
  41.     public int getMaxShowMessages();
  42.     public void setMaxShowMessages(int i);
  43.     /**
  44.      * Break lines at this maximum length
  45.      */
  46.     public int getMaxLineLength();
  47.     public void setMaxLineLength(int i);
  48.     /**
  49.      * The user wants to break lines.
  50.      */
  51.     public boolean wantsBreakLines();
  52.     public void setBreakLines(boolean b);
  53.     /**
  54.      * As of WebMail 0.7.0 this is different from the username, because it
  55.      * consists of the username and the domain.
  56.      * @see getUserName
  57.      */
  58.     public String getLogin();
  59.     public String getFullName();
  60.     public void setFullName(String s);
  61.     public String getSignature();
  62.     public void setSignature(String s);
  63.     public String getEmail();
  64.     public void setEmail(String s);
  65.     public Locale getPreferredLocale();
  66.     public void setPreferredLocale(String newloc);
  67.     public String getTheme();
  68.     public void setTheme(String theme);
  69.     public String getFirstLogin();
  70.     public String getLastLogin();
  71.     public String getLoginCount();
  72.     public boolean checkPassword(String s);
  73.     public void setPassword(String newpasswd, String verify) throws InvalidPasswordException;
  74.     public boolean wantsShowImages();
  75.     public void setShowImages(boolean b);    
  76.     public boolean wantsShowFancy();
  77.     public void setShowFancy(boolean b);
  78.     public boolean wantsSetFlags();    
  79.     public void setSetFlags(boolean b);
  80.     public void setSaveSent(boolean b);
  81.     public boolean wantsSaveSent();
  82.     public String getSentFolder();
  83.     public void setSentFolder(String s);
  84.     public String getDomain();
  85.     public void setDomain(String s);
  86.     /**
  87.      * Return the username without the domain (in contrast to getLogin()).
  88.      * @see getLogin
  89.      */
  90.     public String getUserName();
  91. }