Interface RemoteAccountArchiveService
- All Superinterfaces:
Remote,org.distributeme.core.lifecycle.ServiceAdapter
- All Known Implementing Classes:
RemoteAccountArchiveServiceSkeleton
public interface RemoteAccountArchiveService
extends Remote, org.distributeme.core.lifecycle.ServiceAdapter
-
Method Summary
Modifier and TypeMethodDescriptioncreateAccount(ArchivedAccount toUpdate, Map<?, ?> __transportableCallContext) deleteAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) deleteAccountsByEmail(String pattern, Map<?, ?> __transportableCallContext) getAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) getAccountByEmail(String email, Map<?, ?> __transportableCallContext) getAccountByName(String name, Map<?, ?> __transportableCallContext) getAccounts(List<net.anotheria.portalkit.services.common.AccountId> accountId, Map<?, ?> __transportableCallContext) getAccountsByQuery(ArchivedAccountQuery query, Map<?, ?> __transportableCallContext) getAllAccounts(Map<?, ?> __transportableCallContext) getCustomNote(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) saveCustomNote(net.anotheria.portalkit.services.common.AccountId accountId, String customNote, Map<?, ?> __transportableCallContext) updateAccount(ArchivedAccount toUpdate, Map<?, ?> __transportableCallContext) Methods inherited from interface org.distributeme.core.lifecycle.ServiceAdapter
getCreationTimestamp, getLastAccessTimestamp
-
Method Details
-
getAccount
List getAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getAccounts
List getAccounts(List<net.anotheria.portalkit.services.common.AccountId> accountId, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
deleteAccount
List deleteAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
deleteAccountsByEmail
List deleteAccountsByEmail(String pattern, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
updateAccount
List updateAccount(ArchivedAccount toUpdate, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
createAccount
List createAccount(ArchivedAccount toUpdate, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getCustomNote
List getCustomNote(net.anotheria.portalkit.services.common.AccountId accountId, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
saveCustomNote
List saveCustomNote(net.anotheria.portalkit.services.common.AccountId accountId, String customNote, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getAccountByName
List getAccountByName(String name, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getAccountByEmail
List getAccountByEmail(String email, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getAllAccounts
List getAllAccounts(Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException -
getAccountsByQuery
List getAccountsByQuery(ArchivedAccountQuery query, Map<?, ?> __transportableCallContext) throws AccountArchiveServiceException, RemoteException
-