javax.ws.rs
Annotation Type Produces


@Inherited
@Target(value={TYPE,METHOD})
@Retention(value=RUNTIME)
public @interface Produces

Defines the media type(s) that the methods of a resource class or MessageBodyWriter can produce. If not specified then a container will assume that any type can be produced. Method level annotations override a class level annotation. A container is responsible for ensuring that the method invoked is capable of producing one of the media types requested in the HTTP request. If no such method is available the container must respond with a HTTP "406 Not Acceptable" as specified by RFC 2616.

A method for which there is a single-valued Produces is not required to set the media type of representations that it produces: the container will use the value of the Produces when sending a response.

See Also:
MessageBodyWriter

Optional Element Summary
 java.lang.String[] value
          A list of media types.
 

value

public abstract java.lang.String[] value
A list of media types. Each entry may specify a single type or consist of a comma separated list of types. E.g. {"image/jpeg,image/gif", "image/png"}. Use of the comma-separated form allows definition of a common string constant for use on multiple targets.

Default:
"*/*"


Submit a bug or feature

Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.

Generated on 10-February-2011 12:41

Scripting on this page tracks web page traffic, but does not change the content in any way.