enterprises.orbital.impl.evexmlapi.crp.WalletJournalParser 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.AbstractWalletJournalParser;
public class WalletJournalParser extends AbstractWalletJournalParser {
public WalletJournalParser(ApiConnector connector, int accountKey, Long beforeRefID) {
super(connector, ApiEndpoint.CRP_WALLET_JOURNAL_V2, accountKey, beforeRefID);
}
}