Skip to content

Commit

Permalink
enrich/bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AVRMEEST committed Mar 8, 2021
1 parent 3f43cbf commit 47e23d9
Show file tree
Hide file tree
Showing 18 changed files with 25,890 additions and 120 deletions.
4,879 changes: 4,879 additions & 0 deletions FFDC/JMSCC0001.FDC

Large diffs are not rendered by default.

8,387 changes: 8,387 additions & 0 deletions FFDC/JMSCC0002.FDC

Large diffs are not rendered by default.

4,901 changes: 4,901 additions & 0 deletions FFDC/JMSCC0003.FDC

Large diffs are not rendered by default.

2,615 changes: 2,615 additions & 0 deletions FFDC/JMSCC0004.FDC

Large diffs are not rendered by default.

4,725 changes: 4,725 additions & 0 deletions FFDC/JMSCC0005.FDC

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions jhipster-jdl.jh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ entity Flow {
entity Endpoint {
endpointType EndpointType,
compponentType ComponentType,
uri String,
options String,
uri TextBlob,
options TextBlob,
responseId Integer
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gateway",
"version": "3.3.0",
"version": "3.4.0",
"description": "A message gateway based on Apache camel",
"private": true,
"license": "Apache License 2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assimbly/gateway/GatewayApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private static void logApplicationStartup(Environment env) {
"External URL: \t\t{}://{}:{}{}\n\t" +
"Java Version: \t\t{}\n\t" +
"Java WorkingDir: \t{}\n\t" +
"Apache Camel version: \t3.7.1 \n\t" +
"Apache Camel version: \t3.7.2 \n\t" +
"Profile(s): \t\t{}\n----------------------------------------------------------",
applicationName,
applicationVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,13 @@ public void setXMLEnvironmentVariablesFromDB(String connectorId) throws Exceptio
environmentValueNode.appendChild(doc.createTextNode(environmentValue));
environmentVariableNode.appendChild(environmentValueNode);

}
// set environmentVariableValue
Boolean environmentEncrypted = environmentVariable.isEncrypted();
Element environmentEncryptedNode = doc.createElement("encrypted");
environmentEncryptedNode.appendChild(doc.createTextNode(environmentEncrypted.toString()));
environmentVariableNode.appendChild(environmentEncryptedNode);

}
}

}
Expand Down
Loading

0 comments on commit 47e23d9

Please sign in to comment.