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

io.github.robertograham.fortnite2.resource.AccountResource 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 java.io.IOException;
import java.util.Optional;
import java.util.Set;

public interface AccountResource {

    Optional findOneByDisplayName(String displayName) throws IOException;

    Optional> findAllByAccountIds(String... accountIds) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy