Author: angela
Date: Tue May  3 14:15:33 2016
New Revision: 1742117

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

Modified:
    
jackrabbit/oak/trunk/oak-auth-external/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/external/impl/DefaultSyncConfigImpl.java

Modified: 
jackrabbit/oak/trunk/oak-auth-external/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/external/impl/DefaultSyncConfigImpl.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-auth-external/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/external/impl/DefaultSyncConfigImpl.java?rev=1742117&r1=1742116&r2=1742117&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-auth-external/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/external/impl/DefaultSyncConfigImpl.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-auth-external/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/external/impl/DefaultSyncConfigImpl.java
 Tue May  3 14:15:33 2016
@@ -56,12 +56,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_NAME = "handler.name";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getExpirationTime()
+     * @see DefaultSyncConfig.User#getExpirationTime()
      */
     public static final String PARAM_USER_EXPIRATION_TIME_DEFAULT = "1h";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getExpirationTime()
+     * @see DefaultSyncConfig.User#getExpirationTime()
      */
     @Property(
             label = "User Expiration Time",
@@ -71,12 +71,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_EXPIRATION_TIME = 
"user.expirationTime";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getAutoMembership()
+     * @see DefaultSyncConfig.User#getAutoMembership()
      */
     public static final String[] PARAM_USER_AUTO_MEMBERSHIP_DEFAULT = {};
 
     /**
-     * @see DefaultSyncConfigImpl.User#getAutoMembership()
+     * @see DefaultSyncConfig.User#getAutoMembership()
      */
     @Property(
             label = "User auto membership",
@@ -87,12 +87,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_AUTO_MEMBERSHIP = 
"user.autoMembership";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getPropertyMapping()
+     * @see DefaultSyncConfig.User#getPropertyMapping()
      */
     public static final String[] PARAM_USER_PROPERTY_MAPPING_DEFAULT = 
{"rep:fullname=cn"};
 
     /**
-     * @see DefaultSyncConfigImpl.User#getPropertyMapping()
+     * @see DefaultSyncConfig.User#getPropertyMapping()
      */
     @Property(
             label = "User property mapping",
@@ -104,12 +104,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_PROPERTY_MAPPING = 
"user.propertyMapping";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getPathPrefix()
+     * @see DefaultSyncConfig.User#getPathPrefix()
      */
     public static final String PARAM_USER_PATH_PREFIX_DEFAULT = "";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getPathPrefix()
+     * @see DefaultSyncConfig.User#getPathPrefix()
      */
     @Property(
             label = "User Path Prefix",
@@ -119,12 +119,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_PATH_PREFIX = "user.pathPrefix";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getMembershipExpirationTime()
+     * @see DefaultSyncConfig.User#getMembershipExpirationTime()
      */
     public static final String PARAM_USER_MEMBERSHIP_EXPIRATION_TIME_DEFAULT = 
"1h";
 
     /**
-     * @see DefaultSyncConfigImpl.User#getMembershipExpirationTime()
+     * @see DefaultSyncConfig.User#getMembershipExpirationTime()
      */
     @Property(
             label = "User Membership Expiration",
@@ -134,12 +134,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_MEMBERSHIP_EXPIRATION_TIME = 
"user.membershipExpTime";
 
     /**
-     * @see User#getMembershipNestingDepth()
+     * @see DefaultSyncConfig.User#getMembershipNestingDepth()
      */
     public static final int PARAM_USER_MEMBERSHIP_NESTING_DEPTH_DEFAULT = 0;
 
     /**
-     * @see User#getMembershipNestingDepth()
+     * @see DefaultSyncConfig.User#getMembershipNestingDepth()
      */
     @Property(
             label = "User membership nesting depth",
@@ -152,12 +152,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_USER_MEMBERSHIP_NESTING_DEPTH = 
"user.membershipNestingDepth";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getExpirationTime()
+     * @see DefaultSyncConfig.Group#getExpirationTime()
      */
     public static final String PARAM_GROUP_EXPIRATION_TIME_DEFAULT = "1d";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getExpirationTime()
+     * @see DefaultSyncConfig.Group#getExpirationTime()
      */
     @Property(
             label = "Group Expiration Time",
@@ -167,12 +167,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_GROUP_EXPIRATION_TIME = 
"group.expirationTime";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getAutoMembership()
+     * @see DefaultSyncConfig.Group#getAutoMembership()
      */
     public static final String[] PARAM_GROUP_AUTO_MEMBERSHIP_DEFAULT = {};
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getAutoMembership()
+     * @see DefaultSyncConfig.Group#getAutoMembership()
      */
     @Property(
             label = "Group auto membership",
@@ -183,12 +183,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_GROUP_AUTO_MEMBERSHIP = 
"group.autoMembership";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getPropertyMapping()
+     * @see DefaultSyncConfig.Group#getPropertyMapping()
      */
     public static final String[] PARAM_GROUP_PROPERTY_MAPPING_DEFAULT = {};
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getPropertyMapping()
+     * @see DefaultSyncConfig.Group#getPropertyMapping()
      */
     @Property(
             label = "Group property mapping",
@@ -199,12 +199,12 @@ public class DefaultSyncConfigImpl exten
     public static final String PARAM_GROUP_PROPERTY_MAPPING = 
"group.propertyMapping";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getPathPrefix()
+     * @see DefaultSyncConfig.Group#getPathPrefix()
      */
     public static final String PARAM_GROUP_PATH_PREFIX_DEFAULT = "";
 
     /**
-     * @see DefaultSyncConfigImpl.Group#getPathPrefix()
+     * @see DefaultSyncConfig.Group#getPathPrefix()
      */
     @Property(
             label = "Group Path Prefix",


Reply via email to