You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by "Robert Levas (JIRA)" <ji...@apache.org> on 2015/11/12 21:12:11 UTC

[jira] [Created] (AMBARI-13865) Add authorization resources to permission resources

Robert Levas created AMBARI-13865:
-------------------------------------

             Summary: Add authorization resources to permission resources
                 Key: AMBARI-13865
                 URL: https://issues.apache.org/jira/browse/AMBARI-13865
             Project: Ambari
          Issue Type: Task
            Reporter: Robert Levas
            Assignee: Robert Levas


Add authorizations to permissions so that the definition of a permission (or role) is explicit.

A new table needs to be created to store the _authorizations_:
{code}
TABLE authorization (
  authorization_id VARCHAR(100) NOT NULL,
  authorization_name VARCHAR(255) NOT NULL,
  PRIMARY KEY(authorization_id)
)
{code}

A new table needs to be added to map _authorizations_ to _permissions_
{code}
TABLE permission_authorization (
  permission_id BIGINT NOT NULL,
  authorization_id VARCHAR(100) NOT NULL,
  PRIMARY KEY(permission_id, authorization_id)
);
{code}

A new Entity needs to be created to hold the authorization record data ({{org.apache.ambari.server.orm.entities.AuthorizationEntity}}).

The existing PermissionEntity {{org.apache.ambari.server.orm.entities.PermissionEntity}} needs to be updated to include AuthorizationEntities.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)