Repository: cxf Updated Branches: refs/heads/master ca0a43521 -> 2fc83b76e
Config update Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/2fc83b76 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/2fc83b76 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/2fc83b76 Branch: refs/heads/master Commit: 2fc83b76e7bc15937ba53acb5106b1bac4e22cd4 Parents: 9c4af77 Author: Colm O hEigeartaigh <[email protected]> Authored: Fri Oct 16 14:33:53 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Fri Oct 16 14:34:01 2015 +0100 ---------------------------------------------------------------------- .../cxf/rs/security/jose/common/JoseConstants.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/2fc83b76/rt/rs/security/jose/jose-core/src/main/java/org/apache/cxf/rs/security/jose/common/JoseConstants.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/jose/jose-core/src/main/java/org/apache/cxf/rs/security/jose/common/JoseConstants.java b/rt/rs/security/jose/jose-core/src/main/java/org/apache/cxf/rs/security/jose/common/JoseConstants.java index 5e46d86..659015f 100644 --- a/rt/rs/security/jose/jose-core/src/main/java/org/apache/cxf/rs/security/jose/common/JoseConstants.java +++ b/rt/rs/security/jose/jose-core/src/main/java/org/apache/cxf/rs/security/jose/common/JoseConstants.java @@ -122,12 +122,14 @@ public final class JoseConstants { public static final String DEPR_RSSEC_SIGNATURE_ALGORITHM = "rs.security.jws.content.signature.algorithm"; /** - * The signature properties file for signature creation. + * The signature properties file for signature creation. If not specified then it falls back to + * RSSEC_SIGNATURE_PROPS. */ public static final String RSSEC_SIGNATURE_OUT_PROPS = "rs.security.signature.out.properties"; /** - * The signature properties file for signature verification. + * The signature properties file for signature verification. If not specified then it falls back to + * RSSEC_SIGNATURE_PROPS. */ public static final String RSSEC_SIGNATURE_IN_PROPS = "rs.security.signature.in.properties"; @@ -192,12 +194,14 @@ public final class JoseConstants { public static final String DEPR_RSSEC_ENCRYPTION_ZIP_ALGORITHM = "rs.security.jwe.zip.algorithm"; /** - * The encryption properties file + * The encryption properties file for encryption creation. If not specified then it falls back to + * RSSEC_ENCRYPTION_PROPS. */ public static final String RSSEC_ENCRYPTION_OUT_PROPS = "rs.security.encryption.out.properties"; /** - * The decryption properties file + * The decryption properties file for decryption. If not specified then it falls back to + * RSSEC_ENCRYPTION_PROPS. */ public static final String RSSEC_ENCRYPTION_IN_PROPS = "rs.security.encryption.in.properties";
