enterprises.orbital.evexmlapi.shared.IIndustryJob 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.evexmlapi.shared;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(
as = IIndustryJob.class)
public interface IIndustryJob {
public long getJobID();
public long getInstallerID();
public String getInstallerName();
public long getFacilityID();
public int getSolarSystemID();
public String getSolarSystemName();
public long getStationID();
public int getActivityID();
public long getBlueprintID();
public int getBlueprintTypeID();
public String getBlueprintTypeName();
public long getBlueprintLocationID();
public long getOutputLocationID();
public int getRuns();
public BigDecimal getCost();
public long getTeamID();
public int getLicensedRuns();
public double getProbability();
public int getProductTypeID();
public String getProductTypeName();
public int getStatus();
public int getTimeInSeconds();
public Date getStartDate();
public Date getEndDate();
public Date getPauseDate();
public Date getCompletedDate();
public long getCompletedCharacterID();
public int getSuccessfulRuns();
}