enterprises.orbital.impl.evexmlapi.crp.ApiContainerLog 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.crp;
import java.util.Date;
import enterprises.orbital.evexmlapi.crp.IContainerLog;
public class ApiContainerLog implements IContainerLog {
private Date logTime;
private long itemID;
private long itemTypeID;
private long actorID;
private String actorName;
private byte flag;
private int locationID;
private String action;
private String passwordType;
private long typeID;
private int quantity;
private String oldConfiguration;
private String newConfiguration;
@Override
public Date getLogTime() {
return logTime;
}
public void setLogTime(Date logTime) {
this.logTime = logTime;
}
@Override
public long getItemID() {
return itemID;
}
public void setItemID(long itemID) {
this.itemID = itemID;
}
@Override
public long getItemTypeID() {
return itemTypeID;
}
public void setItemTypeID(long itemTypeID) {
this.itemTypeID = itemTypeID;
}
@Override
public long getActorID() {
return actorID;
}
public void setActorID(long actorID) {
this.actorID = actorID;
}
@Override
public String getActorName() {
return actorName;
}
public void setActorName(String actorName) {
this.actorName = actorName;
}
@Override
public byte getFlag() {
return flag;
}
public void setFlag(byte flag) {
this.flag = flag;
}
@Override
public int getLocationID() {
return locationID;
}
public void setLocationID(int locationID) {
this.locationID = locationID;
}
@Override
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
@Override
public String getPasswordType() {
return passwordType;
}
public void setPasswordType(String passwordType) {
this.passwordType = passwordType;
}
@Override
public long getTypeID() {
return typeID;
}
public void setTypeID(long typeID) {
this.typeID = typeID;
}
@Override
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
@Override
public String getOldConfiguration() {
return oldConfiguration;
}
public void setOldConfiguration(String oldConfiguration) {
this.oldConfiguration = oldConfiguration;
}
@Override
public String getNewConfiguration() {
return newConfiguration;
}
public void setNewConfiguration(String newConfiguration) {
this.newConfiguration = newConfiguration;
}
}