org.webpieces.webserver.impl.body.BodyParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-webserver Show documentation
Show all versions of http-webserver Show documentation
The full webpieces server AS A library
package org.webpieces.webserver.impl.body;
import org.webpieces.ctx.api.RouterRequest;
import org.webpieces.data.api.DataWrapper;
public interface BodyParser {
void parse(DataWrapper body, RouterRequest routerRequest);
}