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

it.espr.mvc.cache.Cache Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package it.espr.mvc.cache;

import it.espr.mvc.route.Route;

public interface Cache {

	void put(String requestType, String uri, Route route, Object data);

	Object get(String requestType, String uri, Route route);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy