You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2011/11/08 17:12:17 UTC

svn commit: r1199324 - /cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java

Author: coheigea
Date: Tue Nov  8 16:12:16 2011
New Revision: 1199324

URL: http://svn.apache.org/viewvc?rev=1199324&view=rev
Log:
Correcting some javadoc in the STS.

Modified:
    cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java

Modified: cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java
URL: http://svn.apache.org/viewvc/cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java?rev=1199324&r1=1199323&r2=1199324&view=diff
==============================================================================
--- cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java (original)
+++ cxf/trunk/services/sts/sts-core/src/main/java/org/apache/cxf/sts/SignatureProperties.java Tue Nov  8 16:12:16 2011
@@ -19,7 +19,8 @@
 package org.apache.cxf.sts;
 
 /**
- * This class contains various configuration properties that can be used to sign an issued token.
+ * This class contains various configuration properties that can be used to sign an issued token,
+ * or generate a symmetric key in the STS.
  */
 public class SignatureProperties {
     private boolean useKeyValue;
@@ -44,15 +45,14 @@ public class SignatureProperties {
     }
 
     /**
-     * Get the key size to use when generating a symmetric key to sign an issued token. The default is
-     * 256 bits.
+     * Get the key size to use when generating a symmetric key. The default is 256 bits.
      */
     public long getKeySize() {
         return keySize;
     }
 
     /**
-     * Set the key size to use when generating a symmetric key to sign an issued token. The default is
+     * Set the key size to use when generating a symmetric key. The default is
      * 256 bits.
      */
     public void setKeySize(long keySize) {
@@ -60,16 +60,16 @@ public class SignatureProperties {
     }
     
     /**
-     * Get the minimum key size to use when generating a symmetric key to sign an issued token. The
-     * requestor can specify a KeySize value to use. The default is 128 bits.
+     * Get the minimum key size to use when generating a symmetric key. The requestor can 
+     * specify a KeySize value to use. The default is 128 bits.
      */
     public long getMinimumKeySize() {
         return minimumKeySize;
     }
 
     /**
-     * Set the minimum key size to use when generating a symmetric key to sign an issued token. The
-     * requestor can specify a KeySize value to use. The default is 128 bits.
+     * Set the minimum key size to use when generating a symmetric key. The requestor can
+     * specify a KeySize value to use. The default is 128 bits.
      */
     public void setMinimumKeySize(long minimumKeySize) {
         this.minimumKeySize = minimumKeySize;