Package org.apache.cxf.annotations
Annotation Type WSDLDocumentation
@Documented
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Inherited
public @interface WSDLDocumentation
Adds documentation nodes to the generated WSDL
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classstatic enum
- 
Required Element SummaryRequired Elements
- 
Optional Element SummaryOptional ElementsModifier and TypeOptional ElementDescriptionClass<?>If Placement is FAULT_MESSAGE, PORT_FAULT, or BINDING_FAULT, return the fault class associated with this documentationThe place to put the documentation.
- 
Element Details- 
valueString valueThe documentation to add- Returns:
- documentation string
 
 
- 
- 
- 
placementWSDLDocumentation.Placement placementThe place to put the documentation. The Default depends on the location of the annotation. On the method in the SEI, it would be the portType/operation, on the SEI, it would be the portType, on the service impl, the service element.- Returns:
- location
 - Default:
- DEFAULT
 
- 
faultClassClass<?> faultClassIf Placement is FAULT_MESSAGE, PORT_FAULT, or BINDING_FAULT, return the fault class associated with this documentation- Returns:
- the fault class
 - Default:
- org.apache.cxf.annotations.WSDLDocumentation.DEFAULT.class
 
 
-