io.quarkiverse.cxf.it.annotation.cxfendpoint.HelloBean 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.enterprise.context.ApplicationScoped;
@ApplicationScoped
public class HelloBean {
public String hello(String person) {
return "Hello " + person + " from HelloBean!";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy