Author: vsiveton
Date: Thu Mar  5 13:22:12 2009
New Revision: 750451

URL: http://svn.apache.org/viewvc?rev=750451&view=rev
Log:
o javadoc typo

Modified:
    
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityToken.java
    
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityTokenDecoder.java
    
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/crypto/BasicBlobCrypter.java

Modified: 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityToken.java
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityToken.java?rev=750451&r1=750450&r2=750451&view=diff
==============================================================================
--- 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityToken.java
 (original)
+++ 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityToken.java
 Thu Mar  5 13:22:12 2009
@@ -28,7 +28,7 @@
 /**
  * Authentication based on a provided BlobCrypter.
  *
- * Wire format is "<container>:<encrypted-and-signed-token>"
+ * Wire format is "&lt;container&gt;:&lt;encrypted-and-signed-token&gt;"
  *
  * Container is included so different containers can use different security 
tokens if necessary.
  */

Modified: 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityTokenDecoder.java
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityTokenDecoder.java?rev=750451&r1=750450&r2=750451&view=diff
==============================================================================
--- 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityTokenDecoder.java
 (original)
+++ 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/auth/BlobCrypterSecurityTokenDecoder.java
 Thu Mar  5 13:22:12 2009
@@ -39,10 +39,10 @@
  * signedFetchDomain: oauth_consumer_key value to use for signed fetch using 
default key.
  *
  * Creating a key is best done with a command line like this:
- *
+ * <pre>
  *     dd if=/dev/random bs=32 count=1  | openssl base64 > /tmp/key.txt
- *
- * Wire format is "<container>:<encrypted-and-signed-token>"
+ * </pre>
+ * Wire format is "&lt;container&gt;:&lt;encrypted-and-signed-token&gt;"
  */
 @Singleton
 public class BlobCrypterSecurityTokenDecoder implements SecurityTokenDecoder {

Modified: 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/crypto/BasicBlobCrypter.java
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/crypto/BasicBlobCrypter.java?rev=750451&r1=750450&r2=750451&view=diff
==============================================================================
--- 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/crypto/BasicBlobCrypter.java
 (original)
+++ 
incubator/shindig/trunk/java/common/src/main/java/org/apache/shindig/common/crypto/BasicBlobCrypter.java
 Thu Mar  5 13:22:12 2009
@@ -67,8 +67,9 @@
    * in the file, whitespace trimmed from either end, as UTF-8 bytes.
    *
    * The following *nix command line will create an excellent key:
-   *
+   * <pre>
    * dd if=/dev/random bs=32 count=1  | openssl base64 > /tmp/key.txt
+   * </pre>
    *
    * @throws IOException if the file can't be read.
    */


Reply via email to