This repository has been archived on 2021-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
envoy/common/src/main/java/envoy/event/contact/UserSearchRequest.java

25 lines
530 B
Java

package envoy.event.contact;
import envoy.event.Event;
/**
* Requests a user search from the server.
*
* @author Maximilian Käfer
* @since Envoy Common v0.2-alpha
*/
public final class UserSearchRequest extends Event<String> {
private static final long serialVersionUID = 0L;
/**
* Initializes a {@link UserSearchRequest}.
*
* @param searchPhrase the search phrase to use in the user search
* @since Envoy Common v0.2-alpha
*/
public UserSearchRequest(String searchPhrase) {
super(searchPhrase);
}
}