
org.ow2.easywsdl.extensions.wsdl4complexwsdl.WSDL4ComplexWsdlFactory Maven / Gradle / Ivy
/**
* Copyright (c) 2008-2012 EBM WebSourcing, 2012-2023 Linagora
*
* This program/library is free software: you can redistribute it and/or modify
* it under the terms of the New BSD License (3-clause license).
*
* This program/library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the New BSD License (3-clause license)
* for more details.
*
* You should have received a copy of the New BSD License (3-clause license)
* along with this program/library; If not, see http://directory.fsf.org/wiki/License:BSD_3Clause/
* for the New BSD License (3-clause license).
*/
package org.ow2.easywsdl.extensions.wsdl4complexwsdl;
import java.util.Map;
import org.ow2.easywsdl.extensions.wsdl4complexwsdl.api.Description;
import org.ow2.easywsdl.extensions.wsdl4complexwsdl.api.WSDL4ComplexWsdlException;
import org.ow2.easywsdl.extensions.wsdl4complexwsdl.api.WSDL4ComplexWsdlReader;
import org.ow2.easywsdl.extensions.wsdl4complexwsdl.api.WSDL4ComplexWsdlWriter;
import org.ow2.easywsdl.wsdl.ExtensionFactory;
import org.ow2.easywsdl.wsdl.api.WSDLReader.FeatureConstants;
import org.ow2.easywsdl.wsdl.api.abstractItf.AbsItfDescription;
/**
* This abstract class defines a factory API that enables applications to obtain
* a WSDLFactory capable of producing new Definitions, new WSDLReaders, and new
* WSDLWriters.
*
*
* Some ideas used here have been shamelessly copied from the wonderful JAXP and
* Xerces work.
*
*
* @author Nicolas Salatge - EBM WebSourcing
*/
public abstract class WSDL4ComplexWsdlFactory extends ExtensionFactory {
/**
* Get a new instance of a WSDLFactory. This method follows (almost) the
* same basic sequence of steps that JAXP follows to determine the
* fully-qualified class name of the class which implements WSDLFactory.
*
* The steps in order are:
*
* - Check the property file
* META-INF/services/javax.wsdl.factory.WSDLFactory.
* - Check the javax.wsdl.factory.WSDLFactory system property.
* - Check the lib/wsdl.properties file in the JRE directory. The key will
* have the same name as the above system property.
* - Use the default class name provided by the implementation.
*
*
* Once an instance of a WSDLFactory is obtained, invoke newDefinition(),
* newWSDLReader(), or newWSDLWriter(), to create the desired instances.
*/
public static WSDL4ComplexWsdlFactory newInstance() throws WSDL4ComplexWsdlException {
return new WSDL4ComplexWsdlFactoryImpl();
}
/**
* Create a new instance of a Definition.
*
* @throws WSDL4ComplexWsdlException
*/
@SuppressWarnings("unchecked")
public abstract Description addComplexWsdlElmt2Description(AbsItfDescription desc)
throws WSDL4ComplexWsdlException;
/**
* Generic method for extensions
*
* @throws WSDL4ComplexWsdlException
*/
@SuppressWarnings("unchecked")
public abstract Description addExtElmt2Description(AbsItfDescription desc)
throws WSDL4ComplexWsdlException;
/**
* Create a new instance of a WSDLReaderImpl.
*
* @throws WSDL4ComplexWsdlException
*/
public abstract WSDL4ComplexWsdlReader newWSDLReader() throws WSDL4ComplexWsdlException;
/**
* Create a new instance of a WSDLReaderImpl.
*
* @throws WSDL4ComplexWsdlException
*/
public abstract WSDL4ComplexWsdlReader newWSDLReader(Map features)
throws WSDL4ComplexWsdlException;
/**
* Create a new instance of a WSDLWriterImpl.
*
* @throws WSDL4ComplexWsdlException
*/
public abstract WSDL4ComplexWsdlWriter newWSDLWriter() throws WSDL4ComplexWsdlException;
}