Class ExtractUsernamePasswordFromWSSToken

    • Field Detail

      • log

        @Nonnull
        private final org.slf4j.Logger log
        Class logger.
      • inboundMessage

        @Nullable
        private Envelope inboundMessage
        Inbound message to operate on.
    • Constructor Detail

      • ExtractUsernamePasswordFromWSSToken

        public ExtractUsernamePasswordFromWSSToken()
    • Method Detail

      • doPreExecute

        protected boolean doPreExecute​(@Nonnull
                                       ProfileRequestContext profileRequestContext,
                                       @Nonnull
                                       AuthenticationContext authenticationContext)
        Performs this authentication action's pre-execute step. Default implementation just returns true.
        Overrides:
        doPreExecute in class AbstractAuthenticationAction
        Parameters:
        profileRequestContext - the current IdP profile request context
        authenticationContext - the current authentication context
        Returns:
        true iff execution should continue
      • doExecute

        protected void doExecute​(@Nonnull
                                 ProfileRequestContext profileRequestContext,
                                 @Nonnull
                                 AuthenticationContext authenticationContext)
        Performs this authentication action. Default implementation throws an exception.
        Overrides:
        doExecute in class AbstractAuthenticationAction
        Parameters:
        profileRequestContext - the current IdP profile request context
        authenticationContext - the current authentication context
      • extractUsernamePassword

        @Nullable
        private Pair<String,​String> extractUsernamePassword​(@Nonnull
                                                                  Envelope message)
        Extracts a username/password from the inbound message.
        Parameters:
        message - the inbound message
        Returns:
        the username and password
      • getUsernameToken

        @Nullable
        private UsernameToken getUsernameToken​(@Nonnull
                                               Envelope message)
        Extracts the UsernameToken from the given Envelope.
        Parameters:
        message - the message from which the token should be extracted
        Returns:
        the extracted token