|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface Get
Annotation for methods that retrieve a resource representation. Its semantics
is equivalent to an HTTP GET method.
Example:
@Get public MyBean represent(); @Get("json") public String toJson(); @Get("xml|html") public Representation represent();
Optional Element Summary | |
---|---|
String |
value
Specifies the media type extension of the response entity. |
public abstract String value
MetadataService
. For a list of all
predefined extensions, please check
MetadataService.addCommonExtensions()
. New extension can be
registered using
MetadataService.addExtension(String, org.restlet.data.Metadata)
method.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |