Class Wsdl4jDefinition
java.lang.Object
org.springframework.ws.wsdl.wsdl11.Wsdl4jDefinition
- All Implemented Interfaces:
Wsdl11Definition
,WsdlDefinition
- Direct Known Subclasses:
ProviderBasedWsdl4jDefinition
Implementation of the
Wsdl11Definition
based on WSDL4J. A Definition
can be given as as
constructor argument, or set using a property.- Since:
- 1.0.0
- Author:
- Arjen Poutsma, Greg Turnquist
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new, emptyWsdl4jDefinition
.Wsdl4jDefinition
(javax.wsdl.Definition definition) Constructs a newWsdl4jDefinition
based on the givenDefinition
. -
Method Summary
Modifier and TypeMethodDescriptionjavax.wsdl.Definition
Returns the WSDL4JDefinition
.Returns theSource
of the definition.void
setDefinition
(javax.wsdl.Definition definition) Set the WSDL4JDefinition
.toString()
-
Constructor Details
-
Wsdl4jDefinition
public Wsdl4jDefinition()Constructs a new, emptyWsdl4jDefinition
.- See Also:
-
Wsdl4jDefinition
public Wsdl4jDefinition(javax.wsdl.Definition definition) Constructs a newWsdl4jDefinition
based on the givenDefinition
.- Parameters:
definition
- the WSDL4J definition
-
-
Method Details
-
getDefinition
public javax.wsdl.Definition getDefinition()Returns the WSDL4JDefinition
. -
setDefinition
public void setDefinition(javax.wsdl.Definition definition) Set the WSDL4JDefinition
. -
getSource
Description copied from interface:WsdlDefinition
Returns theSource
of the definition.- Specified by:
getSource
in interfaceWsdlDefinition
- Returns:
- the
Source
of this WSDL definition
-
toString
-