Java Doc for AbstractSoap11Wsdl4jDefinitionBuilder.java in  » Web-Services » spring-ws-1.0.0 » org » springframework » ws » wsdl » wsdl11 » builder » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services » spring ws 1.0.0 » org.springframework.ws.wsdl.wsdl11.builder 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.ws.wsdl.wsdl11.builder.AbstractWsdl4jDefinitionBuilder
      org.springframework.ws.wsdl.wsdl11.builder.AbstractBindingWsdl4jDefinitionBuilder
         org.springframework.ws.wsdl.wsdl11.builder.AbstractSoap11Wsdl4jDefinitionBuilder

All known Subclasses:   org.springframework.ws.wsdl.wsdl11.builder.XsdBasedSoap11Wsdl4jDefinitionBuilder,
AbstractSoap11Wsdl4jDefinitionBuilder
abstract public class AbstractSoap11Wsdl4jDefinitionBuilder extends AbstractBindingWsdl4jDefinitionBuilder (Code)
Abstract base class for Wsdl11DefinitionBuilder implementations that use WSDL4J and contain a SOAP 1.1 binding. Requires the locationUri property to be set before use.
author:
   Arjen Poutsma
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.setLocationUri(String)
since:
   1.0.0


Field Summary
final public static  StringDEFAULT_TRANSPORT_URI
     The default soap:binding transport attribute value.


Method Summary
protected  ExtensibilityElementcreateSoapExtension(Class parentType, String localName)
     Creates a SOAP extensibility element.
protected  voidpopulateBinding(Binding binding, PortType portType)
     Calls populateBindingInternal(), creates SOAPBinding, and calls populateSoapBinding().
protected  voidpopulateBindingFault(BindingFault bindingFault, Fault fault)
     Creates a SOAPBody, and calls populateSoapBody().
protected  voidpopulateBindingInput(BindingInput bindingInput, Input input)
     Creates a SOAPBody, and calls populateSoapBody().
protected  voidpopulateBindingOperation(BindingOperation bindingOperation, Operation operation)
     Calls getBindingOperationName(), creates a SOAPOperation, and calls populateSoapOperation().
protected  voidpopulateBindingOutput(BindingOutput bindingOutput, Output output)
     Creates a SOAPBody, and calls populateSoapBody().
protected  voidpopulateDefinition(Definition definition)
     Adds the WSDL SOAP namespace to the definition.
protected  voidpopulatePort(Port port, Binding binding)
     Creates a SOAPAddress, and calls populateSoapAddress().
protected  voidpopulateSoapAddress(SOAPAddress soapAddress)
     Called after the SOAPAddress has been created.
protected  voidpopulateSoapBinding(SOAPBinding soapBinding)
     Called after the SOAPBinding has been created.
protected  voidpopulateSoapBody(SOAPBody soapBody)
     Called after the SOAPBody has been created.
protected  voidpopulateSoapFault(BindingFault bindingFault, SOAPFault soapFault)
     Called after the SOAPFault has been created.
protected  voidpopulateSoapOperation(SOAPOperation soapOperation)
     Called after the SOAPOperation has been created.
public  voidsetLocationUri(String locationUri)
     Sets the value used for the soap:address location attribute value.
public  voidsetTransportUri(String transportUri)
     Sets the value used for the soap:binding transport attribute value.

Field Detail
DEFAULT_TRANSPORT_URI
final public static String DEFAULT_TRANSPORT_URI(Code)
The default soap:binding transport attribute value.





Method Detail
createSoapExtension
protected ExtensibilityElement createSoapExtension(Class parentType, String localName) throws WSDLException(Code)
Creates a SOAP extensibility element.
Parameters:
  parentType - a class object indicating where in the WSDL definition this extension will exist
Parameters:
  localName - the local name of the extensibility element the extensibility element
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.ExtensionRegistry.createExtension(Classjavax.xml.namespace.QName)



populateBinding
protected void populateBinding(Binding binding, PortType portType) throws WSDLException(Code)
Calls populateBindingInternal(), creates SOAPBinding, and calls populateSoapBinding().
Parameters:
  binding - the WSDL4J Binding
Parameters:
  portType - the corresponding PortType
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPBinding
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapBinding(javax.wsdl.extensions.soap.SOAPBinding)



populateBindingFault
protected void populateBindingFault(BindingFault bindingFault, Fault fault) throws WSDLException(Code)
Creates a SOAPBody, and calls populateSoapBody().
Parameters:
  bindingFault - the WSDL4J BindingFault
throws:
  javax.wsdl.WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPOperation
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapBody(javax.wsdl.extensions.soap.SOAPBody)



populateBindingInput
protected void populateBindingInput(BindingInput bindingInput, Input input) throws WSDLException(Code)
Creates a SOAPBody, and calls populateSoapBody().
Parameters:
  bindingInput - the WSDL4J BindingInput
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPOperation
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapBody(javax.wsdl.extensions.soap.SOAPBody)



populateBindingOperation
protected void populateBindingOperation(BindingOperation bindingOperation, Operation operation) throws WSDLException(Code)
Calls getBindingOperationName(), creates a SOAPOperation, and calls populateSoapOperation().
Parameters:
  bindingOperation - the WSDL4J BindingOperation
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPOperation
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapOperation(javax.wsdl.extensions.soap.SOAPOperation)



populateBindingOutput
protected void populateBindingOutput(BindingOutput bindingOutput, Output output) throws WSDLException(Code)
Creates a SOAPBody, and calls populateSoapBody().
Parameters:
  bindingOutput - the WSDL4J BindingOutput
throws:
  javax.wsdl.WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPOperation
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapBody(javax.wsdl.extensions.soap.SOAPBody)



populateDefinition
protected void populateDefinition(Definition definition) throws WSDLException(Code)
Adds the WSDL SOAP namespace to the definition.



populatePort
protected void populatePort(Port port, Binding binding) throws WSDLException(Code)
Creates a SOAPAddress, and calls populateSoapAddress().
Parameters:
  port - the WSDL4J Port
throws:
  javax.wsdl.WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPAddress
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.populateSoapBody(javax.wsdl.extensions.soap.SOAPBody)



populateSoapAddress
protected void populateSoapAddress(SOAPAddress soapAddress) throws WSDLException(Code)
Called after the SOAPAddress has been created. Default implementation sets the location URI to the value set on this builder. Subclasses can override this behavior.
Parameters:
  soapAddress - the WSDL4J SOAPAddress
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPAddress.setLocationURI(String)
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.setLocationUri(String)



populateSoapBinding
protected void populateSoapBinding(SOAPBinding soapBinding) throws WSDLException(Code)
Called after the SOAPBinding has been created. Default implementation sets the binding style to "document", and set the transport URI to the value set on this builder. Subclasses can override this behavior.
Parameters:
  soapBinding - the WSDL4J SOAPBinding
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPBinding.setStyle(String)
See Also:   javax.wsdl.extensions.soap.SOAPBinding.setTransportURI(String)
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.setTransportUri(String)
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.DEFAULT_TRANSPORT_URI



populateSoapBody
protected void populateSoapBody(SOAPBody soapBody) throws WSDLException(Code)
Called after the SOAPBody has been created. Default implementation sets the use style to "literal". Subclasses can override this behavior.
Parameters:
  soapBody - the WSDL4J SOAPBody
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPBody.setUse(String)



populateSoapFault
protected void populateSoapFault(BindingFault bindingFault, SOAPFault soapFault) throws WSDLException(Code)
Called after the SOAPFault has been created. Default implementation sets the use style to "literal", and sets the name equal to the binding fault. Subclasses can override this behavior.
Parameters:
  bindingFault - the WSDL4J BindingFault
Parameters:
  soapFault - the WSDL4J SOAPFault
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPBody.setUse(String)



populateSoapOperation
protected void populateSoapOperation(SOAPOperation soapOperation) throws WSDLException(Code)
Called after the SOAPOperation has been created.

Default implementation set the SOAPAction uri to an empty string.
Parameters:
  soapOperation - the WSDL4J SOAPOperation
throws:
  WSDLException - in case of errors
See Also:   javax.wsdl.extensions.soap.SOAPOperation.setSoapActionURI(String)




setLocationUri
public void setLocationUri(String locationUri)(Code)
Sets the value used for the soap:address location attribute value.



setTransportUri
public void setTransportUri(String transportUri)(Code)
Sets the value used for the soap:binding transport attribute value.
See Also:   javax.wsdl.extensions.soap.SOAPBinding.setTransportURI(String)
See Also:   AbstractSoap11Wsdl4jDefinitionBuilder.DEFAULT_TRANSPORT_URI



Methods inherited from org.springframework.ws.wsdl.wsdl11.builder.AbstractBindingWsdl4jDefinitionBuilder
public void buildBindings(Definition definition) throws WSDLException(Code)(Java Doc)
public void buildServices(Definition definition) throws WSDLException(Code)(Java Doc)
protected void populateBinding(Binding binding, PortType portType) throws WSDLException(Code)(Java Doc)
protected void populateBindingFault(BindingFault bindingFault, Fault fault) throws WSDLException(Code)(Java Doc)
protected void populateBindingInput(BindingInput bindingInput, Input input) throws WSDLException(Code)(Java Doc)
protected void populateBindingOperation(BindingOperation bindingOperation, Operation operation) throws WSDLException(Code)(Java Doc)
protected void populateBindingOutput(BindingOutput bindingOutput, Output output) throws WSDLException(Code)(Java Doc)
protected void populatePort(Port port, Binding binding) throws WSDLException(Code)(Java Doc)
protected void populateService(Service service) throws WSDLException(Code)(Java Doc)

Fields inherited from org.springframework.ws.wsdl.wsdl11.builder.AbstractWsdl4jDefinitionBuilder
final protected Log logger(Code)(Java Doc)

Methods inherited from org.springframework.ws.wsdl.wsdl11.builder.AbstractWsdl4jDefinitionBuilder
final public void buildBindings() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildBindings(Definition definition) throws WSDLException(Code)(Java Doc)
final public void buildDefinition() throws WsdlDefinitionException(Code)(Java Doc)
final public void buildImports() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildImports(Definition definition) throws WSDLException(Code)(Java Doc)
final public void buildMessages() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildMessages(Definition definition) throws WSDLException(Code)(Java Doc)
final public void buildPortTypes() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildPortTypes(Definition definition) throws WSDLException(Code)(Java Doc)
final public void buildServices() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildServices(Definition definition) throws WSDLException(Code)(Java Doc)
final public void buildTypes() throws WsdlDefinitionException(Code)(Java Doc)
abstract protected void buildTypes(Definition definition) throws WSDLException(Code)(Java Doc)
protected ExtensibilityElement createExtension(Class parentType, QName elementType) throws WSDLException(Code)(Java Doc)
final public Wsdl11Definition getDefinition() throws WsdlDefinitionException(Code)(Java Doc)
protected void populateDefinition(Definition definition) throws WSDLException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.