com.github.nagyesta.lowkeyvault.service.certificate.CertificateLifetimeActionTrigger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowkey-vault-app Show documentation
Show all versions of lowkey-vault-app Show documentation
Assembled application of Lowkey Vault.
The newest version!
package com.github.nagyesta.lowkeyvault.service.certificate;
import lombok.NonNull;
import java.time.OffsetDateTime;
public record CertificateLifetimeActionTrigger(CertificateLifetimeActionTriggerType triggerType, int value) {
public CertificateLifetimeActionTrigger(
@NonNull final CertificateLifetimeActionTriggerType triggerType, final int value) {
this.triggerType = triggerType;
this.value = value;
}
public void validate(final int validityMonths) {
triggerType.validate(validityMonths, value);
}
public long triggersAfterDays(final OffsetDateTime validityStart, final OffsetDateTime expiry) {
return triggerType.triggersAfterDays(validityStart, expiry, value);
}
}