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

Packages that use SessionToken
com.metamatrix.admin.server   
com.metamatrix.common.comm.platform.socket.server   
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.server.admin.apiimpl   
com.metamatrix.server.query.service   
com.metamatrix.server.serverapi   
com.metamatrix.server.util   
 

Uses of SessionToken in com.metamatrix.admin.server
 

Methods in com.metamatrix.admin.server that return SessionToken
protected  SessionToken AbstractAdminImpl.validateSession()
           
 

Uses of SessionToken in com.metamatrix.common.comm.platform.socket.server
 

Methods in com.metamatrix.common.comm.platform.socket.server with parameters of type SessionToken
 void LogonImpl.assertIdentity(SessionToken sessionId)
           
 

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

Methods in com.metamatrix.platform.admin.apiimpl that return SessionToken
static SessionToken AdminAPIHelper.validateSession()
          Get the SessionToken and validate that the session is active for the specified MetaMatrixSessionID.
 

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

Methods in com.metamatrix.platform.security.api that return SessionToken
 SessionToken MetaMatrixSessionInfo.getSessionToken()
           
 SessionToken LogonResult.getSessionToken()
           
 

Methods in com.metamatrix.platform.security.api with parameters of type SessionToken
 void ILogon.assertIdentity(SessionToken sessionId)
           
 

Constructors in com.metamatrix.platform.security.api with parameters of type SessionToken
LogonResult(SessionToken token, java.util.Properties productInfo, java.lang.String clusterName)
           
 

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

Methods in com.metamatrix.platform.security.api.service with parameters of type SessionToken
 boolean AuthorizationServiceInterface.checkAccess(SessionToken sessionToken, java.lang.String contextName, AuthorizationPermission request)
          Return whether the specified account has authorization to access the specified resource.
 boolean AuthorizationServiceInterface.checkAccess(SessionToken sessionToken, java.lang.String contextName, AuthorizationPermission request, boolean fetchDependants)
          Return whether the specified account has authorization to access the specified resource and all its dependent resources.
 boolean AuthorizationServiceInterface.containsPolicy(SessionToken caller, AuthorizationPolicyID id)
          Return whether there is an existing policy with the specified ID.
 java.util.Set AuthorizationServiceInterface.executeTransaction(SessionToken caller, java.util.List actions)
          Execute as a single transaction with the specified actions, and return the set of IDs for the objects that were affected/modified by the action.
 java.util.Collection AuthorizationServiceInterface.findAllPolicyIDs(SessionToken caller)
          Locate the IDs of all of the policies that are accessible by the caller.
 java.util.Collection AuthorizationServiceInterface.findPolicyIDs(SessionToken caller, java.util.Collection principals)
          Locate the IDs of all of the policies that apply to the specified principal and that are accessible by the caller.
 java.util.Collection AuthorizationServiceInterface.getInaccessibleResources(SessionToken sessionToken, java.lang.String contextName, java.util.Collection requests)
          Of those resources specified, return the subset for which the specified account does not have authorization to access.
 java.util.Collection AuthorizationServiceInterface.getPolicIDsForResourceInRealm(SessionToken caller, AuthorizationRealm realm, java.lang.String resourceName)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissions on the given resource that exists in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceInterface.getPolicies(SessionToken caller, java.util.Collection policyIDs)
          Locate the policies that have the specified IDs.
 java.util.Collection AuthorizationServiceInterface.getPoliciesInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicys that have AuthorizationPermissions in the given AuthorizationRealm.
NOTE: It is the responsibility of the caller to determine which of the AuthorizationPolicy's AuthorizationPermissions are actually in the given AuthorizationRealm.
 AuthorizationPolicy AuthorizationServiceInterface.getPolicy(SessionToken caller, AuthorizationPolicyID policyID)
          Locate the policy that has the specified ID.
 java.util.Collection AuthorizationServiceInterface.getPolicyIDsInPartialRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissions that exist in the given partial AuthorizationRealm.
