com.clickntap.tool.mail.Body Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.tool.mail;
public class Body {
public Body(String content, String contentType) {
this.content = content;
this.contentType = contentType;
}
private String contentType;
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
private String content;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}