41 lines
914 B
Java
41 lines
914 B
Java
package com.hithomelabs.cftunnels.Models;
|
|
|
|
import com.fasterxml.jackson.annotation.*;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
@JsonRootName("config")
|
|
public class Config {
|
|
|
|
private List<Ingress> ingress;
|
|
|
|
private Map<String, Object> originRequest;
|
|
|
|
@JsonProperty("warp-routing")
|
|
private Map<String, Object> warpRouting;
|
|
|
|
public List<Ingress> getIngress() {
|
|
return ingress;
|
|
}
|
|
|
|
public void setIngress(List<Ingress> ingress) {
|
|
this.ingress = ingress;
|
|
}
|
|
|
|
public Map<String, Object> getOriginRequest() {
|
|
return originRequest;
|
|
}
|
|
|
|
public void setOriginRequest(Map<String, Object> originRequest) {
|
|
this.originRequest = originRequest;
|
|
}
|
|
|
|
public Map<String, Object> getWarpRouting() {
|
|
return warpRouting;
|
|
}
|
|
|
|
public void setWarpRouting(Map<String, Object> warpRouting) {
|
|
this.warpRouting = warpRouting;
|
|
}
|
|
}
|