All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.robertograham.fortnite2.resource.StatisticResource Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package io.github.robertograham.fortnite2.resource;

import io.github.robertograham.fortnite2.domain.Account;
import io.github.robertograham.fortnite2.domain.FilterableStatistic;

import java.io.IOException;
import java.util.Optional;

public interface StatisticResource {

    Optional findAllByAccountIdForAllTime(String accountId) throws IOException;

    Optional findAllByAccountForAllTime(Account account) throws IOException;

    Optional findAllByAccountIdForCurrentSeason(String accountId) throws IOException;

    Optional findAllByAccountForCurrentSeason(Account account) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy