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

io.quarkiverse.cxf.it.security.policy.CustomizedEncryptSignPolicyHelloServiceImpl Maven / Gradle / Ivy

package io.quarkiverse.cxf.it.security.policy;

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

/**
 * A service implementation with an encryption policy set
 */
@WebService
public class CustomizedEncryptSignPolicyHelloServiceImpl implements CustomEncryptSignPolicyHelloService {

    @WebMethod
    @Override
    public String hello(String text) {
        return "Hello " + text + " from CustomEncryptSign!";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy