![JAR search and dependency download from the Maven repository](/logo.png)
org.opensaml.profile.action.impl.SetProfileId Maven / Gradle / Ivy
/*
* 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.profile.action.impl;
import javax.annotation.Nonnull;
import org.opensaml.profile.action.AbstractProfileAction;
import org.opensaml.profile.context.ProfileRequestContext;
import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty;
import net.shibboleth.utilities.java.support.logic.Constraint;
import net.shibboleth.utilities.java.support.primitive.StringSupport;
/**
* A profile action that sets the ID of the profile in use.
*
* @event {@link org.opensaml.profile.action.EventIds#PROCEED_EVENT_ID}
* @post ProfileRequestContext.profileId != null
*/
public class SetProfileId extends AbstractProfileAction {
/** ID of the profile in use. */
@Nonnull @NotEmpty private final String profileId;
/**
* Constructor.
*
* @param id ID of the profile in use
*/
public SetProfileId(@Nonnull @NotEmpty final String id) {
profileId = Constraint.isNotNull(StringSupport.trimOrNull(id), "Profile ID cannot be null or empty");
}
/** {@inheritDoc} */
@Override
protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext) {
profileRequestContext.setProfileId(profileId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy