use of com.sun.research.ws.wadl.Representation in project jersey by jersey.
the class WadlGeneratorImpl method createResponseRepresentation.
public Representation createResponseRepresentation(org.glassfish.jersey.server.model.Resource r, ResourceMethod m, MediaType mediaType) {
Representation wadlRepresentation = new Representation();
wadlRepresentation.setMediaType(mediaType.toString());
return wadlRepresentation;
}
Aggregations