@Documented @Retention(value=RUNTIME) public @interface URLPattern
WebApp classes and web methods.
 
 The default URL pattern for a WebApp class is the fully qualified class name using '/' as separator.
 The default URL pattern for a web method is the method name. 
 
Syntax for URL patterns:
| pattern | ::= | choice ( | choice )* | 
| choice | ::= | ( part ( / part )* )? | 
| part | ::= | const | $param | * | ** | 
Each const and param is a nonempty part string that does not contain /, |, $, *. The $param pattern is an alternative to query string arguments (the two forms can be combined for parameters with different names). The * pattern matches any nonempty part string. The ** pattern matches any pattern suffix and can only be used as the last part of a choice. Web app URL patterns cannot use * and **.
Prioritypublic abstract String value
Copyright © 2008-2012 Anders Møller & Mathias Schwarz.