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