ISSUE-33 #97

Closed
kruti wants to merge 88 commits from kruti/CFTunnels:ISSUE-33 into main
Showing only changes of commit cef7dd18e2 - Show all commits

View File

@ -8,6 +8,16 @@ public class Ingress {
private String service;
private String hostname;
private Map<String, Object> originRequest;
private String path;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public static boolean deleteByHostName(List<Ingress> ingressList, String toBeDeleted){
return ingressList.removeIf(ingress -> ingress.getHostname() != null && ingress.getHostname().equals(toBeDeleted));