You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by si...@apache.org on 2010/02/26 23:09:39 UTC

svn commit: r916837 - /labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java

Author: simonetripodi
Date: Fri Feb 26 22:09:39 2010
New Revision: 916837

URL: http://svn.apache.org/viewvc?rev=916837&view=rev
Log:
minor javadoc format

Modified:
    labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java

Modified: labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java
URL: http://svn.apache.org/viewvc/labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java?rev=916837&r1=916836&r2=916837&view=diff
==============================================================================
--- labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java (original)
+++ labs/amber/server/src/main/java/org/apache/labs/amber/server/AccessStorage.java Fri Feb 26 22:09:39 2010
@@ -26,28 +26,28 @@
     /**
      * Stores a new nonce / timestamp pair associated with a consumer key.
      *
-     * @param clientCredentials the consumer to be associated with the access
-     * @param timestamp the timestamp of the request
-     * @param nonce the nonce associated with the timestamp
-     * @throws AccessStorageException if a backend error occurs
+     * @param clientCredentials the consumer to be associated with the access.
+     * @param timestamp the timestamp of the request.
+     * @param nonce the nonce associated with the timestamp.
+     * @throws AccessStorageException if a backend error occurs.
      */
     void add(String clientCredentials, long timestamp, String nonce) throws AccessStorageException;
 
     /**
      * Get the last access (by timestamp) of a consumer.
      *
-     * @param clientCredentials the consumer whose access needs to be read
-     * @return the access object
-     * @throws AccessStorageException if a backend error occurs
+     * @param clientCredentials the consumer whose access needs to be read.
+     * @return the access object.
+     * @throws AccessStorageException if a backend error occurs.
      */
     Access getLastAccess(String clientCredentials) throws AccessStorageException;
 
     /**
      * Remove a consumer access.
      *
-     * @param clientCredentials the consumer key
-     * @param timestamp the timestamp
-     * @throws AccessStorageException if a backend error occurs
+     * @param clientCredentials the consumer key.
+     * @param timestamp the timestamp.
+     * @throws AccessStorageException if a backend error occurs.
      */
     void remove(String clientCredentials, long timestamp) throws AccessStorageException;
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org