Uses of Class
com.metamatrix.platform.security.api.MetaMatrixPrincipalName

Packages that use MetaMatrixPrincipalName
com.metamatrix.console.models   
com.metamatrix.console.security   
com.metamatrix.console.ui.views.entitlements   
com.metamatrix.console.ui.views.users   
com.metamatrix.platform.admin.api   
com.metamatrix.platform.admin.apiimpl   
com.metamatrix.platform.security.api   
com.metamatrix.platform.security.api.service   
com.metamatrix.platform.security.authorization.cache   
com.metamatrix.platform.security.authorization.service   
com.metamatrix.platform.security.authorization.spi   
com.metamatrix.platform.security.authorization.spi.jdbc   
com.metamatrix.platform.security.membership.service   
 

Uses of MetaMatrixPrincipalName in com.metamatrix.console.models
 

Methods in com.metamatrix.console.models with parameters of type MetaMatrixPrincipalName
 RoleDisplay[] GroupsManager.getRolesForPrincipal(MetaMatrixPrincipalName principalName)
          Get Collection of Roles for the provided MetaMatrixPrincipalName
 RoleDisplay[] GroupsManager.getRolesForPrincipal(MetaMatrixPrincipalName principal, boolean includeImplicit)
          Get Collection of Roles for the provided MetaMatrixPrincipals
 void GroupsManager.removeRolesFromPrincipal(java.lang.String[] roles, MetaMatrixPrincipalName principal)
          Remove array of Roles from a principal
 

Uses of MetaMatrixPrincipalName in com.metamatrix.console.security
 

Methods in com.metamatrix.console.security that return MetaMatrixPrincipalName
static MetaMatrixPrincipalName UserCapabilities.getLoggedInUser(ConnectionInfo connection)
           
 

Uses of MetaMatrixPrincipalName in com.metamatrix.console.ui.views.entitlements
 

Methods in com.metamatrix.console.ui.views.entitlements with parameters of type MetaMatrixPrincipalName
 void PrincipalChangeListener.principalCreated(MetaMatrixPrincipalName principal)
           
 void EntitlementDetailPanel.principalCreated(MetaMatrixPrincipalName princ)
           
 void PrincipalChangeListener.principalDeleted(MetaMatrixPrincipalName principal)
           
 void EntitlementDetailPanel.principalDeleted(MetaMatrixPrincipalName princ)
           
 

Uses of MetaMatrixPrincipalName in com.metamatrix.console.ui.views.users
 

Methods in com.metamatrix.console.ui.views.users with parameters of type MetaMatrixPrincipalName
 void GroupsAccumulatorPanel.GroupsTableModel.addRow(MetaMatrixPrincipalName group)
           
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.admin.api
 

Methods in com.metamatrix.platform.admin.api with parameters of type MetaMatrixPrincipalName
 java.util.Collection AuthorizationAdminAPI.getRoleNamesForPrincipal(MetaMatrixPrincipalName principal)
          Returns a Collection of String names of MetaMatrix roles to which the given principal is assigned.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.admin.apiimpl
 

Methods in com.metamatrix.platform.admin.apiimpl with parameters of type MetaMatrixPrincipalName
 java.util.Collection AuthorizationAdminAPIImpl.getRoleNamesForPrincipal(MetaMatrixPrincipalName principal)
          Returns a Collection of String names of MetaMatrix roles to which the given principal is assigned.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.api
 

Methods in com.metamatrix.platform.security.api that return MetaMatrixPrincipalName
 MetaMatrixPrincipalName MetaMatrixPrincipal.getMetaMatrixPrincipalName()
          Get the MetaMatrixPrincipalName for this principal.
 MetaMatrixPrincipalName BasicMetaMatrixPrincipal.getMetaMatrixPrincipalName()
          Get the MetaMatrixPrincipalName for this principal.
 

Methods in com.metamatrix.platform.security.api with parameters of type MetaMatrixPrincipalName
 AuthorizationPolicy AbstractAuthorizationObjectEditor.addPrincipal(AuthorizationPolicy policy, MetaMatrixPrincipalName principal)
          Add a principal to the policy.
 boolean AuthorizationPolicy.addPrincipal(MetaMatrixPrincipalName principal)
          Add to this policy's set of existing principals a new MetaMatrixPrincipalName name to whom this policy is to apply.
 void UserEntitlementInfo.addTriplet(MetaMatrixPrincipalName grantee, java.lang.String grantor, int allowedActions)
          Add a Grantee -> Grantor -> Allowed Actions triplet.
 AuthorizationPolicy AbstractAuthorizationObjectEditor.removePrincipal(AuthorizationPolicy policy, MetaMatrixPrincipalName principal)
          Remove a principal from the policy.
 void AuthorizationPolicy.removePrincipal(MetaMatrixPrincipalName principal)
          Remove from this policy's set of existing principals the specified MetaMatrixPrincipalName.
 

Constructors in com.metamatrix.platform.security.api with parameters of type MetaMatrixPrincipalName
GranteeEntitlementEntry(MetaMatrixPrincipalName grantee, GranteeEntitlementEntry clone)
          
ctor.
Uses another GranteeEntitlementEntry as a pattern to clone only changing the Grantee.
GranteeEntitlementEntry(MetaMatrixPrincipalName grantee, java.lang.String grantor, int allowedActions)
          
ctor.
Used when creating in the Authorization JDBC layer.
MetaMatrixPrincipalName(MetaMatrixPrincipalName obj)
           
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.api.service
 

Methods in com.metamatrix.platform.security.api.service with parameters of type MetaMatrixPrincipalName
 MetaMatrixPrincipal MembershipServiceInterface.getPrincipal(MetaMatrixPrincipalName principal)
          Obtain the principal object that is representative of the user with the specified username.
 java.util.Collection AuthorizationServiceInterface.getRoleNamesForPrincipal(SessionToken caller, MetaMatrixPrincipalName principal)
          Returns a Collection of String names of MetaMatrix roles to which the given principal is assigned.
 boolean AuthorizationServiceInterface.removePrincipalFromAllPolicies(SessionToken caller, MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.authorization.cache
 

Methods in com.metamatrix.platform.security.authorization.cache with parameters of type MetaMatrixPrincipalName
 void AuthorizationCache.cachePolicyIDsForPrincipal(MetaMatrixPrincipalName userName, SessionToken session, java.util.Collection policyIDs)
          Load the principal and the policyIDs that apply to him.
 java.util.Collection AuthorizationCache.findPolicyIDs(MetaMatrixPrincipalName user, SessionToken session)
          Find the policyIDs associated with the given principal.
 void AuthorizationCache.removePrincipalFromCache(MetaMatrixPrincipalName user)
          Remove from the cache any policy IDs referenced by the specified principal.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.authorization.service
 

Methods in com.metamatrix.platform.security.authorization.service with parameters of type MetaMatrixPrincipalName
 java.util.Collection AuthorizationServiceImpl.getRoleNamesForPrincipal(SessionToken caller, MetaMatrixPrincipalName principal)
          Returns a Collection of String names of MetaMatrix roles to which the given principal is assigned.
 boolean AuthorizationServiceImpl.removePrincipalFromAllPolicies(SessionToken caller, MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.authorization.spi
 

Methods in com.metamatrix.platform.security.authorization.spi with parameters of type MetaMatrixPrincipalName
 boolean AuthorizationSourceTransaction.removePrincipalFromAllPolicies(MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.authorization.spi.jdbc
 

Methods in com.metamatrix.platform.security.authorization.spi.jdbc with parameters of type MetaMatrixPrincipalName
static java.util.Set JDBCAuthorizationReader.getRoleNamesForPrincipal(MetaMatrixPrincipalName principal, java.sql.Connection jdbcConnection)
          Returns the Set of roles for the specified principal
 boolean JDBCAuthorizationTransaction.removePrincipalFromAllPolicies(MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

Uses of MetaMatrixPrincipalName in com.metamatrix.platform.security.membership.service
 

Methods in com.metamatrix.platform.security.membership.service with parameters of type MetaMatrixPrincipalName
 MetaMatrixPrincipal MembershipServiceImpl.getPrincipal(MetaMatrixPrincipalName principal)
          Obtain the principal object that is representative of the principal
 



Copyright © 2009. All Rights Reserved.