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

io.robe.common.service.RobeService Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.common.service;

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

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
/**
 * An annotation for describing robe services.
 */
public @interface RobeService {
    /**
     * Defines group for the service. All services with the same group will be matched with
     * a menu item if available.
     * @return name of the group.
     */
    String group() default "";

    /**
     * A brief description about the service.
     * @return description of the service.
     */
    String description() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy