⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memorysubscription.java

📁 这是STRUTS1.2。6的开发包。。这是我从芝APACHE网站下下来
💻 JAVA
字号:
/* * $Id: MemorySubscription.java 54929 2004-10-16 16:38:42Z germuska $  * * Copyright 1999-2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.struts.examples.mailreader.memory;import org.apache.struts.examples.mailreader.Subscription;import org.apache.struts.examples.mailreader.User;/** * <p>Concrete implementation of {@link Subscription} for an in-memory * database backed by an XML data file.</p> * * @version $Rev: 54929 $ $Date: 2004-10-16 09:38:42 -0700 (Sat, 16 Oct 2004) $ * @since Struts 1.1 */public final class MemorySubscription implements Subscription {    // ----------------------------------------------------------- Constructors    /**     * <p>Construct a new Subscription associated with the specified     * {@link User}.     *     * @param user The user with which we are associated     * @param host The mail host for this subscription     */    public MemorySubscription(MemoryUser user, String host) {        super();        this.user = user;        this.host = host;    }    // ----------------------------------------------------- Instance Variables    /**     * The mail host for this subscription.     */    private String host = null;    /**     * The {@link User} with which we are associated.     */    private MemoryUser user = null;    // ------------------------------------------------------------- Properties    /**     * Should we auto-connect at startup time?     */    private boolean autoConnect = false;    public boolean getAutoConnect() {        return (this.autoConnect);    }    public void setAutoConnect(boolean autoConnect) {        this.autoConnect = autoConnect;    }    /**     * The mail host for this subscription.     */    public String getHost() {        return (this.host);    }    /**     * The password (in clear text) for this subscription.     */    private String password = null;    public String getPassword() {        return (this.password);    }    public void setPassword(String password) {        this.password = password;    }    /**     * The subscription type ("imap" or "pop3").     */    private String type = "imap";    public String getType() {        return (this.type);    }    public void setType(String type) {        this.type = type;    }    /**     * The User owning this Subscription.     */    public User getUser() {        return (this.user);    }    /**     * The username for this subscription.     */    private String username = null;    public String getUsername() {        return (this.username);    }    public void setUsername(String username) {        this.username = username;    }    // --------------------------------------------------------- Public Methods    /**     * Return a String representation of this object.     */    public String toString() {        StringBuffer sb = new StringBuffer("<subscription host=\"");        sb.append(host);        sb.append("\" autoConnect=\"");        sb.append(autoConnect);        sb.append("\"");        if (password != null) {            sb.append(" password=\"");            sb.append(password);            sb.append("\"");        }        if (type != null) {            sb.append(" type=\"");            sb.append(type);            sb.append("\"");        }        if (username != null) {            sb.append(" username=\"");            sb.append(username);            sb.append("\"");        }        sb.append(">");        return (sb.toString());    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -