org.apache.xmlgraphics.util.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.fop Show documentation
Show all versions of org.apache.fop Show documentation
The core maven build properties
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.
*/
/* $Id: Service.java 1780540 2017-01-27 11:10:50Z ssteiner $ */
package org.apache.xmlgraphics.util;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.IOUtils;
/**
* This class handles looking up service providers on the class path.
* It implements the system described in:
*
* JAR
* File Specification Under Service Provider. Note that this
* interface is very similar to the one they describe which seems to
* be missing in the JDK.
*
* @version $Id: Service.java 1780540 2017-01-27 11:10:50Z ssteiner $
*
* Originally authored by Thomas DeWeese.
*/
public final class Service {
private Service() {
}
// Remember providers we have looked up before.
static Map> classMap = new java.util.HashMap>();
static Map> instanceMap = new java.util.HashMap>();
/**
* Returns an iterator where each element should implement the
* interface (or subclass the baseclass) described by cls. The
* Classes are found by searching the classpath for service files
* named: 'META-INF/services/<fully qualified classname> that list
* fully qualifted classnames of classes that implement the
* service files classes interface. These classes must have
* default constructors.
*
* @param cls The class/interface to search for providers of.
*/
public static synchronized Iterator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy