enterprises.orbital.impl.evexmlapi.chr.ApiMailBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.impl.evexmlapi.chr;
import enterprises.orbital.evexmlapi.chr.IMailBody;
public class ApiMailBody implements IMailBody {
private long messageID;
private String body;
public long getMessageID() {
return messageID;
}
public void setMessageID(long messageID) {
this.messageID = messageID;
}
public String getBody() {
return body;
}
public void setBody(String title) {
this.body = title;
}
}