FileDocCategorySizeDatePackage
JaxRpcCodegenFactory.javaAPI DocGlassfish v2 API2721Fri May 04 22:36:14 BST 2007com.sun.enterprise.webservice.codegen

JaxRpcCodegenFactory

public class JaxRpcCodegenFactory extends Object
author
Jerome Dochez

Fields Summary
private static JaxRpcCodegenFactory
registeredFactory
Constructors Summary
private JaxRpcCodegenFactory()
Creates a new instance of WSCompileFactory

    
Methods Summary
public JaxRpcCodegenAdaptergetAdapter()

        return new JaxRpcRICodegen();
    
public static com.sun.enterprise.webservice.codegen.JaxRpcCodegenFactorynewInstance()

        
        //  for now, there is only one around, later, we may have
        // to look into some property file to find out which
        // jaxrpc implementation we want to use.
        if (registeredFactory==null) {
            registeredFactory = new JaxRpcCodegenFactory();
        }
        return registeredFactory;