
org.ow2.easywsdl.extensions.wsdl4bpel.WSDL4BPELFactory Maven / Gradle / Ivy
/**
* Copyright (c) 2008-2012 EBM WebSourcing, 2012-2016 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.wsdl4bpel;
import java.util.Map;
import org.ow2.easywsdl.extensions.wsdl4bpel.api.Description;
import org.ow2.easywsdl.extensions.wsdl4bpel.api.WSDL4BPELException;
import org.ow2.easywsdl.extensions.wsdl4bpel.api.WSDL4BPELReader;
import org.ow2.easywsdl.extensions.wsdl4bpel.api.WSDL4BPELWriter;
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 WSDL4BPELFactory 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 WSDL4BPELFactory newInstance() throws WSDL4BPELException {
return new WSDL4BPELFactoryImpl();
}
/**
* Create a new instance of a Definition.
*
* @throws WSDL4BPELException
*/
@SuppressWarnings("unchecked")
public abstract Description addBPELElmt2Description(AbsItfDescription desc)
throws WSDL4BPELException;
/**
* Generic method for extensions
*
* @throws WSDL4BPELException
*/
@SuppressWarnings("unchecked")
public abstract Description addExtElmt2Description(AbsItfDescription desc)
throws WSDL4BPELException;
/**
* Create a new instance of a WSDLReaderImpl.
*
* @throws WSDL4BPELException
*/
public abstract WSDL4BPELReader newWSDLReader() throws WSDL4BPELException;
/**
* Create a new instance of a WSDLReaderImpl.
*
* @throws WSDL4BPELException
*/
public abstract WSDL4BPELReader newWSDLReader(Map features)
throws WSDL4BPELException;
/**
* Create a new instance of a WSDLWriterImpl.
*
* @throws WSDL4BPELException
*/
public abstract WSDL4BPELWriter newWSDLWriter() throws WSDL4BPELException;
}