Package org.springframework.ws.soap.server.endpoint.annotation

Examples of org.springframework.ws.soap.server.endpoint.annotation.SoapHeader


*/
public class SoapHeaderElementMethodArgumentResolver implements MethodArgumentResolver {

    @Override
    public boolean supportsParameter(MethodParameter parameter) {
        SoapHeader soapHeader = parameter.getParameterAnnotation(SoapHeader.class);
        if (soapHeader == null) {
            return false;
        }

        Class<?> parameterType = parameter.getParameterType();
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.server.endpoint.annotation.SoapHeader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.