You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From @umerkayani:
In Vibesa we require a more efficient version of searchUsers method of connector4java component. Right now we have the method as follows:
public SCIMSearchResult<User> searchUsers(Query query, AccessToken accessToken)
and we need something like this:
public List<SCIMSearchResult<User>> searchUsers(List<Query> queries, AccessToken accessToken)
From @umerkayani:
In Vibesa we require a more efficient version of searchUsers method of connector4java component. Right now we have the method as follows:
and we need something like this: