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

com.scarabsoft.jrest.interceptor.cookie.HttpCookieRequestInterceptor Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.scarabsoft.jrest.interceptor.cookie;

import com.scarabsoft.jrest.interceptor.RequestInterceptor;
import com.scarabsoft.jrest.RequestEntity;

public class HttpCookieRequestInterceptor implements RequestInterceptor {

    protected final String cookie;

    public HttpCookieRequestInterceptor(String cookie) {
        this.cookie = cookie;
    }

    @Override
    public void intercept(RequestEntity requestEntity) {
        requestEntity.addHeader("Cookie", cookie);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy