View Javadoc
1   package de.dlr.shepard.auth.security;
2   
3   import jakarta.enterprise.context.ApplicationScoped;
4   
5   @ApplicationScoped
6   public class UserLastSeenCache extends LastSeenCache {
7   
8     private static final int THIRTY_MINUTES_IN_MILLIS = 30 * 60 * 1000;
9   
10    public UserLastSeenCache() {
11      super(THIRTY_MINUTES_IN_MILLIS);
12    }
13  }