org.springframework.data.tarantool.config.BeanNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-tarantool Show documentation
Show all versions of spring-data-tarantool Show documentation
Spring Data module for Tarantool and Tarantool Cartridge for Tarantool versions 1.10+
package org.springframework.data.tarantool.config;
/**
* Contains default bean names for Tarantool beans. These are the names of the beans used by Spring Data Tarantool,
* unless an explicit id is given to the bean either in the xml configuration or the
* {@link AbstractTarantoolDataConfiguration java configuration}.
*
* @author Alexey Kuzin
*/
public class BeanNames {
/**
* The name for the bean that stores custom mapping between repositories and their backing tarantoolOperations.
*/
public static final String TARANTOOL_OPERATIONS_MAPPING = "tarantoolRepositoryOperationsMapping";
}