com.helger.schematron.svrl.SVRLLocationBeautifierRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-schematron Show documentation
Show all versions of ph-schematron Show documentation
Library for validating XML documents with Schematron
/**
* Copyright (C) 2014-2020 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed 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 com.helger.schematron.svrl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.helger.commons.annotation.PresentForCodeCoverage;
import com.helger.commons.collection.impl.ICommonsList;
import com.helger.commons.lang.ServiceLoaderHelper;
/**
* A central registry for all {@link ISVRLLocationBeautifierSPI} instances.
*
* @author Philip Helger
*/
@NotThreadSafe
public final class SVRLLocationBeautifierRegistry
{
private static final Logger LOGGER = LoggerFactory.getLogger (SVRLLocationBeautifierRegistry.class);
private static final ICommonsList s_aList = ServiceLoaderHelper.getAllSPIImplementations (ISVRLLocationBeautifierSPI.class);
@PresentForCodeCoverage
private static final SVRLLocationBeautifierRegistry s_aInstance = new SVRLLocationBeautifierRegistry ();
private SVRLLocationBeautifierRegistry ()
{}
/**
* Get the beautified location for the given namespace and local name.
*
* @param sNamespaceURI
* The namespace URI
* @param sLocalName
* The element local name
* @return null
if no beautification is available
*/
@Nullable
public static String getBeautifiedLocation (@Nonnull final String sNamespaceURI, @Nonnull final String sLocalName)
{
for (final ISVRLLocationBeautifierSPI aBeautifier : s_aList)
{
final String sBeautified = aBeautifier.getReplacementText (sNamespaceURI, sLocalName);
if (sBeautified != null)
return sBeautified;
}
if (LOGGER.isDebugEnabled ())
LOGGER.debug ("Unsupported elements for beautification: " + sNamespaceURI + " -- " + sLocalName);
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy