Tabnine Logo
ChildContextLookup
Code IndexAdd Tabnine to your IDE (free)

How to use
ChildContextLookup
in
org.opensaml.messaging.context.navigate

Best Java code snippets using org.opensaml.messaging.context.navigate.ChildContextLookup (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: net.shibboleth.idp/idp-saml-impl

/** Constructor. */
public AddLogoutRequest() {
  // Default strategy is a 16-byte secure random source.
  idGeneratorLookupStrategy = new Function<ProfileRequestContext,IdentifierGenerationStrategy>() {
    public IdentifierGenerationStrategy apply(final ProfileRequestContext input) {
      return new SecureRandomIdentifierGenerationStrategy();
    }
  };
  
  logoutPropContextLookupStrategy = new ChildContextLookup<>(LogoutPropagationContext.class);
  includeSessionIndex = true;
}

origin: net.shibboleth.idp/idp-session-impl

/** Constructor. */
public UpdateSessionWithAuthenticationResult() {
  sessionContextCreationStrategy = new ChildContextLookup<>(SessionContext.class, true);
  subjectContextLookupStrategy = new ChildContextLookup<>(SubjectContext.class);
}

origin: org.opensaml/opensaml-saml-impl

/** Constructor. */
public ExtractConsentFromRequestHandler() {
  super();
  consentContextStrategy = new ChildContextLookup<>(SAMLConsentContext.class, true);
}

origin: org.opensaml/opensaml-saml-impl

/** Constructor. */
public AddChannelBindingsHeaderHandler() {
  super();
  channelBindingsContextLookupStrategy = new ChildContextLookup<>(ChannelBindingsContext.class);
}

origin: org.opensaml/opensaml-soap-api

/** Constructor. */
public HttpSOAPClient() {
  soapClientContextLookupStrategy =
      new ChildContextLookup<>(SOAPClientContext.class, false);
  soap11ContextLookupStrategy =
      new ChildContextLookup<>(SOAP11Context.class, false);
}
origin: net.shibboleth.idp/idp-session-impl

/** Constructor. */
public DetectIdentitySwitch() {
  sessionContextLookupStrategy = new ChildContextLookup<>(SessionContext.class);
  c14nContextLookupStrategy = new ChildContextLookup<>(SubjectCanonicalizationContext.class);
}

origin: net.shibboleth.idp/idp-consent

/** Constructor. */
public AbstractAttributeReleaseAction() {
  attributeReleaseContextLookupStrategy = new ChildContextLookup<>(AttributeReleaseContext.class, false);
  attributeContextLookupStrategy =
      Functions.compose(new ChildContextLookup<>(AttributeContext.class),
          new ChildContextLookup<ProfileRequestContext, RelyingPartyContext>(RelyingPartyContext.class));
}
origin: net.shibboleth.idp/idp-profile-impl

/** Constructor. */
public WriteAuditLog() {
  auditContextLookupStrategy = new ChildContextLookup<>(AuditContext.class);
  formattingMap = Collections.emptyMap();
}
origin: net.shibboleth.idp/idp-saml-impl

/**
 * Constructor.
 */
public PopulateDelegationContext() {
  super();
  
  relyingPartyContextLookupStrategy = new ChildContextLookup<>(RelyingPartyContext.class);
  samlMetadataContextLookupStrategy = new SAMLMetadataContextLookupFunction();
  delegationContextLookupStrategy = new ChildContextLookup<>(DelegationContext.class, true);
}

origin: net.shibboleth.idp/idp-profile-api

/** Constructor. */
public AbstractAttributePredicate() {
  attributeContextLookupStrategy = Functions.compose(new ChildContextLookup<>(AttributeContext.class),
      new ChildContextLookup<ProfileRequestContext,RelyingPartyContext>(RelyingPartyContext.class));
  useUnfilteredAttributes = true;
}

origin: net.shibboleth.idp/idp-saml-impl

/** Constructor. */
public PopulateEncryptionParameters() {
  relyingPartyContextLookupStrategy = new ChildContextLookup<>(RelyingPartyContext.class);
  
  // Create context by default.
  encryptionContextLookupStrategy = Functions.compose(
      new ChildContextLookup<>(EncryptionContext.class, true),
      new ChildContextLookup<ProfileRequestContext,RelyingPartyContext>(RelyingPartyContext.class));
  // Default: outbound msg context -> SAMLPeerEntityContext
  peerContextLookupStrategy =
      Functions.compose(new ChildContextLookup<>(SAMLPeerEntityContext.class),
          new OutboundMessageContextLookup());
}

origin: net.shibboleth.idp/idp-authn-impl

/** Constructor. */
TransitionMultiFactorAuthentication() {
  multiFactorContextLookupStrategy = Functions.compose(
      new ChildContextLookup(MultiFactorAuthenticationContext.class),
      new ChildContextLookup(AuthenticationContext.class));
  
  eventContextLookupStrategy = new WebFlowCurrentEventLookupFunction();
  
  validateLoginTransitions = true;
}
origin: net.shibboleth.idp/idp-consent-impl

/**
 * Constructor.
 *
 * @param type profile interceptor flow descriptor type to look up
 */
public FlowDescriptorLookupFunction(@Nonnull final Class<T> type) {
  interceptorFlowDescriptorType = Constraint.isNotNull(type, "Interceptor flow descriptor type cannot be null");
  
  interceptorContextlookupStrategy = new ChildContextLookup<>(ProfileInterceptorContext.class);
}
origin: org.opensaml/opensaml-saml-impl

/**
 * Constructor.
 */
public SAMLAddAttributeConsumingServiceHandler() {
  super();
  metadataContextLookupStrategy =
      Functions.compose(
          new ChildContextLookup<SAMLPeerEntityContext,SAMLMetadataContext>(SAMLMetadataContext.class),
          new ChildContextLookup<MessageContext,SAMLPeerEntityContext>(SAMLPeerEntityContext.class));
  indexLookupStrategy = new AuthnRequestIndexLookup();
}
origin: net.shibboleth.idp/idp-session-impl

/**
 * Constructor.
 * 
 * @param selector mapping function from session to flow descriptor
 */
public SelectLogoutPropagationFlow(@Nonnull final Function<SPSession, LogoutPropagationFlowDescriptor> selector) {
  flowSelectorFunction = Constraint.isNotNull(selector, "Selector cannot be null");
  logoutPropagationContextFunction = new ChildContextLookup<>(LogoutPropagationContext.class);
}
origin: net.shibboleth.idp/idp-consent

/** Constructor. */
public IsConsentRequiredPredicate() {
  consentContextLookupStrategy = new ChildContextLookup<>(ConsentContext.class);
  consentFlowDescriptorLookupStrategy =
      new FlowDescriptorLookupFunction<>(ConsentFlowDescriptor.class);
}
origin: net.shibboleth.idp/idp-saml-impl

/**
 * Constructor.
 */
public PopulateLibertyContext() {
  assertionTokenStrategy = new TokenStrategy();
  libertyContextLookupStrategy = new ChildContextLookup<>(LibertySSOSContext.class, true);
}

origin: net.shibboleth.idp/idp-attribute-resolver-impl

/** Constructor. */
public ScriptedDataConnector() {
  // Defaults to ProfileRequestContext -> RelyingPartyContext -> AttributeContext.
  prcLookupStrategy = new ParentContextLookup<>();
  scLookupStrategy = new ChildContextLookup<>(SubjectContext.class);
}
origin: net.shibboleth.idp/idp-attribute-resolver-impl

/** Constructor. */
public ScriptedAttributeDefinition() {
  // Defaults to ProfileRequestContext -> AttributeContext.
  prcLookupStrategy = new ParentContextLookup<>();
  scLookupStrategy = new ChildContextLookup<>(SubjectContext.class);
}
origin: net.shibboleth.idp/idp-saml-impl

/** Constructor. */
public InitializeRelyingPartyContextFromSAMLPeer() {
  relyingPartyContextCreationStrategy = new ChildContextLookup<>(RelyingPartyContext.class, true);
  peerEntityContextLookupStrategy = Functions.compose(
      new ChildContextLookup<>(SAMLPeerEntityContext.class), new InboundMessageContextLookup());
}
org.opensaml.messaging.context.navigateChildContextLookup

Most used methods

  • <init>

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • compareTo (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • String (java.lang)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JList (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now