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

io.quarkiverse.cxf.it.ws.addressing.server.anonymous.AddressingAnonymousImpl Maven / Gradle / Ivy

package io.quarkiverse.cxf.it.ws.addressing.server.anonymous;

import jakarta.jws.WebParam;
import jakarta.jws.WebService;
import jakarta.xml.ws.BindingType;
import jakarta.xml.ws.soap.Addressing;
import jakarta.xml.ws.soap.SOAPBinding;

@WebService(serviceName = "AddressingAnonymousImpl")
@BindingType(SOAPBinding.SOAP12HTTP_BINDING)
@Addressing(required = true)
public class AddressingAnonymousImpl {

    public String reply(@WebParam(name = "text") String text) {
        return "Hello " + text;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy