io.contek.zeus.server.account.IAccountStore Maven / Gradle / Ivy
package io.contek.zeus.server.account;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import io.contek.zeus.AccountName;
import javax.annotation.concurrent.ThreadSafe;
@ThreadSafe
public interface IAccountStore {
ImmutableSet getAllAccountNames();
ImmutableMap getAllAccounts();
Account getAccount(AccountName accountName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy