Package net.worcade.client.api
Interface SearchApi
-
public interface SearchApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Result<? extends Collection<? extends ReferenceWithName>>searchByEmail(String email)Result<? extends Collection<? extends RemoteIdSearchResult>>searchByRemoteId(String remoteIdType, String remoteId)Search for entities with remote ids for the current authenticated application.
-
-
-
Method Detail
-
searchByRemoteId
Result<? extends Collection<? extends RemoteIdSearchResult>> searchByRemoteId(String remoteIdType, String remoteId)
Search for entities with remote ids for the current authenticated application.- Parameters:
remoteIdType- Return all entities with the given type, regardless of value. If null, return all entities with a remote id.remoteId- Return all entities with the given id value. This parameter is ignored if `remoteIdType` is null.
-
searchByEmail
Result<? extends Collection<? extends ReferenceWithName>> searchByEmail(String email)
-
-