Spring Web Services Framework

org.springframework.ws.server.endpoint.annotation
Annotation Type PayloadRoot


@Target(value=METHOD)
@Retention(value=RUNTIME)
@Documented
public @interface PayloadRoot

Marks an endpoint method as the handler for an incoming request. The annotation values signify the the request payload root element that is handled by the method.

Since:
1.0.0
Author:
Arjen Poutsma
See Also:
PayloadRootAnnotationMethodEndpointMapping

Required Element Summary
 String localPart
          Signifies the local part of the payload root element handled by the annotated method.
 
Optional Element Summary
 String namespace
          Signifies the namespace of the payload root element handled by the annotated method.
 

Element Detail

localPart

public abstract String localPart
Signifies the local part of the payload root element handled by the annotated method.

See Also:
namespace()

namespace

public abstract String namespace
Signifies the namespace of the payload root element handled by the annotated method.

See Also:
localPart()
Default:
""

Spring Web Services Framework

Copyright © 2005-2013 The Spring Web Services Framework. All Rights Reserved.