MaX
MaX

Reputation: 1344

Request Accept media type in RESTlet 2

How can I identify the resource media type in RESTlet2, I tried following in my class extended from ServerResource


 @Get
 public Object onGET(){
  System.out.println("=================");
  System.out.println(this.getRequestEntity().getMediaType());
...

It prints a null when I do any request. I want to get the list of all Accept media types in header.

Upvotes: 0

Views: 1030

Answers (1)

MaX
MaX

Reputation: 1344

Well seems like I figured it out:


Request.getCurrent().getClientInfo().getAcceptedMediaTypes();

Returns list of all accepted media types.

Upvotes: 4

Related Questions