com.axway.apim.cli.CLIServiceMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apimcli-tool Show documentation
Show all versions of apimcli-tool Show documentation
CLI for the Axway API-Manager
The newest version!
package com.axway.apim.cli;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface CLIServiceMethod {
/**
* @return the description of the method
*/
String description() default "";
/**
* @return the name of the method if you don't want to use the original method name
*/
String name() default "";
}