Uses of Interface
org.opensaml.saml2.metadata.RoleDescriptor

Packages that use RoleDescriptor
org.opensaml.common.binding Classes related to SAML binding operations. 
org.opensaml.saml2.metadata Interfaces for SAML 2.0 metadata specification types and elements. 
org.opensaml.saml2.metadata.impl Implementations of the SAML 2.0 metadata specification types and elements. 
org.opensaml.saml2.metadata.provider Class for retrieving, filtering, and querying metadata. 
org.opensaml.saml2.metadata.validator Validation rules for SAML 2.0 metadata types and elements. 
org.opensaml.samlext.saml2mdquery Interfaces for SAML 2 metadata standalone query endpoints profile. 
org.opensaml.samlext.saml2mdquery.impl Implemention for SAML 2 metadata standalone query endpoints profile objects. 
org.opensaml.security Classes related to verifying various credentials within a SAML system. 
 

Uses of RoleDescriptor in org.opensaml.common.binding
 

Methods in org.opensaml.common.binding that return RoleDescriptor
 RoleDescriptor AbstractEndpointSelector.getEntityRoleMetadata()
          Gets the role of the entity.
 RoleDescriptor SAMLMessageContext.getLocalEntityRoleMetadata()
          Gets the role metadata of the local entity.
 RoleDescriptor BasicSAMLMessageContext.getLocalEntityRoleMetadata()
          Gets the role metadata of the local entity.
 RoleDescriptor SAMLMessageContext.getPeerEntityRoleMetadata()
          Gets the role of the peer entity.
 RoleDescriptor BasicSAMLMessageContext.getPeerEntityRoleMetadata()
          Gets the role of the peer entity.
 

Methods in org.opensaml.common.binding with parameters of type RoleDescriptor
 void AbstractEndpointSelector.setEntityRoleMetadata(RoleDescriptor role)
          Sets the role of the entity.
 void SAMLMessageContext.setLocalEntityRoleMetadata(RoleDescriptor role)
          Sets the role metadata for the local entity.
 void BasicSAMLMessageContext.setLocalEntityRoleMetadata(RoleDescriptor role)
          Sets the role metadata for the local entity.
 void SAMLMessageContext.setPeerEntityRoleMetadata(RoleDescriptor role)
          Sets the role metadata for the peer entity.
 void BasicSAMLMessageContext.setPeerEntityRoleMetadata(RoleDescriptor role)
          Sets the role metadata for the peer entity.
 

Uses of RoleDescriptor in org.opensaml.saml2.metadata
 

Subinterfaces of RoleDescriptor in org.opensaml.saml2.metadata
 interface AttributeAuthorityDescriptor
          SAML 2.0 Metadata AttributeAuthorityDescriptor
 interface AuthnAuthorityDescriptor
          SAML 2.0 Metadata AuthnAuthorityDescriptor
 interface IDPSSODescriptor
          SAML 2.0 Metadata IDPSSODescriptorType
 interface PDPDescriptor
          SAML 2.0 Metadata PDPDescriptor.
 interface SPSSODescriptor
          SAML 2.0 Metadata SPSSODescriptorType
 interface SSODescriptor
          SAML 2.0 Metadata SSODescriptor
 

Methods in org.opensaml.saml2.metadata that return types with arguments of type RoleDescriptor
 java.util.List<RoleDescriptor> EntityDescriptor.getRoleDescriptors()
          Gets all the role descriptors for this entity descriptor.
 java.util.List<RoleDescriptor> EntityDescriptor.getRoleDescriptors(javax.xml.namespace.QName typeOrName)
          Gets all the role descriptors for this entity descriptor that match the supplied QName parameter.
 java.util.List<RoleDescriptor> EntityDescriptor.getRoleDescriptors(javax.xml.namespace.QName typeOrName, java.lang.String supportedProtocol)
          Gets all the role descriptors for this entity that support the given protocol.
 

Uses of RoleDescriptor in org.opensaml.saml2.metadata.impl
 

Classes in org.opensaml.saml2.metadata.impl that implement RoleDescriptor
 class AttributeAuthorityDescriptorImpl
          A concrete implementation of AttributeAuthorityDescriptor.
 class AuthnAuthorityDescriptorImpl
          Concreate implementation of AuthnAuthorityDescriptor
 class IDPSSODescriptorImpl
          Concrete implementation of IDPSSODescriptor.
 class PDPDescriptorImpl
          Concrete implementation of PDPDescriptor.
 class RoleDescriptorImpl
          Concrete implementation of RoleDescriptor.
 class SPSSODescriptorImpl
          Concrete implementation of SPSSODescriptor.
 class SSODescriptorImpl
          Concrete implementation of SSODescriptor.
 

