io.quarkiverse.cxf.it.annotation.cxfendpoint.PathAnnotationHelloServiceWithBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cxf-integration-test-client-server Show documentation
Show all versions of quarkus-cxf-integration-test-client-server Show documentation
CXF client and server in the same application
package io.quarkiverse.cxf.it.annotation.cxfendpoint;
import jakarta.inject.Inject;
import jakarta.jws.WebService;
import io.quarkiverse.cxf.annotation.CXFEndpoint;
import io.quarkiverse.cxf.it.HelloService;
@CXFEndpoint("/path-annotation-with-bean")
@WebService(serviceName = "HelloService", targetNamespace = HelloService.NS)
public class PathAnnotationHelloServiceWithBean implements HelloService {
@Inject
HelloBean helloBean;
@Override
public String hello(String person) {
return helloBean.hello(person);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy