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 2016/08/14 13:32:31 UTC

directory-fortress-core git commit: minor jdoc cleanup

Repository: directory-fortress-core
Updated Branches:
  refs/heads/master f26bff439 -> 0105da37a


minor jdoc cleanup


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/0105da37
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/0105da37
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/0105da37

Branch: refs/heads/master
Commit: 0105da37a1880ba1fed0ef33846d07101e4a53d3
Parents: f26bff4
Author: Shawn McKinney <sm...@apache.org>
Authored: Sun Aug 7 14:05:55 2016 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Sun Aug 7 14:05:55 2016 -0500

----------------------------------------------------------------------
 config/fortress.properties.src                                   | 2 +-
 .../java/org/apache/directory/fortress/core/RestException.java   | 2 +-
 .../org/apache/directory/fortress/core/SecurityException.java    | 2 +-
 .../directory/fortress/core/model/AdminRoleRelationship.java     | 2 +-
 .../org/apache/directory/fortress/core/model/FortRequest.java    | 2 +-
 .../org/apache/directory/fortress/core/model/FortResponse.java   | 2 +-
 .../java/org/apache/directory/fortress/core/model/Group.java     | 4 ++--
 .../directory/fortress/core/model/OrgUnitRelationship.java       | 2 +-
 .../java/org/apache/directory/fortress/core/model/PermGrant.java | 2 +-
 .../java/org/apache/directory/fortress/core/model/PermObj.java   | 4 ++--
 .../org/apache/directory/fortress/core/model/Permission.java     | 4 ++--
 .../java/org/apache/directory/fortress/core/model/Props.java     | 2 +-
 .../java/org/apache/directory/fortress/core/model/RolePerm.java  | 2 +-
 .../apache/directory/fortress/core/model/RoleRelationship.java   | 2 +-
 src/main/java/org/apache/directory/fortress/core/model/User.java | 4 ++--
 .../apache/directory/fortress/core/rest/AccessMgrRestImpl.java   | 2 +-
 .../apache/directory/fortress/core/rest/AdminMgrRestImpl.java    | 2 +-
 .../apache/directory/fortress/core/rest/AuditMgrRestImpl.java    | 2 +-
 .../apache/directory/fortress/core/rest/ConfigMgrRestImpl.java   | 2 +-
 .../directory/fortress/core/rest/DelAccessMgrRestImpl.java       | 2 +-
 .../apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java | 2 +-
 .../directory/fortress/core/rest/DelReviewMgrRestImpl.java       | 2 +-
 .../apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java | 2 +-
 .../apache/directory/fortress/core/rest/ReviewMgrRestImpl.java   | 2 +-
 .../java/org/apache/directory/fortress/core/rest/package.html    | 2 +-
 25 files changed, 29 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/config/fortress.properties.src
----------------------------------------------------------------------
diff --git a/config/fortress.properties.src b/config/fortress.properties.src
index e5b56c5..9bc135f 100755
--- a/config/fortress.properties.src
+++ b/config/fortress.properties.src
@@ -84,7 +84,7 @@ disable.dsd.cache=false
 
 # This will override default LDAP manager implementations for the RESTful ones:
 enable.mgr.impl.rest=@ENABLE_REST@
