com.github.nagyesta.lowkeyvault.model.json.util.Base64ZipSecretDeserializer 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.model.json.util;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.nagyesta.lowkeyvault.model.common.backup.SecretBackupList;
public class Base64ZipSecretDeserializer extends AbstractBase64ZipDeserializer {
public Base64ZipSecretDeserializer() {
this(new Base64Deserializer(), new ObjectMapper());
}
protected Base64ZipSecretDeserializer(final Base64Deserializer base64Deserializer,
final ObjectMapper objectMapper) {
super(base64Deserializer, objectMapper);
}
@Override
protected Class getType() {
return SecretBackupList.class;
}
}