org.khasanof.state.validator.StateValidator 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.validator;
import org.khasanof.state.StateAction;
/**
* @author Nurislom
* @see org.khasanof.state.validator
* @since 2/29/2024 9:28 PM
*/
public interface StateValidator {
/**
*
* @param stateAction
* @return
*/
boolean valid(StateAction stateAction);
}