All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sap.prd.cmintegration.cli.CommandDescriptor Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package sap.prd.cmintegration.cli;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import sap.prd.cmintegration.cli.BackendType;

/**
 * Contains the name of the command as it is used from the command line.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@interface CommandDescriptor {
    String name();
    BackendType type();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy