Skip to content

Commit 1e85c97

Browse files
committed
CAMEL-16861: Update docs
1 parent e8111c0 commit 1e85c97

17 files changed

Lines changed: 1060 additions & 236 deletions

File tree

catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/pgp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dataformat": {
33
"kind": "dataformat",
44
"name": "pgp",
5-
"title": "PGP",
5+
"title": "PGP (Pretty Good Privacy Cryptographic)",
66
"description": "Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.",
77
"deprecated": false,
88
"firstVersion": "2.9.0",

catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/xmlSecurity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Encrypt and decrypt XML payloads using Apache Santuario.",
77
"deprecated": false,
88
"firstVersion": "2.0.0",
9-
"label": "dataformat,transformation,xml",
9+
"label": "dataformat,transformation,security,xml",
1010
"javaType": "org.apache.camel.dataformat.xmlsecurity.XMLSecurityDataFormat",
1111
"supportLevel": "Stable",
1212
"groupId": "org.apache.camel",

catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/pgp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"model": {
33
"kind": "model",
44
"name": "pgp",
5-
"title": "PGP",
5+
"title": "PGP (Pretty Good Privacy Cryptographic)",
66
"description": "Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.",
77
"deprecated": false,
88
"firstVersion": "2.9.0",

catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/xmlSecurity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Encrypt and decrypt XML payloads using Apache Santuario.",
77
"deprecated": false,
88
"firstVersion": "2.0.0",
9-
"label": "dataformat,transformation,xml",
9+
"label": "dataformat,transformation,security,xml",
1010
"javaType": "org.apache.camel.model.dataformat.XMLSecurityDataFormat",
1111
"abstract": false,
1212
"input": false,

components/camel-crypto-pgp/src/generated/resources/META-INF/org/apache/camel/converter/crypto/pgp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dataformat": {
33
"kind": "dataformat",
44
"name": "pgp",
5-
"title": "PGP",
5+
"title": "PGP (Pretty Good Privacy Cryptographic)",
66
"description": "Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.",
77
"deprecated": false,
88
"firstVersion": "2.9.0",

components/camel-crypto-pgp/src/main/docs/pgp-dataformat.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
= PGP DataFormat
2-
:doctitle: PGP
1+
= PGP (Pretty Good Privacy Cryptographic) DataFormat
2+
:doctitle: PGP (Pretty Good Privacy Cryptographic)
33
:shortname: pgp
44
:artifactid: camel-crypto-pgp
55
:description: Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.

components/camel-xmlsecurity/src/generated/resources/META-INF/org/apache/camel/dataformat/xmlsecurity/xmlSecurity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Encrypt and decrypt XML payloads using Apache Santuario.",
77
"deprecated": false,
88
"firstVersion": "2.0.0",
9-
"label": "dataformat,transformation,xml",
9+
"label": "dataformat,transformation,security,xml",
1010
"javaType": "org.apache.camel.dataformat.xmlsecurity.XMLSecurityDataFormat",
1111
"supportLevel": "Stable",
1212
"groupId": "org.apache.camel",

core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/dataformat/pgp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"model": {
33
"kind": "model",
44
"name": "pgp",
5-
"title": "PGP",
5+
"title": "PGP (Pretty Good Privacy Cryptographic)",
66
"description": "Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.",
77
"deprecated": false,
88
"firstVersion": "2.9.0",

core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/dataformat/xmlSecurity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Encrypt and decrypt XML payloads using Apache Santuario.",
77
"deprecated": false,
88
"firstVersion": "2.0.0",
9-
"label": "dataformat,transformation,xml",
9+
"label": "dataformat,transformation,security,xml",
1010
"javaType": "org.apache.camel.model.dataformat.XMLSecurityDataFormat",
1111
"abstract": false,
1212
"input": false,

core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/PGPDataFormat.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
/**
3030
* Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP.
3131
*/
32-
@Metadata(firstVersion = "2.9.0", label = "dataformat,transformation,security", title = "PGP")
32+
@Metadata(firstVersion = "2.9.0", label = "dataformat,transformation,security",
33+
title = "PGP (Pretty Good Privacy Cryptographic)")
3334
@XmlRootElement(name = "pgp")
3435
@XmlAccessorType(XmlAccessType.FIELD)
3536
public class PGPDataFormat extends DataFormatDefinition {

0 commit comments

Comments
 (0)