fixed minor bug

This commit is contained in:
delvh 2020-04-02 19:49:56 +02:00
parent ffe1eb3ee1
commit 8bf68bda1a
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
package envoy.event.contact; package envoy.event.contact;
import envoy.data.User; import envoy.data.Contact;
import envoy.event.ElementOperation; import envoy.event.ElementOperation;
import envoy.event.Event; import envoy.event.Event;
@ -14,7 +14,7 @@ import envoy.event.Event;
* @author Maximilian Käfer * @author Maximilian Käfer
* @since Envoy Common v0.2-alpha * @since Envoy Common v0.2-alpha
*/ */
public class ContactOperationEvent extends Event<User> { public class ContactOperationEvent extends Event<Contact> {
private final ElementOperation operationType; private final ElementOperation operationType;
@ -27,7 +27,7 @@ public class ContactOperationEvent extends Event<User> {
* @param operationType the type of operation to perform * @param operationType the type of operation to perform
* @since Envoy Common v0.2-alpha * @since Envoy Common v0.2-alpha
*/ */
public ContactOperationEvent(User contact, ElementOperation operationType) { public ContactOperationEvent(Contact contact, ElementOperation operationType) {
super(contact); super(contact);
this.operationType = operationType; this.operationType = operationType;
} }

View File

@ -2,11 +2,11 @@ package envoy.event.contact;
import java.util.List; import java.util.List;
import envoy.data.User; import envoy.data.Contact;
import envoy.event.Event; import envoy.event.Event;
/** /**
* Contains a list of {@link User}s for which a search was performed.<br> * Contains a list of {@link Contact}s for which a search was performed.<br>
* <br> * <br>
* Project: <strong>envoy-common</strong><br> * Project: <strong>envoy-common</strong><br>
* File: <strong>ContactSearchResult.java</strong><br> * File: <strong>ContactSearchResult.java</strong><br>
@ -15,7 +15,7 @@ import envoy.event.Event;
* @author Kai S. K. Engelbart * @author Kai S. K. Engelbart
* @since Envoy Common v0.2-alpha * @since Envoy Common v0.2-alpha
*/ */
public class ContactSearchResult extends Event<List<User>> { public class ContactSearchResult extends Event<List<Contact>> {
private static final long serialVersionUID = 0L; private static final long serialVersionUID = 0L;
@ -25,5 +25,5 @@ public class ContactSearchResult extends Event<List<User>> {
* @param users the users found during the search * @param users the users found during the search
* @since Envoy Common v0.2-alpha * @since Envoy Common v0.2-alpha
*/ */
public ContactSearchResult(List<User> users) { super(users); } public ContactSearchResult(List<Contact> users) { super(users); }
} }