You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2018/04/07 14:26:33 UTC

directory-fortress-core git commit: change label from seconds to minutes (for timeout)

Repository: directory-fortress-core
Updated Branches:
  refs/heads/master a5e4122a8 -> e6667e420


change label from seconds to minutes (for timeout)


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/e6667e42
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/e6667e42
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/e6667e42

Branch: refs/heads/master
Commit: e6667e4209661b393be73a5b6a99dabe9b06e5b3
Parents: a5e4122
Author: Shawn McKinney <sm...@apache.org>
Authored: Fri Apr 6 23:36:47 2018 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Fri Apr 6 23:36:47 2018 -0500

----------------------------------------------------------------------
 src/main/java/org/apache/directory/fortress/core/AdminMgr.java | 6 +++---
 .../java/org/apache/directory/fortress/core/DelAdminMgr.java   | 2 +-
 .../java/org/apache/directory/fortress/core/cli/package.html   | 6 +++---
 .../org/apache/directory/fortress/core/impl/AdminRoleP.java    | 2 +-
 .../java/org/apache/directory/fortress/core/impl/UserP.java    | 4 ++--
 .../org/apache/directory/fortress/core/model/Constraint.java   | 4 ++--
 .../java/org/apache/directory/fortress/core/model/Role.java    | 4 ++--
 .../java/org/apache/directory/fortress/core/model/Session.java | 4 ++--
 .../java/org/apache/directory/fortress/core/model/User.java    | 4 ++--
 .../org/apache/directory/fortress/core/model/UserRole.java     | 4 ++--
 10 files changed, 20 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/AdminMgr.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/AdminMgr.java b/src/main/java/org/apache/directory/fortress/core/AdminMgr.java
