enterprises.orbital.impl.evexmlapi.chr.ApiUpcomingCalendarEvent 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 java.util.Date;
import enterprises.orbital.evexmlapi.chr.IUpcomingCalendarEvent;
public class ApiUpcomingCalendarEvent implements IUpcomingCalendarEvent {
private int eventID;
private long ownerID;
private String ownerName;
private Date eventDate;
private String eventTitle;
private int duration;
private boolean important;
private String response;
private String eventText;
public int getEventID() {
return eventID;
}
public void setEventID(int eventID) {
this.eventID = eventID;
}
public long getOwnerID() {
return ownerID;
}
public void setOwnerID(long ownerID) {
this.ownerID = ownerID;
}
public String getOwnerName() {
return ownerName;
}
public void setOwnerName(String ownerName) {
this.ownerName = ownerName;
}
public Date getEventDate() {
return eventDate;
}
public void setEventDate(Date eventDate) {
this.eventDate = eventDate;
}
public String getEventTitle() {
return eventTitle;
}
public void setEventTitle(String eventTitle) {
this.eventTitle = eventTitle;
}
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
public boolean isImportant() {
return important;
}
public void setImportance(int importance) {
this.important = importance == 1;
}
public String getResponse() {
return response;
}
public void setResponse(String response) {
this.response = response;
}
public String getEventText() {
return eventText;
}
public void setEventText(String eventText) {
this.eventText = eventText;
}
}