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

Examples of org.springframework.ws.soap.addressing.server.annotation.Address


     */
    @Override
    protected URI getEndpointAddress(Object endpoint) {
        MethodEndpoint methodEndpoint = (MethodEndpoint) endpoint;
        Class<?> endpointClass = methodEndpoint.getMethod().getDeclaringClass();
        Address address = AnnotationUtils.findAnnotation(endpointClass, Address.class);
        if (address != null && StringUtils.hasText(address.value())) {
            return getActionUri(address.value(), methodEndpoint);
        }
        else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.addressing.server.annotation.Address

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.