You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by om...@apache.org on 2011/03/04 05:17:18 UTC

svn commit: r1077460 - /hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java

Author: omalley
Date: Fri Mar  4 04:17:17 2011
New Revision: 1077460

URL: http://svn.apache.org/viewvc?rev=1077460&view=rev
Log:
commit 1e14c13dad93bb75d2ab8ba397128ad1a00fd693
Author: Jitendra Nath Pandey <jitendra@sufferhome-lm.(none)>
Date:   Thu May 13 14:04:39 2010 -0700

    HDFS-1146 from https://issues.apache.org/jira/secure/attachment/12444261/HDFS-1146-y20.1.patch
    
    +++ b/YAHOO-CHANGES.txt
    +    HDFS-1146. Javadoc for getDelegationTokenSecretManager in FSNamesystem.
    +    (jitendra)
    +

Modified:
    hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java

Modified: hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java?rev=1077460&r1=1077459&r2=1077460&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java (original)
+++ hadoop/common/branches/branch-0.20-security-patches/src/hdfs/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java Fri Mar  4 04:17:17 2011
@@ -4953,6 +4953,10 @@ public class FSNamesystem implements FSC
         DELEGATION_TOKEN_REMOVER_SCAN_INTERVAL, this);
   }
 
+  /**
+   * Returns the DelegationTokenSecretManager instance in the namesystem.
+   * @return delegation token secret manager object
+   */
   public DelegationTokenSecretManager getDelegationTokenSecretManager() {
     return dtSecretManager;
   }