All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.cxf.it.annotation.cxfendpoint.PathAnnotationHelloServiceWithBean Maven / Gradle / Ivy

There is a newer version: 3.17.3
Show newest version
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