Revert "account_service: Added NoAccess role to Redfish"

This reverts commit 27c10d2ee746b85e9463efb0fc6773c209b2f5ba.

Reason for revert: <Makes the validator fail>

Change-Id: I379d9eda57416476ff1cc17e594c55dedd0bc4eb
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp
index 291a207..0658f3f 100644
--- a/redfish-core/lib/account_service.hpp
+++ b/redfish-core/lib/account_service.hpp
@@ -90,10 +90,6 @@
     {
         return "Operator";
     }
-    else if ((role == "") || (role == "priv-noaccess"))
-    {
-        return "NoAccess";
-    }
     return "";
 }
 inline std::string getPrivilegeFromRoleId(std::string_view role)
@@ -114,10 +110,6 @@
     {
         return "priv-operator";
     }
-    else if (role == "NoAccess")
-    {
-        return "priv-noaccess";
-    }
     return "";
 }
 
diff --git a/redfish-core/lib/roles.hpp b/redfish-core/lib/roles.hpp
index 58b4577..d170a5c 100644
--- a/redfish-core/lib/roles.hpp
+++ b/redfish-core/lib/roles.hpp
@@ -40,10 +40,6 @@
     {
         return "Operator";
     }
-    else if (priv == "priv-noaccess")
-    {
-        return "NoAccess";
-    }
     return "";
 }
 
@@ -67,10 +63,6 @@
     {
         privArray = {"Login"};
     }
-    else if (role == "NoAccess")
-    {
-        privArray = {};
-    }
     else
     {
         return false;