Spring Web Services Framework

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


@Documented
@Retention(value=RUNTIME)
@Target(value={PACKAGE,TYPE,METHOD})
public @interface Namespace

Sets up a namespace to be used in an @Endpoint method, class, or package.

Typically used in combination with @XPathParam, or @PayloadRoot.

Since:
2.0
Author:
Arjen Poutsma
See Also:
XPathParam, PayloadRoot

Required Element Summary
 String uri
          Signifies the URI of the namespace.
 
Optional Element Summary
 String prefix
          Signifies the prefix of the namespace.
 

Element Detail

uri

public abstract String uri
Signifies the URI of the namespace.

See Also:
prefix()

prefix

public abstract String prefix
Signifies the prefix of the namespace.

See Also:
uri()
Default:
""

Spring Web Services Framework

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