org.khasanof.state.configurer.StateConfigurerReaderSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-state Show documentation
Show all versions of fluent-state Show documentation
Fluent - Easy Telegram Bots with Spring
The newest version!
package org.khasanof.state.configurer;
/**
* @author Nurislom
* @see org.khasanof.state.configurer
* @since 3/2/2024 11:26 AM
*/
public interface StateConfigurerReaderSingleton {
/**
*
* @return {@link StateConfigReader} bean
*/
StateConfigReader getConfigReader();
/**
*
* @param reader
*/
void setConfigReader(StateConfigReader reader);
}