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

io.lsn.spring.auth.entity.ApiToken Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.lsn.spring.auth.entity;

import java.util.Date;

/**
 * @author Patryk Szlagowski 
 */
public interface ApiToken {

    Date getValidDate();
    void generate(User user) throws Exception;
    void calculateDate(Integer minutes);
    String getToken();
    Date getCreationTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy