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

com.iprogrammerr.bright.server.request.Request Maven / Gradle / Ivy

package com.iprogrammerr.bright.server.request;

import java.util.List;

import com.iprogrammerr.bright.server.header.Header;

public interface Request {

    String url();

    String method();

    List
headers(); boolean hasHeader(String key); String header(String key) throws Exception; byte[] body(); void removeContextPath(String contextPath); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy