Red Hat Training
A Red Hat training course is available for Red Hat Fuse
24.3.4.5. @WSDLDocumentationCollection を使用する
@WebService
@WSDLDocumentationCollection(
{
@WSDLDocumentation("A very simple example of an SEI"),
@WSDLDocumentation(value = "My top level documentation",
placement = WSDLDocumentation.Placement.TOP),
@WSDLDocumentation(value = "Binding documentation",
placement = WSDLDocumentation.Placement.BINDING)
}
)
public interface HelloWorld {
@WSDLDocumentation("A traditional form of Geeky greeting")
String sayHi(@WebParam(name = "text") String text);
}