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

io.contek.zeus.server.account.IAccountStore Maven / Gradle / Ivy

There is a newer version: 2.29.0
Show newest version
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