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

se.gawell.fakeriak.servlet.InMemoryPostHandler Maven / Gradle / Ivy

The newest version!
package se.gawell.fakeriak.servlet;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import se.gawell.fakeriak.buckets.Buckets;
import se.gawell.fakeriak.index.Indexes;

public class InMemoryPostHandler extends InMemoryHandler implements PostHandler {

	public InMemoryPostHandler(Buckets buckets, Indexes indexes) {
		super(buckets, indexes);
	}

	@Override
	public void handle(HttpServletRequest request, HttpServletResponse response) throws IOException {
		addOrUpdate(request, response);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy