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

com.alogient.cameleon.sdk.form.vo.FormEmailVo Maven / Gradle / Ivy

The newest version!
package com.alogient.cameleon.sdk.form.vo;

import java.io.Serializable;

public class FormEmailVo implements Serializable {
    /**
     * Serial version unique identifier
     */
    private static final long serialVersionUID = 1585033810463720124L;

    /**
     * email subject
     */
    private String emailSubject;

    /**
     * from email address
     */
    private String fromEmailAddress;

    /**
     * to email address form element id
     */
    private Integer toEmailFormElementId;

    /**
     * confirm email
     */
    private String confirmEmailAddress;

    /**
     * @return the subject of the email
     */
    public String getEmailSubject() {
        return emailSubject;
    }

    /**
     * Set the subject of the email
     * @param emailSubject the subject of the email
     */
    public void setEmailSubject(String emailSubject) {
        this.emailSubject = emailSubject;
    }

    /**
     * @return the from email address
     */
    public String getFromEmailAddress() {
        return fromEmailAddress;
    }

    /**
     * Set the form address of the email
     * @param fromEmailAddress the form address of the email
     */
    public void setFromEmailAddress(String fromEmailAddress) {
        this.fromEmailAddress = fromEmailAddress;
    }

    /**
     * @return the to email address
     */
    public Integer getToEmailFormElementId() {
        return toEmailFormElementId;
    }

    /**
     * Set the to address of the email
     * @param toEmailFormElementId the form address of the email
     */
    public void setToEmailFormElementId(Integer toEmailFormElementId) {
        this.toEmailFormElementId = toEmailFormElementId;
    }

    /**
     * @return the confirm email address
     */
    public String getConfirmEmailAddress() {
        return confirmEmailAddress;
    }

    /**
     * Set the confirm address of the email
     * @param confirmEmailAddress the form address of the email
     */
    public void setConfirmEmailAddress(String confirmEmailAddress) {
        this.confirmEmailAddress = confirmEmailAddress;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy