use of org.restlet.resource.Representation in project GeoGig by boundlessgeo.
the class CommandResource method getRepresentation.
@Override
public Representation getRepresentation(Variant variant) {
Request request = getRequest();
Representation representation = runCommand(variant, request);
return representation;
}
Aggregations