com.github.KishanSital.authenticator.services.PrintMessageService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authenticator Show documentation
Show all versions of authenticator Show documentation
Library built in java 11, which can be used to simulate a login page
The newest version!
package com.github.KishanSital.authenticator.services;
import com.github.KishanSital.authenticator.annotations.Service;
@Service
@FunctionalInterface
public interface PrintMessageService {
void print(String message);
String toString();
}