org.opensaml.saml2.metadata.support.SAML2MetadataHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensaml Show documentation
Show all versions of opensaml Show documentation
The OpenSAML-J library provides tools to support developers working with the Security Assertion Markup Language
(SAML).
/*
* 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.saml2.metadata.support;
import java.util.List;
import org.opensaml.saml2.metadata.IndexedEndpoint;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Utility helper class for SAML 2 metadata objects.
*/
public final class SAML2MetadataHelper {
/** Constructor. */
private SAML2MetadataHelper() { }
/**
* Select the default {@link IndexedEndpoint} from a list of candidates.
*
*
* The algorithm used is:
*
* - Select the first endpoint with an explicit
isDefault=true
* - Select the first endpoint with no explicit
isDefault
* - Select the first endpoint
*
*
*
*
* @param candidates the list of candidate indexed endpoints
* @return the selected candidate (or null if the list is null or empty)
*
* @param the subtype of IndexedType
*
*/
public static T getDefaultIndexedEndpoint(List candidates) {
Logger log = getLogger();
log.debug("Selecting default IndexedEndpoint");
if (candidates == null || candidates.isEmpty()) {
log.debug("IndexedEndpoint list was null or empty, returning null");
return null;
}
T firstNoDefault = null;
for (T endpoint : candidates) {
if (endpoint.isDefault()) {
log.debug("Selected IndexedEndpoint with explicit isDefault of true");
return endpoint;
}
// This records the first element whose isDefault is not explicitly false
if (firstNoDefault == null && endpoint.isDefaultXSBoolean() == null) {
firstNoDefault = endpoint;
}
}
if (firstNoDefault != null) {
log.debug("Selected first IndexedEndpoint with no explicit isDefault");
return firstNoDefault;
} else {
log.debug("Selected first IndexedEndpoint with explicit isDefault of false");
return candidates.get(0);
}
}
/**
* Get an SLF4J Logger.
*
* @return a Logger instance
*/
private static Logger getLogger() {
return LoggerFactory.getLogger(SAML2MetadataHelper.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy