Rename ContactSearchProcessor to UserSearchProcessor

This commit is contained in:
Kai S. K. Engelbart 2020-07-13 21:34:21 +02:00
parent a5a7992a0a
commit d6dfd2ffc9
No known key found for this signature in database
GPG Key ID: 0A48559CA32CB48F
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ public class Startup {
new GroupMessageStatusChangeProcessor(), new GroupMessageStatusChangeProcessor(),
new UserStatusChangeProcessor(), new UserStatusChangeProcessor(),
new IDGeneratorRequestProcessor(), new IDGeneratorRequestProcessor(),
new ContactSearchProcessor(), new UserSearchProcessor(),
new ContactOperationProcessor()))); new ContactOperationProcessor())));
// Initialize the current message ID // Initialize the current message ID

View File

@ -13,14 +13,14 @@ import envoy.server.net.ObjectWriteProxy;
/** /**
* Project: <strong>envoy-server-standalone</strong><br> * Project: <strong>envoy-server-standalone</strong><br>
* File: <strong>ContactSearchProcessor.java</strong><br> * File: <strong>UserSearchProcessor.java</strong><br>
* Created: <strong>08.02.2020</strong><br> * Created: <strong>08.02.2020</strong><br>
* *
* @author Kai S. K. Engelbart * @author Kai S. K. Engelbart
* @author Maximilian K&auml;fer * @author Maximilian K&auml;fer
* @since Envoy Server Standalone v0.1-alpha * @since Envoy Server Standalone v0.1-alpha
*/ */
public class ContactSearchProcessor implements ObjectProcessor<UserSearchRequest> { public class UserSearchProcessor implements ObjectProcessor<UserSearchRequest> {
/** /**
* Writes a list of contacts to the client containing all {@link Contact}s * Writes a list of contacts to the client containing all {@link Contact}s