You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2015/11/12 09:18:34 UTC

[23/33] camel git commit: Component docs. Those are common

Component docs. Those are common


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/378eb327
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/378eb327
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/378eb327

Branch: refs/heads/camel-2.16.x
Commit: 378eb32706d09245729fb7a7aedba951870256bf
Parents: 8fcc242
Author: Claus Ibsen <da...@apache.org>
Authored: Wed Nov 11 20:58:47 2015 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Nov 12 09:20:37 2015 +0100

----------------------------------------------------------------------
 .../processor/XmlSignatureConfiguration.java          | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/378eb327/components/camel-xmlsecurity/src/main/java/org/apache/camel/component/xmlsecurity/processor/XmlSignatureConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-xmlsecurity/src/main/java/org/apache/camel/component/xmlsecurity/processor/XmlSignatureConfiguration.java b/components/camel-xmlsecurity/src/main/java/org/apache/camel/component/xmlsecurity/processor/XmlSignatureConfiguration.java
index 3c4d3c3..5d72aa1 100644
--- a/components/camel-xmlsecurity/src/main/java/org/apache/camel/component/xmlsecurity/processor/XmlSignatureConfiguration.java
+++ b/components/camel-xmlsecurity/src/main/java/org/apache/camel/component/xmlsecurity/processor/XmlSignatureConfiguration.java
@@ -34,19 +34,19 @@ public abstract class XmlSignatureConfiguration implements Cloneable, CamelConte
     private CamelContext context;
     private URIDereferencer uriDereferencer;
 
-    @UriParam(label = "verify,sign")
+    @UriParam(label = "common")
     private String baseUri;
-    @UriParam(label = "verify,sign")
+    @UriParam(label = "common")
     private Map<String, ?> cryptoContextProperties;
-    @UriParam(label = "verify,sign", defaultValue = "true")
+    @UriParam(label = "common", defaultValue = "true")
     private Boolean disallowDoctypeDecl = Boolean.TRUE;
-    @UriParam(label = "verify,sign", defaultValue = "false")
+    @UriParam(label = "common", defaultValue = "false")
     private Boolean omitXmlDeclaration = Boolean.FALSE;
-    @UriParam(label = "verify,sign", defaultValue = "true")
+    @UriParam(label = "common", defaultValue = "true")
     private Boolean clearHeaders = Boolean.TRUE;
-    @UriParam(label = "verify,sign")
+    @UriParam(label = "common")
     private String schemaResourceUri;
-    @UriParam(label = "verify,sign")
+    @UriParam(label = "common")
     private String outputXmlEncoding;
 
     public XmlSignatureConfiguration() {