com.fasterxml.jackson.databind.util.Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
package com.fasterxml.jackson.databind.util;
import java.util.*;
/**
* Simple helper class used for decoupling instantiation of
* optionally loaded handlers, like deserializers and deserializers
* for libraries that are only present on some platforms.
*
* @author tatu
*
* @param Type of objects provided
*
* @since 2.2 Not really needed that much, will be eventually removed
*/
@Deprecated
public interface Provider
{
/**
* Method used to request provider to provide entries it has
*/
public Collection provide();
}