All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kingray.email.vo.EmailAccount Maven / Gradle / Ivy

There is a newer version: 0.1.10
Show newest version
package com.kingray.email.vo;

/**
 * Created by 瑛琪xiongyingqi.com on 2014/8/6 0006.
 */
public class EmailAccount {
    //email.protocol=smtps
    private String protocol;
    private String host;
    private int port;
    private String from;
    private String username;
    private String password;
    private String nickName;
    private boolean auth;
    //默认发件人
    private String systemEmail;
    //默认抄送人
    private String cc;
    //默认密送人
    private String bcc;

    public String getProtocol() {
        return protocol;
    }

    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public boolean isAuth() {
        return auth;
    }

    public void setAuth(boolean auth) {
        this.auth = auth;
    }

    public String getSystemEmail() {
        return systemEmail;
    }

    public void setSystemEmail(String systemEmail) {
        this.systemEmail = systemEmail;
    }

    public String getCc() {
        return cc;
    }

    public void setCc(String cc) {
        this.cc = cc;
    }

    public String getBcc() {
        return bcc;
    }

    public void setBcc(String bcc) {
        this.bcc = bcc;
    }

    public String getFrom() {
        return from;
    }

    public void setFrom(String from) {
        this.from = from;
    }

    public String getNickName() {
        return nickName;
    }

    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy