enterprises.orbital.evexmlapi.eve.IConquerableStation 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.eve;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(as = IConquerableStation.class)
public interface IConquerableStation {
public int getCorporationID();
public String getCorporationName();
public long getSolarSystemID();
public long getStationID();
public String getStationName();
public int getStationTypeID();
public long getX();
public long getY();
public long getZ();
}