UserGracePeriod.java

package de.dlr.shepard.security;

import jakarta.enterprise.context.ApplicationScoped;

@ApplicationScoped
public class UserGracePeriod extends GracePeriodUtil {

  private static final int THIRTY_MINUTES_IN_MILLIS = 30 * 60 * 1000;

  public UserGracePeriod() {
    super(THIRTY_MINUTES_IN_MILLIS);
  }
}