Smack/smack-messenger/src/main/java/org/jivesoftware/smackx/messenger/store/account/AccountStore.java

14 lines
286 B
Java
Raw Normal View History

2020-02-08 17:56:24 +01:00
package org.jivesoftware.smackx.messenger.store.account;
import java.util.List;
import java.util.UUID;
import org.jivesoftware.smackx.messenger.AccountRecord;
public interface AccountStore {
List<AccountRecord> getAllAccounts();
AccountRecord getAccount(UUID accountId);
}