@Retention(value=RUNTIME) @Target(value=METHOD) @Documented public @interface WebMethod
This annotation is assumed to be implicit on every public methods
that start with 'do', like 'doFoo' or 'doBar', but you can use this annotation
on methods starting with do
to assign different names.
public abstract String[] name
Normally, for doXyz
method, the name is xyz
,
but you can use this to assign multiple names or non-default names.
Often useful for using names that contain non-identifier characters.
Copyright © 2004–2022. All rights reserved.