blob: 075748cc942ba1e00d75dd68da8f54a1ad03e57e [file] [log] [blame]
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 <T> Type of objects provided
*
* @since 2.2 Not really needed that much, will be eventually removed
*/
@Deprecated
public interface Provider<T>
{
/**
* Method used to request provider to provide entries it has
*/
public Collection<T> provide();
}