1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
package org.jboss.wsf.spi.tools;
import java.io.File;
import java.io.PrintStream;
import org.jboss.wsf.spi.util.ServiceLoader;
/**
* WSContractProvider is responsible for generating the required portable
* JAX-WS artifacts for a service endpoint implementation. This includes class
* files for wrapper types and fault beans. WSDL may be optionally generated as
* well using this API.
*
* <p>The following example generates class files, source files and WSDL for an
* endpoint:</p>
* <pre>
* WSContractProvider provider = WSContractProvider.newInstance();
* provider.setGenerateSource(true);
* provider.setGenerateWsdl(true);
* provider.setOutputDirectory(new File("output"));
* provider.setMessageStream(System.out);
* provider.provide(TestMe.class);
* </pre>
*
* <p>Thread-Safety:</p>
* This class expects to be thread-confined, so it can not be shared between threads.
*
* @author <a href="mailto:jason.greene@jboss.com">Jason T. Greene</a>
*/
public abstract class WSContractProvider
{
private static String DEFAULT_PROVIDER = "org.jboss.ws.tools.jaxws.impl.JBossWSProviderFactoryImpl";
public static final String PROVIDER_PROPERTY = "org.jboss.wsf.spi.tools.ProviderFactoryImpl";
protected WSContractProvider()
{
}
/**
* Obtain a new instance of a WSContractProvider. This will use the current
* thread's context class loader to locate the WSContractProviderFactory
* implementation.
*
* @return a new WSContractProvider
*/
public static WSContractProvider newInstance()
{
return newInstance(Thread.currentThread().getContextClassLoader());
}
/**
* Obtain a new instance of a WSContractProvider. The specified ClassLoader will be used to
* locate the WSContractProviderFactory implementation
*
* @param loader the ClassLoader to use
* @return a new WSContractProvider
*/
public static WSContractProvider newInstance(ClassLoader loader)
{
ClassLoader oldLoader = Thread.currentThread().getContextClassLoader();
try
{
Thread.currentThread().setContextClassLoader(loader);
WSContractProviderFactory factory = (WSContractProviderFactory) ServiceLoader.loadService(PROVIDER_PROPERTY, DEFAULT_PROVIDER);
return factory.createProvider(loader);
}
finally
{
Thread.currentThread().setContextClassLoader(oldLoader);
}
}
/**
* Enables/Disables WSDL generation.
*
* @param generateWsdl whether or not to generate WSDL
*/
public abstract void setGenerateWsdl(boolean generateWsdl);
/**
* Enables/Disables Java source generation.
*
* @param generateSource whether or not to generate Java source.
*/
public abstract void setGenerateSource(boolean generateSource);
/**
* Sets the main output directory. If the directory does not exist, it will be created.
*
* @param directory the root directory for generated files
*/
public abstract void setOutputDirectory(File directory);
/**
* Sets the resource directory. This directory will contain any generated
* WSDL and XSD files. If the directory does not exist, it will be created.
* If not specified, the output directory will be used instead.
*
* @param directory the root directory for generated resource files
*/
public abstract void setResourceDirectory(File directory);
/**
* Sets the source directory. This directory will contain any generated Java source.
* If the directory does not exist, it will be created. If not specified,
* the output directory will be used instead.
*
* @param directory the root directory for generated source code
*/
public abstract void setSourceDirectory(File directory);
/**
* Sets the ClassLoader used to discover types. This defaults to the one used
* in instantiation.
*
* @param loader the ClassLoader to use
*/
public abstract void setClassLoader(ClassLoader loader);
/**
* Generates artifacts using the current settings. This method may be invoked
* more than once (e.g. multiple endpoints).
*
* @param endpointClass the name of the endpoint implementation bean
* @throws RuntimeException if any error occurs during processing, or the class is not found
*/
public abstract void provide(String endpointClass);
/**
* Generates artifacts using the current settings. This method may be invoked
* more than once (e.g. multiple endpoints).
*
* @param endpointClass the endpoint implementation bean
* @throws RuntimeException if any error occurs during processing
*/
public abstract void provide(Class<?> endpointClass);
/**
* Sets the PrintStream to use for status feedback. The simplest example
* would be to use System.out.
*
* <p>Example output:</p>
* <pre>
* Generating WSDL:
* TestMeService.wsdl
* Writing Source:
* org/jboss/ws/tools/jaxws/TestMe.java
* org/jboss/ws/tools/jaxws/TestMeResponse.java
* Writing Classes:
* org/jboss/ws/tools/jaxws/TestMe.class
* org/jboss/ws/tools/jaxws/TestMeResponse.class
* </pre>
* @param messageStream the stream to use for status messages:
*/
public abstract void setMessageStream(PrintStream messageStream);
}
|