use of org.restlet.data.Encoding in project GeoGig by boundlessgeo.
the class FixedEncoder method encode.
@Override
public Representation encode(ClientInfo client, Representation representation) {
Representation result = representation;
Encoding bestEncoding = getBestEncoding(client);
if (bestEncoding != null && !Encoding.IDENTITY.equals(bestEncoding)) {
result = new FixedEncoderRepresentation(bestEncoding, representation);
}
return result;
}
Aggregations