org.apache.http.protocol.HttpContext.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.http.protocol.HttpContext.java

Source

package org.apache.http.protocol;

public interface HttpContext {
    public static final String RESERVED_PREFIX = "http.";

    Object getAttribute(String str);

    Object removeAttribute(String str);

    void setAttribute(String str, Object obj);
}