All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.mruoc.rest.client.header.ApplicationJsonHeaders Maven / Gradle / Ivy

package uk.co.mruoc.rest.client.header;

import static org.apache.http.entity.ContentType.APPLICATION_JSON;

public class ApplicationJsonHeaders extends DefaultHeaders {

    public ApplicationJsonHeaders() {
        set(new ContentTypeHeader(APPLICATION_JSON.getMimeType()));
        set(new AcceptHeader(APPLICATION_JSON.getMimeType()));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy