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

com.droidlogix.dbflare.hub.IRetrievalRestApiConfigurerAdapter Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.droidlogix.dbflare.hub;

import com.droidlogix.dbflare.a2e.DbFlareResultCache;
import com.droidlogix.dbflare.endpoint.core.IEndpointCore;
import com.fasterxml.jackson.databind.ObjectMapper;

import javax.persistence.EntityManager;

/**
 * @author John Pili
 * @since 07/10/2019
 */

public interface IRetrievalRestApiConfigurerAdapter
{
	/**
	 * Used for injecting EntityManager
	 * @param entityManager
	 */
	void setEntityManager(EntityManager entityManager);

	/**
	 * Used for injecting ObjectMapper
	 * @param objectMapper
	 */
	void setObjectMapper(ObjectMapper objectMapper);

	/**
	 * Used for injecting IEndpointCore
	 * @param endpointCore
	 */
	void setEndpointCore(IEndpointCore endpointCore);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy