api: Introduce name field which would hold the OTW api command name

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2012-12-26 15:56:14 -08:00
parent 7a7fe583e0
commit b8369b808e

View File

@ -27,6 +27,8 @@ import java.lang.annotation.Target;
public @interface APICommand {
Class<? extends BaseResponse> responseObject();
String name() default "";
String description() default "";
String usage() default "";