@@ -59,7 +59,7 @@ public class ContactCriteria extends BaseCriteria implements Serializable {
5959 public static final String BIRTHDATE_DD = "birthdateDD" ;
6060 public static final String RETURNING_TRAVELER = "returningTraveler" ;
6161 public static final String EVENT_LIKE = "eventLike" ;
62- public static final String ONLY_CONTACTS_WITH_SOURCE_CASE_IN_EVENT = "onlyContactsWithSourceCaseInEvent " ;
62+ public static final String ONLY_CONTACTS_SHARING_EVENT_WITH_SOURCE_CASE = "onlyContactsSharingEventWithSourceCase " ;
6363
6464 private static final long serialVersionUID = 5114202107622217837L ;
6565
@@ -109,7 +109,7 @@ public class ContactCriteria extends BaseCriteria implements Serializable {
109109 private YesNoUnknown returningTraveler ;
110110 private String eventLike ;
111111 private String eventUuid ;
112- private Boolean onlyContactsWithSourceCaseInEvent ;
112+ private Boolean onlyContactsSharingEventWithSourceCase ;
113113
114114 public UserRole getReportingUserRole () {
115115 return reportingUserRole ;
@@ -508,17 +508,17 @@ public ContactCriteria eventUuid(String eventUuid) {
508508 return this ;
509509 }
510510
511- public void setOnlyContactsWithSourceCaseInEvent (Boolean onlyContactsWithSourceCaseInEvent ) {
512- this .onlyContactsWithSourceCaseInEvent = onlyContactsWithSourceCaseInEvent ;
511+ public void setOnlyContactsSharingEventWithSourceCase (Boolean onlyContactsSharingEventWithSourceCase ) {
512+ this .onlyContactsSharingEventWithSourceCase = onlyContactsSharingEventWithSourceCase ;
513513 }
514514
515515 @ IgnoreForUrl
516- public Boolean getOnlyContactsWithSourceCaseInEvent () {
517- return onlyContactsWithSourceCaseInEvent ;
516+ public Boolean getOnlyContactsSharingEventWithSourceCase () {
517+ return onlyContactsSharingEventWithSourceCase ;
518518 }
519519
520- public ContactCriteria onlyContactsWithSourceCaseInEvent (Boolean onlyContactsWithSourceCaseInEvent ) {
521- this .onlyContactsWithSourceCaseInEvent = onlyContactsWithSourceCaseInEvent ;
520+ public ContactCriteria onlyContactsSharingEventWithSourceCase (Boolean onlyContactsSharingEventWithSourceCase ) {
521+ this .onlyContactsSharingEventWithSourceCase = onlyContactsSharingEventWithSourceCase ;
522522 return this ;
523523 }
524524}
0 commit comments