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

io.takari.swagger.annotations.Description Maven / Gradle / Ivy

The newest version!
package io.takari.swagger.annotations;

import java.lang.annotation.*;

/**
 * Document a class, method or parameter
 */
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Description {
  /**
   * @return the description of the element
   */
  String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy