
io.quarkiverse.cxf.it.security.policy.EncryptSignPolicyHelloService Maven / Gradle / Ivy
package io.quarkiverse.cxf.it.security.policy;
import jakarta.jws.WebMethod;
import jakarta.jws.WebService;
import org.apache.cxf.annotations.Policy;
/**
* A service with a WS-SecurityPolicy attached
*/
// tag::quarkus-cxf-rt-ws-security.adoc[]
@WebService(serviceName = "EncryptSignPolicyHelloService")
@Policy(placement = Policy.Placement.BINDING, uri = "encrypt-sign-policy.xml")
public interface EncryptSignPolicyHelloService extends AbstractHelloService {
// end::quarkus-cxf-rt-ws-security.adoc[]
@WebMethod
@Override
String hello(String text);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy