serviceName = "DoubleItService",
endpointInterface = "org.apache.cxf.policytest.doubleit.DoubleItPortTypeHeader",
wsdlLocation = "classpath:/wsdl_systest_wssec/DoubleIt.wsdl")
public static class DoubleItImplCXF3452 implements DoubleItPortTypeHeader {
public DoubleItResponse doubleIt(DoubleIt parameters, int header) throws DoubleItFault_Exception {
DoubleItResponse r = new DoubleItResponse();
r.setDoubledNumber(parameters.getNumberToDouble().shiftLeft(header));
return r;
}