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

com.webcohesion.enunciate.metadata.rs.ResourceLabel Maven / Gradle / Ivy

There is a newer version: 2.18.1
Show newest version
package com.webcohesion.enunciate.metadata.rs;

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

/**
 * @author MnlK
 */
@Retention( RetentionPolicy.RUNTIME )
@Target( { ElementType.METHOD, ElementType.TYPE } )
public @interface ResourceLabel {

    /**
     * The label
     *
     * @return The label
     */
    String value() default "##default";

    /**
     * A alphanumeric sort key for ordering resources when displayed in a list.
     *
     * @return A alphanumeric sort key for ordering resources when displayed in a list.
     */
    String sortKey() default "##default";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy