Package jakarta.ws.rs

Annotation Type Consumes


  • @Inherited
    @Target({TYPE,METHOD})
    @Retention(RUNTIME)
    @Documented
    public @interface Consumes
    Defines the media types that the methods of a resource class or MessageBodyReader can accept. If not specified, a container will assume that any media type is acceptable. Method level annotations override a class level annotation. A container is responsible for ensuring that the method invoked is capable of consuming the media type of the HTTP request entity body. If no such method is available the container must respond with a HTTP "415 Unsupported Media Type" as specified by RFC 2616.
    Since:
    1.0
    Author:
    Paul Sandoz, Marc Hadley
    See Also:
    MessageBodyReader
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      String[] value
      A list of media types.
    • Element Detail

      • value

        String[] value
        A list of media types. Each entry may specify a single type or consist of a comma separated list of types, with any leading or trailing white-spaces in a single type entry being ignored. For example:
         { "image/jpeg, image/gif ", " image/png" }
         
        Use of the comma-separated form allows definition of a common string constant for use on multiple targets.
        Returns:
        media types to accept.
        Default:
        {"*/*"}