The implementation is such that all AuthorizationPolicyIDs whose AuthorizationRealm starts with the given AuthorizationRealm are returned.
 java.util.Collection AuthorizationServiceInterface.getPolicyIDsInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceInterface.getPolicyIDsWithPermissionsInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissions in the given AuthorizationRealm.
NOTE: It is the responsibility of the caller to determine which of the AuthorizationPolicy's AuthorizationPermissions are actually in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceInterface.getPrincipalsForRole(SessionToken caller, java.lang.String roleName)
          Returns a collection MetaMatrixPrincipalName objects containing the name of the principal along with its type which belong to the given role.
 java.util.Collection AuthorizationServiceInterface.getRealmNames(SessionToken caller)
          Obtain the names of all of the realms known to the system.
 java.util.Map AuthorizationServiceInterface.getRoleDescriptions(SessionToken caller)
          Obtain the names of all of the roles and their descriptions known to the system.
 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.hasPolicy(SessionToken caller, AuthorizationRealm realm, java.lang.String policyName)
           
 boolean AuthorizationServiceInterface.isCallerInRole(SessionToken caller, java.lang.String roleName)
          Verify that caller is in the specified logical role.
 void AuthorizationServiceInterface.migratePolicies(SessionToken token, EntitlementMigrationReport rpt, java.lang.String targetVDBName, java.lang.String targetVDBVersion, java.util.Set targetNodes, java.util.Collection sourcePolicies, AdminOptions options)
           
 boolean AuthorizationServiceInterface.removePrincipalFromAllPolicies(SessionToken caller, MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

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

Methods in com.metamatrix.platform.security.authorization.cache with parameters of type SessionToken
 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.
 

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

Methods in com.metamatrix.platform.security.authorization.service with parameters of type SessionToken
 boolean AuthorizationServiceImpl.checkAccess(SessionToken sessionToken, java.lang.String contextName, AuthorizationPermission request)
          Return whether the specified account has authorization to access the specified resource.
 boolean AuthorizationServiceImpl.checkAccess(SessionToken sessionToken, java.lang.String contextName, AuthorizationPermission request, boolean fetchDependants)
          Return whether the specified account has authorization to access the specified resource and all its dependant resources.
 boolean AuthorizationServiceImpl.containsPolicy(SessionToken caller, AuthorizationPolicyID policyID)
          Return whether there is an existing policy with the specified ID.
 java.util.Set AuthorizationServiceImpl.executeTransaction(SessionToken administrator, java.util.List actions)
          Execute as a single transaction with the specified actions, and return the set of IDs for the objects that were affected/modified by the action.
 java.util.Collection AuthorizationServiceImpl.findAllPolicyIDs(SessionToken caller)
          Locate the IDs of all of the policies that are accessible by the caller.
 java.util.Collection AuthorizationServiceImpl.findPolicyIDs(SessionToken caller, java.util.Collection principals)
          Locate the IDs of all of the policies that apply to the specified principals and that are accessible by the caller.
 java.util.Collection AuthorizationServiceImpl.getInaccessibleResources(SessionToken sessionToken, java.lang.String contextName, java.util.Collection requests)
          Of those resources specified, return the subset for which the specified account does NOT have authorization to access.
 java.util.Collection AuthorizationServiceImpl.getPolicIDsForResourceInRealm(SessionToken caller, AuthorizationRealm realm, java.lang.String resourceName)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissionsImpl on the given resource that exists in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceImpl.getPolicies(SessionToken caller, java.util.Collection policyIDs)
          Locate the policies that have the specified IDs.
 java.util.Collection AuthorizationServiceImpl.getPoliciesInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicys that have AuthorizationPermissionsImpl in the given AuthorizationRealm.
NOTE: It is the responsibility of the caller to determine which of the AuthorizationPolicy's AuthorizationPermissionsImpl are actually in the given AuthorizationRealm.
 AuthorizationPolicy AuthorizationServiceImpl.getPolicy(SessionToken caller, AuthorizationPolicyID policyID)
          Locate the policy that has the specified ID.
 java.util.Collection AuthorizationServiceImpl.getPolicyIDsInPartialRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissionsImpl that exist in the given partial AuthorizationRealm.
The implementation is such that all AuthorizationPolicyIDs whose AuthorizationRealm starts with the given AuthorizationRealm are returned.
 java.util.Collection AuthorizationServiceImpl.getPolicyIDsInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceImpl.getPolicyIDsWithPermissionsInRealm(SessionToken caller, AuthorizationRealm realm)
          Returns a Collection of AuthorizationPolicyIDs that have AuthorizationPermissionsImpl in the given AuthorizationRealm.
NOTE: It is the responsibility of the caller to determine which of the AuthorizationPolicy's AuthorizationPermissionsImpl are actually in the given AuthorizationRealm.
 java.util.Collection AuthorizationServiceImpl.getPrincipalsForRole(SessionToken caller, java.lang.String roleName)
          Returns a collection MetaMatrixPrincipalName objects containing the name of the principal along with its type which belong to the given role.
 java.util.Collection AuthorizationServiceImpl.getRealmNames(SessionToken caller)
          Obtain the names of all of the realms known to the system.
 java.util.Map AuthorizationServiceImpl.getRoleDescriptions(SessionToken caller)
          Obtain the names of all of the roles and their descriptions known to the system.
 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.hasPolicy(SessionToken caller, AuthorizationRealm realm, java.lang.String policyName)
           
 boolean AuthorizationServiceImpl.isCallerInRole(SessionToken caller, java.lang.String roleName)
          Verify that caller is in the specified logical role.
 void AuthorizationServiceImpl.migratePolicies(SessionToken token, EntitlementMigrationReport rpt, java.lang.String targetVDBName, java.lang.String targetVDBVersion, java.util.Set targetNodes, java.util.Collection sourcePolicies, AdminOptions options)
           
 boolean AuthorizationServiceImpl.removePrincipalFromAllPolicies(SessionToken caller, MetaMatrixPrincipalName principal)
          Remove given Principal from ALL AuthorizationPolicies to which he belongs.
 

Uses of SessionToken in com.metamatrix.server.admin.apiimpl
 

Methods in com.metamatrix.server.admin.apiimpl with parameters of type SessionToken
static EntitlementMigrationReport RuntimeMetadataHelper.migrateEntitlements(VirtualDatabaseID tvdbID, char[] dataRoleContents, boolean overwriteExisting, SessionToken session)
           
static EntitlementMigrationReport RuntimeMetadataHelper.migrateEntitlements(VirtualDatabase sourceVDB, VirtualDatabase targetVDB, SessionToken token)
           
 

Uses of SessionToken in com.metamatrix.server.query.service
 

Methods in com.metamatrix.server.query.service with parameters of type SessionToken
 void QueryServiceInterface.cancelQueries(SessionToken sessionToken, boolean shouldRollback)
           
 void QueryService.cancelQueries(SessionToken sessionToken, boolean shouldRollback)
           
 void QueryServiceInterface.clearCache(SessionToken sessionToken)
           
 void QueryService.clearCache(SessionToken sessionToken)
           
 java.util.Collection QueryService.getQueriesForSession(SessionToken userToken)
           
 

Uses of SessionToken in com.metamatrix.server.serverapi
 

Methods in com.metamatrix.server.serverapi that return SessionToken
 SessionToken RequestInfo.getSessionToken()
          Returns the session token that the request was submitted under.
 

Methods in com.metamatrix.server.serverapi with parameters of type SessionToken
 void RequestInfo.setSessionToken(SessionToken token)
          Set the session token that the request was submitted under.
 

Uses of SessionToken in com.metamatrix.server.util
 

Methods in com.metamatrix.server.util with parameters of type SessionToken
 void DataServerSessionTerminationHandler.cleanup(SessionToken token)
           
 



Copyright © 2009. All Rights Reserved.