-# Optional parameters needed when Fortress client is connecting with the En Masse (rather than LDAP) server:
+# Optional parameters needed when Fortress client is connecting with the Fortress Rest (rather than LDAP) server:
 http.user=@REST_HTTP_USER@
 http.pw=@REST_HTTP_PW@
 http.host=@REST_HTTP_HOST@

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/RestException.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/RestException.java b/src/main/java/org/apache/directory/fortress/core/RestException.java
index d14787e..3e9df9a 100644
--- a/src/main/java/org/apache/directory/fortress/core/RestException.java
+++ b/src/main/java/org/apache/directory/fortress/core/RestException.java
@@ -21,7 +21,7 @@ package org.apache.directory.fortress.core;
 
 
 /**
- * This exception extends {@link SecurityException} and is thrown when Fortress cannot call En Masse to perform a particular 
+ * This exception extends {@link SecurityException} and is thrown when Fortress cannot call Fortress Rest to perform a particular
  * operation via RESTful interface.
  * See the {@link GlobalErrIds} javadoc for list of error ids.
  *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/SecurityException.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/SecurityException.java b/src/main/java/org/apache/directory/fortress/core/SecurityException.java
index 73b67e8..8668205 100755
--- a/src/main/java/org/apache/directory/fortress/core/SecurityException.java
+++ b/src/main/java/org/apache/directory/fortress/core/SecurityException.java
@@ -405,7 +405,7 @@ package org.apache.directory.fortress.core;
  *   <li> <code>{@link GlobalErrIds#CONST_NULL_TEXT} = 10015;</code></li>
  * </ul>
  * <h3>
- *   10100's - REST calls through remote En Masse Interface Error Ids
+ *   10100's - REST calls through remote Fortress Rest Interface Error Ids
  * </h3>
  * <ul>
  *   <li> <code>{@link GlobalErrIds#REST_WEB_ERR} = 10101;</code></li>

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/AdminRoleRelationship.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/AdminRoleRelationship.java b/src/main/java/org/apache/directory/fortress/core/model/AdminRoleRelationship.java
index f0d4065..9a97fc2 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/AdminRoleRelationship.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/AdminRoleRelationship.java
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlType;
 
 /**
- * This entity is used by en masse to communicate parent and child {@link AdminRole} information to the server.
+ * This entity is used by Fortress Rest to communicate parent and child {@link AdminRole} information to the server.
  *
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/FortRequest.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/FortRequest.java b/src/main/java/org/apache/directory/fortress/core/model/FortRequest.java
index 7fa2121..1808abc 100644
--- a/src/main/java/org/apache/directory/fortress/core/model/FortRequest.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/FortRequest.java
@@ -22,7 +22,7 @@ package org.apache.directory.fortress.core.model;
 import javax.xml.bind.annotation.*;
 
 /**
- * This class is used to pass request data to En Masse server.
+ * This class is used to pass request data to Fortress Rest server.
  * <p>
  * This class is not thread safe.
  *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/FortResponse.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/FortResponse.java b/src/main/java/org/apache/directory/fortress/core/model/FortResponse.java
index bf6cfa6..e6769e2 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/FortResponse.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/FortResponse.java
@@ -24,7 +24,7 @@ import java.util.List;
 import java.util.Set;
 
 /**
- * This class is used to return response data from En Masse server.
+ * This class is used to return response data from Fortress Rest server.
  * <p>
  * This class is not thread safe.
  *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/Group.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Group.java b/src/main/java/org/apache/directory/fortress/core/model/Group.java
index 276ba76..5c8fe68 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Group.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Group.java
@@ -408,7 +408,7 @@ public class Group extends FortEntity implements Serializable
 
 
     /**
-     * Gets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Gets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @return {@link Props }
      *
@@ -420,7 +420,7 @@ public class Group extends FortEntity implements Serializable
 
 
     /**
-     * Sets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Sets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @param props
      *     allowed object is

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/OrgUnitRelationship.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/OrgUnitRelationship.java b/src/main/java/org/apache/directory/fortress/core/model/OrgUnitRelationship.java
index 95be86c..f0a11ed 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/OrgUnitRelationship.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/OrgUnitRelationship.java
@@ -28,7 +28,7 @@ import javax.xml.bind.annotation.XmlType;
 
 
 /**
- * This entity is used by en masse to communicate parent and child {@link OrgUnit} information to the server.
+ * This entity is used by Fortress Rest to communicate parent and child {@link OrgUnit} information to the server.
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/PermGrant.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/PermGrant.java b/src/main/java/org/apache/directory/fortress/core/model/PermGrant.java
index 8d334d1..77e031d 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/PermGrant.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/PermGrant.java
@@ -30,7 +30,7 @@ import javax.xml.bind.annotation.XmlType;
  * This entity is used by {@link org.apache.directory.fortress.core.ant.FortressAntTask} to add {@link Permission} grants to
  * RBAC {@link Role}, or ARBAC {@link AdminRole}.
  * Can also be used to grant Permissions directly to {@link User}s.
- * This entity is used for Ant and En Masse processing only.
+ * This entity is used for Ant and Fortress Rest processing only.
 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/PermObj.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/PermObj.java b/src/main/java/org/apache/directory/fortress/core/model/PermObj.java
index 78b67a1..27752bc 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/PermObj.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/PermObj.java
@@ -298,7 +298,7 @@ public class PermObj extends FortEntity implements Serializable
 
 
     /**
-      * Gets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+      * Gets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
       *
       * @return
       *     possible object is
@@ -312,7 +312,7 @@ public class PermObj extends FortEntity implements Serializable
 
 
     /**
-     * Sets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Sets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @param value
      *     allowed object is

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/Permission.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Permission.java b/src/main/java/org/apache/directory/fortress/core/model/Permission.java
index 53e30da..8d5aafe 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Permission.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Permission.java
@@ -648,7 +648,7 @@ public class Permission extends FortEntity implements Serializable
 
 
     /**
-      * Gets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+      * Gets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
       *
       * @return
       *     possible object is
@@ -662,7 +662,7 @@ public class Permission extends FortEntity implements Serializable
 
 
     /**
-     * Sets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Sets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @param value
      *     allowed object is

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/Props.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/Props.java b/src/main/java/org/apache/directory/fortress/core/model/Props.java
index 80d8f55..95d689f 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/Props.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/Props.java
@@ -30,7 +30,7 @@ import java.util.List;
 
 
 /**
- * This class is used as a container for {@code java.util.Properties} for passing to En Masse server.
+ * This class is used as a container for {@code java.util.Properties} for passing to Fortress Rest server.
  * <p>
  * This class is thread safe.
  *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/RolePerm.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/RolePerm.java b/src/main/java/org/apache/directory/fortress/core/model/RolePerm.java
index fac46fc..f0fdb63 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/RolePerm.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/RolePerm.java
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlType;
 
 /**
- * This entity is used by en masse to communicate {@link org.apache.directory.fortress.core.model.Role}, {@link Permission} and {@link org.apache.directory.fortress.core.model.Session} information to the server for access control decisions.
+ * This entity is used by Fortress Rest to communicate {@link org.apache.directory.fortress.core.model.Role}, {@link Permission} and {@link org.apache.directory.fortress.core.model.Session} information to the server for access control decisions.
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/model/RoleRelationship.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/model/RoleRelationship.java b/src/main/java/org/apache/directory/fortress/core/model/RoleRelationship.java
index ea9573b..6dbcd02 100755
--- a/src/main/java/org/apache/directory/fortress/core/model/RoleRelationship.java
+++ b/src/main/java/org/apache/directory/fortress/core/model/RoleRelationship.java
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlRootElement;
 import javax.xml.bind.annotation.XmlType;
 
 /**
- * This entity is used by en masse to communicate parent and child {@link org.apache.directory.fortress.core.model.Role} information to the server.
+ * This entity is used by Fortress Rest to communicate parent and child {@link org.apache.directory.fortress.core.model.Role} information to the server.
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/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 d4b6650..a2458b0 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
@@ -1333,7 +1333,7 @@ public class User extends FortEntity implements Constraint, Serializable
 
 
     /**
-     * Gets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Gets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @return possible object is {@link Props }
      *
@@ -1345,7 +1345,7 @@ public class User extends FortEntity implements Constraint, Serializable
 
 
     /**
-     * Sets the value of the Props property.  This method is used by Fortress and En Masse and should not be called by external programs.
+     * Sets the value of the Props property.  This method is used by Fortress Core and Rest and should not be called by external programs.
      *
      * @param value allowed object is {@link Props }
      *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/AccessMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/AccessMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/AccessMgrRestImpl.java
index 8fbfcb9..ed5b873 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/AccessMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/AccessMgrRestImpl.java
@@ -39,7 +39,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 /**
  * Implementation class that performs runtime access control operations on data objects of type Fortress entities
  * This object performs runtime access control operations on objects that are provisioned RBAC entities
- * using HTTP access to En Masse REST server.  These APIs map directly to similar named APIs specified by ANSI and NIST
+ * using HTTP access to Fortress Rest server.  These APIs map directly to similar named APIs specified by ANSI and NIST
  * RBAC system functions.
  * Many of the java doc function descriptions found below were taken directly from ANSI INCITS 359-2004.
  * The RBAC Functional specification describes administrative operations for the creation

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/AdminMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/AdminMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/AdminMgrRestImpl.java
index c3d0540..5415c14 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/AdminMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/AdminMgrRestImpl.java
@@ -38,7 +38,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 
 /**
- * This class performs administrative functions to provision Fortress RBAC entities using HTTP access to En Masse REST server.  These APIs
+ * This class performs administrative functions to provision Fortress RBAC entities using HTTP access to Fortress Rest server.  These APIs
  * map directly to similar named APIs specified by ANSI and NIST RBAC models.
  * Many of the java doc function descriptions found below were taken directly from ANSI INCITS 359-2004.
  * The RBAC Functional specification describes administrative operations for the creation

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/AuditMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/AuditMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/AuditMgrRestImpl.java
index bd1a5f6..d502ca0 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/AuditMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/AuditMgrRestImpl.java
@@ -36,7 +36,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 /**
  * This class performs searches across <a href="http://www.openldap.org/">OpenLDAP</a>'s slapd access log using HTTP access 
- * to En Masse REST server. The access log events are
+ * to Fortress Rest server. The access log events are
  * persisted in <a href="http://www.oracle.com/technetwork/database/berkeleydb/overview/index.html">BDB</a>.
  * Audit entries stored on behalf of Fortress operations correspond to runtime authentication 
  * {@link org.apache.directory.fortress.core.model.Bind}, authorization 

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/ConfigMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/ConfigMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/ConfigMgrRestImpl.java
index b3e51ee..bcccd65 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/ConfigMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/ConfigMgrRestImpl.java
@@ -30,7 +30,7 @@ import org.apache.directory.fortress.core.model.Props;
 import org.apache.directory.fortress.core.util.VUtil;
 
 /**
- * This Manager impl supplies CRUD methods used to manage properties stored within the ldap directory using HTTP access to En Masse REST server.
+ * This Manager impl supplies CRUD methods used to manage properties stored within the ldap directory using HTTP access to Fortress Rest server.
  * The Fortress config nodes are used to remotely share Fortress client specific properties between processes.
  * Fortress places no limits on the number of unique configurations that can be present at one time in the directory.
  * The Fortress client will specify the preferred cfg node by name via a property named, {@link org.apache.directory.fortress.core.GlobalIds#CONFIG_REALM}.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/DelAccessMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/DelAccessMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/DelAccessMgrRestImpl.java
index 557b444..c864729 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/DelAccessMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/DelAccessMgrRestImpl.java
@@ -39,7 +39,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 /**
  * This class implements the ARBAC02 DelAccessMgr interface for performing runtime delegated access control operations on objects that are provisioned Fortress ARBAC entities
- * using HTTP access to En Masse REST server.  These APIs map directly to similar named APIs specified by ARBAC02 functions.  The ARBAC Functional specification describes delegated administrative
+ * using HTTP access to Fortress Rest server.  These APIs map directly to similar named APIs specified by ARBAC02 functions.  The ARBAC Functional specification describes delegated administrative
  * operations for the creation and maintenance of ARBAC element sets and relations.  Delegated administrative review functions for performing administrative queries
  * and system functions for creating and managing ARBAC attributes on user sessions and making delegated administrative access control decisions.
  *

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java
index 73a016d..eddba9f 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/DelAdminMgrRestImpl.java
@@ -39,7 +39,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 /**
  * This class implements the ARBAC02 DelAdminMgr interface for performing policy administration of Fortress ARBAC entities
- * using HTTP access to En Masse REST server.
+ * using HTTP access to Fortress Rest server.
  * These APIs map directly to similar named APIs specified by ARBAC02 functions.  The ARBAC Functional specification describes delegated administrative
  * operations for the creation and maintenance of ARBAC element sets and relations.  Delegated administrative review functions for performing administrative queries
  * and system functions for creating and managing ARBAC attributes on user sessions and making delegated administrative access control decisions.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/DelReviewMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/DelReviewMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/DelReviewMgrRestImpl.java
index fb1f1f0..411db8c 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/DelReviewMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/DelReviewMgrRestImpl.java
@@ -37,7 +37,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 /**
  * This class implements the ARBAC02 DelReviewMgr interface for performing policy interrogation of provisioned Fortress ARBAC entities
- * using HTTP access to En Masse REST server.
+ * using HTTP access to Fortress Rest server.
  * These APIs map directly to similar named APIs specified by ARBAC02 functions.  The ARBAC Functional specification describes delegated administrative
  * operations for the creation and maintenance of ARBAC element sets and relations.  Delegated administrative review functions for performing administrative queries
  * and system functions for creating and managing ARBAC attributes on user sessions and making delegated administrative access control decisions.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java
index a2a94b8..fbb5de1 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/PwPolicyMgrRestImpl.java
@@ -33,7 +33,7 @@ import org.apache.directory.fortress.core.util.VUtil;
 
 
 /**
- * This class is used to perform administrative and review functions on the PWPOLICIES and USERS data sets using HTTP access to En Masse REST server.
+ * This class is used to perform administrative and review functions on the PWPOLICIES and USERS data sets using HTTP access to Fortress Rest server.
  * <p>
  * <h4>Password Policies</h4>
  * <a href="http://www.openldap.org/">OpenLDAP</a> supports the IETF draft <a href="http://tools.ietf.org/html/draft-behera-ldap-password-policy-10/">Password Policies for LDAP directories</a></li>.  Policies may be applied at the user, group or global level.

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/ReviewMgrRestImpl.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/ReviewMgrRestImpl.java b/src/main/java/org/apache/directory/fortress/core/rest/ReviewMgrRestImpl.java
index 39862bb..97d9f07 100755
--- a/src/main/java/org/apache/directory/fortress/core/rest/ReviewMgrRestImpl.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/ReviewMgrRestImpl.java
@@ -40,7 +40,7 @@ import org.apache.directory.fortress.core.model.UserRole;
 import org.apache.directory.fortress.core.util.VUtil;
 
 /**
- * This class performs administrative review functions on already provisioned Fortress RBAC entities using HTTP access to En Masse REST server.
+ * This class performs administrative review functions on already provisioned Fortress RBAC entities using HTTP access to Fortress Rest server.
  * These APIs map directly to similar named APIs specified by ANSI and NIST RBAC models.
  * Many of the java doc function descriptions found below were taken directly from ANSI INCITS 359-2004.
  * The RBAC Functional specification describes administrative operations for the creation

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/0105da37/src/main/java/org/apache/directory/fortress/core/rest/package.html
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/package.html b/src/main/java/org/apache/directory/fortress/core/rest/package.html
index f6ae8f4..602a3c0 100755
--- a/src/main/java/org/apache/directory/fortress/core/rest/package.html
+++ b/src/main/java/org/apache/directory/fortress/core/rest/package.html
@@ -28,7 +28,7 @@
 </p>
 
 <p>
-    The <b>org.apache.directory.fortress.rest</b> package implements HTTP REST access to En Masse server for Fortress
+    The <b>org.apache.directory.fortress.rest</b> package implements HTTP REST access to Fortress Rest server for Fortress
     APIs
 </p>