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

io.quarkiverse.cxf.it.ws.addressing.server.decoupled.WsAddressingImpl Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
package io.quarkiverse.cxf.it.ws.addressing.server.decoupled;

import jakarta.jws.WebMethod;
import jakarta.jws.WebService;

@WebService(name = "WsAddressingService", serviceName = "WsAddressingService", endpointInterface = "io.quarkiverse.cxf.it.ws.addressing.server.decoupled.WsAddressingService")
public class WsAddressingImpl implements WsAddressingService {

    @WebMethod
    @Override
    public String echo(String message) {
        return message + " from WsAddressingService";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy