This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 1cc487cb7eb Regen for commit c6e1d553ab1d1603bec39ddac590c3dc70e92c88
1cc487cb7eb is described below
commit 1cc487cb7eb7b2b99b9cfd8b957966367acc469f
Author: orpiske <[email protected]>
AuthorDate: Fri Jan 27 16:24:23 2023 +0000
Regen for commit c6e1d553ab1d1603bec39ddac590c3dc70e92c88
Signed-off-by: GitHub <[email protected]>
---
.../org/apache/camel/catalog/components/as2.json | 1 -
.../endpoint/dsl/AS2EndpointBuilderFactory.java | 228 ++++++++++-----------
2 files changed, 114 insertions(+), 115 deletions(-)
diff --git
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
index 1ccfe567eb8..2467979125d 100644
---
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
+++
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
@@ -57,7 +57,6 @@
"targetHostname": { "kind": "parameter", "displayName": "Target Hostname",
"group": "common", "label": "", "required": false, "type": "string",
"javaType": "java.lang.String", "deprecated": false, "autowired": false,
"secret": false, "configurationClass":
"org.apache.camel.component.as2.AS2Configuration", "configurationField":
"configuration", "description": "The host name (IP or DNS name) of target
host." },
"targetPortNumber": { "kind": "parameter", "displayName": "Target Port
Number", "group": "common", "label": "", "required": false, "type": "integer",
"javaType": "java.lang.Integer", "deprecated": false, "autowired": false,
"secret": false, "defaultValue": "80", "configurationClass":
"org.apache.camel.component.as2.AS2Configuration", "configurationField":
"configuration", "description": "The port number of target host. -1 indicates
the scheme default port." },
"userAgent": { "kind": "parameter", "displayName": "User Agent", "group":
"common", "label": "", "required": false, "type": "string", "javaType":
"java.lang.String", "deprecated": false, "autowired": false, "secret": false,
"defaultValue": "Camel AS2 Client Endpoint", "configurationClass":
"org.apache.camel.component.as2.AS2Configuration", "configurationField":
"configuration", "description": "The value included in the User-Agent message
header identifying the AS2 user agent." },
- "validateSigningCertificateChain": { "kind": "parameter", "displayName":
"Validate Signing Certificate Chain", "group": "common", "label": "",
"required": false, "type": "object", "javaType":
"java.security.cert.Certificate[]", "deprecated": false, "autowired": false,
"secret": false, "configurationClass":
"org.apache.camel.component.as2.AS2Configuration", "configurationField":
"configuration", "description": "Certifiates to validate the messages signature
against. If not supplied, v [...]
"exceptionHandler": { "kind": "parameter", "displayName": "Exception
Handler", "group": "consumer (advanced)", "label": "consumer,advanced",
"required": false, "type": "object", "javaType":
"org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.",
"deprecated": false, "autowired": false, "secret": false, "description": "To
let the consumer use a custom ExceptionHandler. Notice if the option
bridgeErrorHandler is enabled then this option is not in use. By default the
con [...]
"exchangePattern": { "kind": "parameter", "displayName": "Exchange
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced",
"required": false, "type": "object", "javaType":
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut",
"InOptionalOut" ], "deprecated": false, "autowired": false, "secret": false,
"description": "Sets the exchange pattern when the consumer creates an
exchange." },
"lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start
Producer", "group": "producer (advanced)", "label": "producer,advanced",
"required": false, "type": "boolean", "javaType": "boolean", "deprecated":
false, "autowired": false, "secret": false, "defaultValue": false,
"description": "Whether the producer should be started lazy (on the first
message). By starting lazy you can use this to allow CamelContext and routes to
startup in situations where a producer may other [...]
diff --git
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
index 0e4765d8b13..6a3a6e710d1 100644
---
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
+++
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/AS2EndpointBuilderFactory.java
@@ -584,6 +584,44 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("userAgent", userAgent);
return this;
}
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option is a:
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointConsumerBuilder validateSigningCertificateChain(
+ java.security.cert.Certificate[]
validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option will be converted to a
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointConsumerBuilder validateSigningCertificateChain(
+ String validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
/**
* The key used to encrypt the EDI message.
*
@@ -811,44 +849,6 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("signingPrivateKey", signingPrivateKey);
return this;
}
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option is a:
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointConsumerBuilder validateSigningCertificateChain(
- java.security.cert.Certificate[]
validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option will be converted to a
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointConsumerBuilder validateSigningCertificateChain(
- String validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
}
/**
@@ -1482,6 +1482,44 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("userAgent", userAgent);
return this;
}
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option is a:
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointProducerBuilder validateSigningCertificateChain(
+ java.security.cert.Certificate[]
validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option will be converted to a
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointProducerBuilder validateSigningCertificateChain(
+ String validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
/**
* The key used to encrypt the EDI message.
*
@@ -1709,44 +1747,6 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("signingPrivateKey", signingPrivateKey);
return this;
}
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option is a:
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointProducerBuilder validateSigningCertificateChain(
- java.security.cert.Certificate[]
validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option will be converted to a
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointProducerBuilder validateSigningCertificateChain(
- String validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
}
/**
@@ -2353,6 +2353,44 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("userAgent", userAgent);
return this;
}
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option is a:
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointBuilder validateSigningCertificateChain(
+ java.security.cert.Certificate[]
validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
+ /**
+ * Certifiates to validate the messages signature against. If not
+ * supplied, validation will not take place. Server: validates the
+ * received message. Client: not yet implemented, should validate the
+ * MDN.
+ *
+ * The option will be converted to a
+ * <code>java.security.cert.Certificate[]</code> type.
+ *
+ * Group: security
+ *
+ * @param validateSigningCertificateChain the value to set
+ * @return the dsl builder
+ */
+ default AS2EndpointBuilder validateSigningCertificateChain(
+ String validateSigningCertificateChain) {
+ doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
+ return this;
+ }
/**
* The key used to encrypt the EDI message.
*
@@ -2578,44 +2616,6 @@ public interface AS2EndpointBuilderFactory {
doSetProperty("signingPrivateKey", signingPrivateKey);
return this;
}
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option is a:
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointBuilder validateSigningCertificateChain(
- java.security.cert.Certificate[]
validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
- /**
- * Certifiates to validate the messages signature against. If not
- * supplied, validation will not take place. Server: validates the
- * received message. Client: not yet implemented, should validate the
- * MDN.
- *
- * The option will be converted to a
- * <code>java.security.cert.Certificate[]</code> type.
- *
- * Group: security
- *
- * @param validateSigningCertificateChain the value to set
- * @return the dsl builder
- */
- default AS2EndpointBuilder validateSigningCertificateChain(
- String validateSigningCertificateChain) {
- doSetProperty("validateSigningCertificateChain",
validateSigningCertificateChain);
- return this;
- }
}
/**