Methods in org.opensaml.saml2.metadata.impl that return types with arguments of type RoleDescriptor
 java.util.List<RoleDescriptor> EntityDescriptorImpl.getRoleDescriptors()
          Gets all the role descriptors for this entity descriptor.
 java.util.List<RoleDescriptor> EntityDescriptorImpl.getRoleDescriptors(javax.xml.namespace.QName typeOrName)
          Gets all the role descriptors for this entity descriptor that match the supplied QName parameter.
 java.util.List<RoleDescriptor> EntityDescriptorImpl.getRoleDescriptors(javax.xml.namespace.QName type, java.lang.String supportedProtocol)
          Gets all the role descriptors for this entity that support the given protocol.
 

Uses of RoleDescriptor in org.opensaml.saml2.metadata.provider
 

Methods in org.opensaml.saml2.metadata.provider that return RoleDescriptor
 RoleDescriptor MetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName, java.lang.String supportedProtocol)
          Gets the role descriptors of a given type for a given entity that support the given protocol from valid metadata.
 RoleDescriptor ChainingMetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName, java.lang.String supportedProtocol)
          Gets the role descriptors of a given type for a given entity that support the given protocol from valid metadata.
 RoleDescriptor AbstractMetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName, java.lang.String supportedProtocol)
          Gets the role descriptors of a given type for a given entity that support the given protocol from valid metadata.
 

Methods in org.opensaml.saml2.metadata.provider that return types with arguments of type RoleDescriptor
 java.util.List<RoleDescriptor> MetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName)
          Gets the role descriptors of a given type for a given entity from valid metadata.
 java.util.List<RoleDescriptor> ChainingMetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName)
          Gets the role descriptors of a given type for a given entity from valid metadata.
 java.util.List<RoleDescriptor> AbstractMetadataProvider.getRole(java.lang.String entityID, javax.xml.namespace.QName roleName)
          Gets the role descriptors of a given type for a given entity from valid metadata.
 

Methods in org.opensaml.saml2.metadata.provider with parameters of type RoleDescriptor
protected  java.lang.String SignatureValidationFilter.getRoleIDToken(java.lang.String entityID, RoleDescriptor role)
          Get a string token for logging/debugging purposes that contains role information and containing entityID.
protected  javax.xml.namespace.QName EntityRoleFilter.getRoleName(RoleDescriptor role)
          Gets the effective name for the role.
 

Uses of RoleDescriptor in org.opensaml.saml2.metadata.validator
 

Classes in org.opensaml.saml2.metadata.validator with type parameters of type RoleDescriptor
 class RoleDescriptorSchemaValidator<RoleDescriptorType extends RoleDescriptor>
          Checks RoleDescriptor for Schema compliance.
 class RoleDescriptorSpecValidator<RoleDescriptorType extends RoleDescriptor>
          Checks RoleDescriptor for Spec compliance.
 

Methods in org.opensaml.saml2.metadata.validator with parameters of type RoleDescriptor
protected  void RoleDescriptorSchemaValidator.validateProtocols(RoleDescriptor roleDescriptor)
          Checks that one or more Protocols are present.
protected  void RoleDescriptorSpecValidator.validateProtocols(RoleDescriptor roleDescriptor)
          Checks that the SAML 2.0 protocol is present.
 

Uses of RoleDescriptor in org.opensaml.samlext.saml2mdquery
 

Subinterfaces of RoleDescriptor in org.opensaml.samlext.saml2mdquery
 interface AttributeQueryDescriptorType
          SAML 2.0 Metadata extension AttributeQueryDescriptorType.
 interface AuthnQueryDescriptorType
          SAML 2.0 Metadata extension AuthnQueryDescriptorType.
 interface AuthzDecisionQueryDescriptorType
          SAML 2.0 Metadata extension AuthzDecisionQueryDescriptorType.
 interface QueryDescriptorType
          SAML 2.0 Metadata extension QueryDescriptorType.
 

Uses of RoleDescriptor in org.opensaml.samlext.saml2mdquery.impl
 

Classes in org.opensaml.samlext.saml2mdquery.impl that implement RoleDescriptor
 class AttributeQueryDescriptorTypeImpl
          Concrete implementation of AttributeQueryDescriptorType.
 class AuthnQueryDescriptorTypeImpl
          Concrete implementation of AuthnQueryDescriptorType.
 class AuthzDecisionQueryDescriptorTypeImpl
          Concrete implementation of AuthzDecisionQueryDescriptorType.
 class QueryDescriptorTypeImpl
          Concrete implementation of QueryDescriptorType.
 

Uses of RoleDescriptor in org.opensaml.security
 

Methods in org.opensaml.security that return RoleDescriptor
 RoleDescriptor SAMLMDCredentialContext.getRoleDescriptor()
          Get the role descriptor context.
 

Methods in org.opensaml.security that return types with arguments of type RoleDescriptor
protected  java.util.List<RoleDescriptor> MetadataCredentialResolver.getRoleDescriptors(java.lang.String entityID, javax.xml.namespace.QName role, java.lang.String protocol)
          Get the list of metadata role descriptors which match the given entityID, role and protocol.
 



Copyright © 2006-2011 Internet2. All Rights Reserved.