index abc75c1..31ebe3f 100755
--- a/src/main/java/org/apache/directory/fortress/core/AdminMgr.java
+++ b/src/main/java/org/apache/directory/fortress/core/AdminMgr.java
@@ -107,7 +107,7 @@ public interface AdminMgr extends Manageable
      *   <li>{@link User#beginLockDate} - YYYYMMDD - determines beginning of enforced inactive status</li>
      *   <li>{@link User#endLockDate} - YYYYMMDD - determines end of enforced inactive status</li>
      *   <li>{@link User#dayMask} - 1234567, 1 = Sunday, 2 = Monday, etc - specifies which day of user may sign on</li>
-     *   <li>{@link User#timeout} - number in seconds of session inactivity time allowed</li>
+     *   <li>{@link User#timeout} - number (in minutes) of session inactivity time allowed</li>
      *   <li>
      *     {@link User#props} * - multi-occurring attribute contains property key and values are separated with a ':'.
      *     e.g. mykey1:myvalue1
@@ -205,7 +205,7 @@ public interface AdminMgr extends Manageable
      *   <li>{@link User#beginLockDate} - YYYYMMDD - determines beginning of enforced inactive status</li>
      *   <li>{@link User#endLockDate} - YYYYMMDD - determines end of enforced inactive status</li>
      *   <li>{@link User#dayMask} - 1234567, 1 = Sunday, 2 = Monday, etc - specifies which day of user may sign on</li>
-     *   <li>{@link User#timeout} - number in seconds of session inactivity time allowed</li>
+     *   <li>{@link User#timeout} - number (in minutes) of session inactivity time allowed</li>
      *   <li>
      *     {@link User#props} * - multi-occurring attribute contains property key and values are separated with a ':'.  
      *     e.g. mykey1:myvalue1
@@ -413,7 +413,7 @@ public interface AdminMgr extends Manageable
      *   <li> (optional) Temporal constraints may be associated with <code>ftUserAttrs</code> aux object class based on:</li>
      *   <li>
      *     <ul>
-     *       <li> timeout - number in seconds of session inactivity time allowed.</li>
+     *       <li> timeout - number (in minutes) of session inactivity time allowed.</li>
      *       <li> beginDate - YYYYMMDD - determines date when role may be activated.</li>
      *       <li> endDate - YYMMDD - indicates latest date role may be activated.</li>
      *       <li> beginLockDate - YYYYMMDD - determines beginning of enforced inactive status</li>

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/DelAdminMgr.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/DelAdminMgr.java b/src/main/java/org/apache/directory/fortress/core/DelAdminMgr.java
index e1586c1..0c946ca 100755
--- a/src/main/java/org/apache/directory/fortress/core/DelAdminMgr.java
+++ b/src/main/java/org/apache/directory/fortress/core/DelAdminMgr.java
@@ -192,7 +192,7 @@ public interface DelAdminMgr extends Manageable
      *   <li>AdminRole entity (resides in admin role container) has userId added as role occupant.</li>
      *   <li>(optional) Temporal constraints may be associated with <code>ftUserAttrs</code> aux object class based on:
      *     <ul>
-     *       <li>timeout - number in seconds of session inactivity time allowed.</li>
+     *       <li>timeout - number (in minutes) of session inactivity time allowed.</li>
      *       <li>beginDate - YYYYMMDD - determines date when role may be activated.</li>
      *       <li>endDate - YYMMDD - indicates latest date role may be activated.</li>
      *       <li>beginLockDate - YYYYMMDD - determines beginning of enforced inactive status</li>

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/cli/package.html
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/cli/package.html b/src/main/java/org/apache/directory/fortress/core/cli/package.html
index 3b070cc..1ad6e2e 100755
--- a/src/main/java/org/apache/directory/fortress/core/cli/package.html
+++ b/src/main/java/org/apache/directory/fortress/core/cli/package.html
@@ -141,7 +141,7 @@ Currently the following groups of functions are supported:
                     <li>N : endLockDate - YYYYMMDD - determines end of enforced inactive status</li>
                     <li>m : dayMask - 1234567, 1 = Sunday, 2 = Monday, etc - specifies which day of user may sign on
                     </li>
-                    <li>t : timeout - number in seconds of session inactivity time allowed</li>
+                    <li>t : timeout - number (in minutes) of session inactivity time allowed</li>
                     <li>v : properties * - multi-occurring attribute contains property key and values are separated with
                         a ':'. e.g.
                         mykey1:myvalue1
@@ -214,7 +214,7 @@ Currently the following groups of functions are supported:
                     <li>N : endLockDate - YYYYMMDD - determines end of enforced inactive status</li>
                     <li>m : dayMask - 1234567, 1 = Sunday, 2 = Monday, etc - specifies which day of user may sign on
                     </li>
-                    <li>t : timeout - number in seconds of session inactivity time allowed</li>
+                    <li>t : timeout - number (in minutes) of session inactivity time allowed</li>
                     <li>v : properties * - multi-occurring attribute contains property key and values are separated with
                         a ':'. e.g.
                         mykey1:myvalue1
@@ -1069,7 +1069,7 @@ Currently the following groups of functions are supported:
                         class based on:
                 </ul>
                 <ul>
-                    <li> timeout - number in seconds of session inactivity time allowed.
+                    <li> timeout - number (in minutes) of session inactivity time allowed.
                     <li> beginDate - YYYYMMDD - determines date when role may be activated.
                     <li> endDate - YYYYMMDD - indicates latest date role may be activated.
                     <li> beginLockDate - YYYYMMDD - determines beginning of enforced inactive status

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/impl/AdminRoleP.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/impl/AdminRoleP.java b/src/main/java/org/apache/directory/fortress/core/impl/AdminRoleP.java
index fcdc266..443864c 100755
--- a/src/main/java/org/apache/directory/fortress/core/impl/AdminRoleP.java
+++ b/src/main/java/org/apache/directory/fortress/core/impl/AdminRoleP.java
@@ -176,7 +176,7 @@ final class AdminRoleP
      * <li> AdminRole entity (resides in admin role container) has userId added as role occupant.
      * <li> (optional) Temporal constraints may be associated with <code>ftUserAttrs</code> aux object class based on:
      * <ul>
-     * <li> timeout - number in seconds of session inactivity time allowed.
+     * <li> timeout - number (in minutes) of session inactivity time allowed.
      * <li> beginDate - YYYYMMDD - determines date when role may be activated.
      * <li> endDate - YYMMDD - indicates latest date role may be activated.
      * <li> beginLockDate - YYYYMMDD - determines beginning of enforced inactive status

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/impl/UserP.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/impl/UserP.java b/src/main/java/org/apache/directory/fortress/core/impl/UserP.java
index dd4cf0e..de49972 100755
--- a/src/main/java/org/apache/directory/fortress/core/impl/UserP.java
+++ b/src/main/java/org/apache/directory/fortress/core/impl/UserP.java
@@ -646,7 +646,7 @@ final class UserP
      * <li> Role entity (resides in role container) has userId added as role occupant.
      * <li> (optional) Temporal constraints may be associated with <code>ftUserAttrs</code> aux object class based on:
      * <ul>
-     * <li> timeout - number in seconds of session inactivity time allowed.
+     * <li> timeout - number (in minutes) of session inactivity time allowed.
      * <li> beginDate - YYYYMMDD - determines date when role may be activated.
      * <li> endDate - YYMMDD - indicates latest date role may be activated.
      * <li> beginLockDate - YYYYMMDD - determines beginning of enforced inactive status
@@ -716,7 +716,7 @@ final class UserP
      * <li> AdminRole entity (resides in admin role container) has userId added as role occupant.
      * <li> (optional) Temporal constraints may be associated with <code>ftUserAttrs</code> aux object class based on:
      * <ul>
-     * <li> timeout - number in seconds of session inactivity time allowed.
+     * <li> timeout - number (in minutes) of session inactivity time allowed.
      * <li> beginDate - YYYYMMDD - determines date when role may be activated.
      * <li> endDate - YYMMDD - indicates latest date role may be activated.
      * <li> beginLockDate - YYYYMMDD - determines beginning of enforced inactive status

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/model/Constraint.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Constraint.java b/src/main/java/org/apache/directory/fortress/core/model/Constraint.java
index e3bde8c..df47e20 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Constraint.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Constraint.java
@@ -74,7 +74,7 @@ public interface Constraint
 
 
     /**
-     * Set the integer timeout that contains max time (in seconds) that entity may remain inactive.
+     * Set the integer timeout that contains max time ((in minutes)) that entity may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @param timeout maps to {@code ftCstr}, {@code ftRC}, {@code ftARC} attributes in {@code ftUserAttrs} object class and {@code ftCstr} attribute in {@code ftRls} object class.
@@ -162,7 +162,7 @@ public interface Constraint
 
 
     /**
-     * Return the integer timeout that contains total time (in seconds) that entity may remain inactive.
+     * Return the integer timeout that contains total time ((in minutes)) that entity may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @return int that maps to {@code ftCstr}, {@code ftRC}, {@code ftARC} attributes in {@code ftUserAttrs} object class and {@code ftCstr} attribute in {@code ftRls} object class.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/model/Role.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Role.java b/src/main/java/org/apache/directory/fortress/core/model/Role.java
index 1345b8c..89f0bc6 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Role.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Role.java
@@ -623,7 +623,7 @@ public class Role extends FortEntity implements Constraint, Graphable, java.io.S
     
     
     /**
-     * Return the integer timeout that contains total time (in seconds) that Role may remain inactive in User's session 
+     * Return the integer timeout that contains total time ((in minutes)) that Role may remain inactive in User's session
      * before it is deactivated.
      * This attribute is optional but if set will be validated for reasonableness.
      *
@@ -637,7 +637,7 @@ public class Role extends FortEntity implements Constraint, Graphable, java.io.S
     
     
     /**
-     * Set the integer timeout that contains max time (in seconds) that Role may remain inactive in User's session before it 
+     * Set the integer timeout that contains max time ((in minutes)) that Role may remain inactive in User's session before it
      * is deactivated.
      * This attribute is optional but if set will be validated for reasonableness.
      *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/model/Session.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Session.java b/src/main/java/org/apache/directory/fortress/core/model/Session.java
index 9fd1e57..8866ac4 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Session.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Session.java
@@ -510,7 +510,7 @@ public class Session  extends FortEntity implements PwMessage, Serializable
     
 
     /**
-     * Get the integer timeout that contains max time (in seconds) that User's session may remain inactive.
+     * Get the integer timeout that contains max time ((in minutes)) that User's session may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @return int maps to 'ftCstr' attribute in 'ftUserAttrs' object class.
@@ -711,7 +711,7 @@ public class Session  extends FortEntity implements PwMessage, Serializable
     
 
     /**
-     * Set the integer timeout that contains max time (in seconds) that User's session may remain inactive.
+     * Set the integer timeout that contains max time ((in minutes)) that User's session may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @param timeout maps to 'ftCstr' attribute in 'ftUserAttrs' object class.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/model/User.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/User.java b/src/main/java/org/apache/directory/fortress/core/model/User.java
index 1782561..dc12745 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/User.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/User.java
@@ -1204,7 +1204,7 @@ public class User extends FortEntity implements Constraint, Serializable
 
 
     /**
-     * Return the integer timeout that contains total time (in seconds) that User's session may remain inactive.
+     * Return the integer timeout that contains total time ((in minutes)) that User's session may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @return attribute maps to 'ftCstr' attribute in 'ftUserAttrs' object class.
@@ -1217,7 +1217,7 @@ public class User extends FortEntity implements Constraint, Serializable
 
 
     /**
-     * Set the integer timeout that contains max time (in seconds) that User's session may remain inactive.
+     * Set the integer timeout that contains max time ((in minutes)) that User's session may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @param timeout maps to 'ftCstr' attribute in 'ftUserAttrs' object class.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/e6667e42/src/main/java/org/apache/directory/fortress/core/model/UserRole.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/UserRole.java b/src/main/java/org/apache/directory/fortress/core/model/UserRole.java
index 068677f..ac5cd50 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/UserRole.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/UserRole.java
@@ -370,7 +370,7 @@ public class UserRole extends FortEntity implements Serializable, Constraint
 
 
     /**
-     * Set the integer timeout that contains max time (in seconds) that entity may remain inactive.
+     * Set the integer timeout that contains max time ((in minutes)) that entity may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @param timeout maps to 'ftRC', attribute on 'ftUserAttrs' object class.
@@ -481,7 +481,7 @@ public class UserRole extends FortEntity implements Serializable, Constraint
 
 
     /**
-     * Return the integer timeout that contains total time (in seconds) that entity may remain inactive.
+     * Return the integer timeout that contains total time ((in minutes)) that entity may remain inactive.
      * This attribute is optional but if set will be validated for reasonableness.
      *
      * @return int that maps to 'ftRC', attribute on 'ftUserAttrs' object class.