Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: overriding hashcode and equal in MergedUrls class #1525

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions libs/dao/src/main/java/com/akto/dto/filter/MergedUrls.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import org.bson.types.ObjectId;

import java.util.Objects;

public class MergedUrls {
private ObjectId id;

Expand All @@ -22,6 +24,19 @@ public MergedUrls(String url, String method, int apiCollectionId) {
this.apiCollectionId = apiCollectionId;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MergedUrls that = (MergedUrls) o;
return apiCollectionId == that.apiCollectionId && Objects.equals(url, that.url) && Objects.equals(method, that.method);
}

@Override
public int hashCode() {
return Objects.hash(url, method, apiCollectionId);
}

public ObjectId getId() {
return id;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public static boolean isEnglishWord(String word) {
return dictFilter.mightContain(word);
}

// Return false if any non-empty word in the array is not contained in the dictionary.
private static boolean wordsChecker(String[] words) {
for(String seg : words) {
if(!seg.isEmpty() && !dictFilter.mightContain(seg.toUpperCase())) return false;
Expand Down
Loading