
org.opensaml.messaging.handler.impl.CheckMandatoryIssuer Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID licenses this file to You under the Apache
* License, Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opensaml.messaging.handler.impl;
import java.util.function.Function;
import javax.annotation.Nonnull;
import net.shibboleth.utilities.java.support.annotation.constraint.NonnullAfterInit;
import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
import net.shibboleth.utilities.java.support.component.ComponentSupport;
import net.shibboleth.utilities.java.support.logic.Constraint;
import org.opensaml.messaging.context.MessageContext;
import org.opensaml.messaging.handler.AbstractMessageHandler;
import org.opensaml.messaging.handler.MessageHandlerException;
/**
* Message handler that checks that a message context has an issuer.
*/
public final class CheckMandatoryIssuer extends AbstractMessageHandler {
/** Strategy used to look up the issuer associated with the message context. */
@NonnullAfterInit private Function issuerLookupStrategy;
/**
* Set the strategy used to look up the issuer associated with the message context.
*
* @param strategy lookup strategy
*/
public void setIssuerLookupStrategy(@Nonnull final Function strategy) {
ComponentSupport.ifInitializedThrowUnmodifiabledComponentException(this);
issuerLookupStrategy = Constraint.isNotNull(strategy, "Message context issuer lookup strategy cannot be null");
}
/** {@inheritDoc} */
@Override
protected void doInitialize() throws ComponentInitializationException {
super.doInitialize();
if (issuerLookupStrategy == null) {
throw new ComponentInitializationException("Message context issuer lookup strategy cannot be null");
}
}
/** {@inheritDoc} */
@Override
protected void doInvoke(@Nonnull final MessageContext messageContext) throws MessageHandlerException {
final String issuer = issuerLookupStrategy.apply(messageContext);
if (issuer == null) {
throw new MessageHandlerException("Message context did not contain an issuer");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy