com.github.nagyesta.lowkeyvault.service.certificate.LifetimeActionPolicy 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 com.github.nagyesta.lowkeyvault.service.common.TimeAware;
import lombok.NonNull;
import java.time.OffsetDateTime;
import java.util.Map;
public interface LifetimeActionPolicy extends ReadOnlyLifetimeActionPolicy, TimeAware {
void setCreatedOn(@NonNull OffsetDateTime createdOn);
void setUpdatedOn(@NonNull OffsetDateTime updatedOn);
void setLifetimeActions(Map lifetimeActions);
}