All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.zhyshko.core.service.SessionService Maven / Gradle / Ivy

The newest version!
package io.github.zhyshko.core.service;

public interface SessionService {

    Object get(Long userId, String key);

    void set(Long userId, String key, Object value);

    void delete(Long userId, String key);

    void invalidate(Long userId);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy