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

org.apache.xmlrpc.server.ServerHttpConnection Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package org.apache.xmlrpc.server;

import org.apache.xmlrpc.common.ServerStreamConnection;


/** Interface of a {@link ServerStreamConnection} for HTTP
 * response transport.
 */
public interface ServerHttpConnection extends ServerStreamConnection {
    /** Sets a response header.
     */
    void setResponseHeader(String pKey, String pValue);
    /** Sets the content length.
     */
    void setContentLength(int pContentLength);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy