Enable/disable kie logging #271

Allow to define a JMT token to give access to a project over reverse proxy #274
Hot deploy management #269 => UI for defiinition
This commit is contained in:
nheron 2021-07-24 22:11:11 +02:00
commit 488870e587
32 changed files with 664 additions and 167 deletions

View file

@ -23,6 +23,8 @@ public class ChtijbugObjectRequest {
private SessionContext sessionLogging;
private boolean disableLogging;
public String getTransactionID() {
return transactionID;
}
@ -102,4 +104,12 @@ public class ChtijbugObjectRequest {
public void setVersion(String version) {
this.version = version;
}
public boolean isDisableLogging() {
return disableLogging;
}
public void setDisableLogging(boolean disableLogging) {
this.disableLogging = disableLogging;
}
}

View file

@ -6,6 +6,10 @@ import java.util.List;
public class ReverseProxyUpdate {
private String path;
private String tokenUUID;
private String containerID;
List<String> serverNames = new ArrayList<>();
public String getPath() {
@ -16,6 +20,14 @@ public class ReverseProxyUpdate {
this.path = path;
}
public String getTokenUUID() {
return tokenUUID;
}
public void setTokenUUID(String tokenUUID) {
this.tokenUUID = tokenUUID;
}
public List<String> getServerNames() {
return serverNames;
}
@ -23,4 +35,12 @@ public class ReverseProxyUpdate {
public void setServerNames(List<String> serverNames) {
this.serverNames = serverNames;
}
public void setContainerID(String containerID) {
this.containerID = containerID;
}
public String getContainerID() {
return containerID;
}
}