enterprises.orbital.impl.evexmlapi.crp.ContractItemsParser 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 enterprises.orbital.impl.evexmlapi.ApiConnector;
import enterprises.orbital.impl.evexmlapi.ApiEndpoint;
import enterprises.orbital.impl.evexmlapi.shared.AbstractContractItemsParser;
public class ContractItemsParser extends AbstractContractItemsParser {
public ContractItemsParser(ApiConnector connector, Long contractID) {
super(connector, ApiEndpoint.CRP_CONTRACTS_ITEMS_V1, contractID);
}
}