1 package com.atlassian.user.search.query;
2
3 /**
4 * Designates that the {@link Query} is looking up users, and will return
5 * a {@link com.atlassian.user.User} object for each item of the result.
6 */
7 public interface UserQuery extends Query
8 {
9 }