com.cobweb.io.meta.Email Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cobweb Show documentation
Show all versions of cobweb Show documentation
A Social Network for Internet of Things
The newest version!
package com.cobweb.io.meta;
/**
* The Class email.
* @author Yasith Lokuge
*/
public class Email {
/** The subject. */
private String subject;
/** The body. */
private String body;
/** The to. */
private String to;
/** The from. */
private String from;
/**
* Gets the subject.
*
* @return the subject
*/
public String getSubject() {
return subject;
}
/**
* Sets the subject.
*
* @param subject the new subject
*/
public void setSubject(String subject) {
this.subject = subject;
}
/**
* Gets the body.
*
* @return the body
*/
public String getBody() {
return body;
}
/**
* Sets the body.
*
* @param body the new body
*/
public void setBody(String body) {
this.body = body;
}
/**
* Gets the to.
*
* @return the to
*/
public String getTo() {
return to;
}
/**
* Sets the to.
*
* @param to the new to
*/
public void setTo(String to) {
this.to = to;
}
/**
* Gets the from.
*
* @return the from
*/
public String getFrom() {
return from;
}
/**
* Sets the from.
*
* @param from the new from
*/
public void setFrom(String from) {
this.from = from;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy