Create SessionsModelInterface.java

This commit is contained in:
Ludy87 2025-03-27 13:13:57 +01:00
parent b080704bcd
commit 5011b5c8ad
No known key found for this signature in database
GPG Key ID: 92696155E0220F94

View File

@ -0,0 +1,14 @@
package stirling.software.SPDF.config.interfaces;
import java.util.Date;
public interface SessionsModelInterface {
String getSessionId();
String getPrincipalName();
Date getLastRequest();
boolean isExpired();
}