All Downloads are FREE. Search and download functionalities are using the official Maven repository.

delombok.io.github.qsy7.encryption.service.FieldEncryptionService Maven / Gradle / Ivy

The newest version!
package io.github.qsy7.encryption.service;

import io.github.qsy7.encryption.enumeration.EncryptionType;
import java.lang.reflect.Field;

public interface FieldEncryptionService {
  void encrypt(Object e, Field field, EncryptionType encryptionType);

  void decrypt(Object e, Field field, EncryptionType encryptionType) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy