com.tosan.tools.mask.starter.business.MiddleValueMasker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tosan-mask-spring-boot-starter Show documentation
Show all versions of tosan-mask-spring-boot-starter Show documentation
This project provides a spring boot starter that provides masking sensitive data in JSON string functionality.
The newest version!
package com.tosan.tools.mask.starter.business;
import com.tosan.tools.mask.starter.business.enumeration.MaskType;
/**
* @author Mostafa Abdollahi
* @since 11/19/2023
*/
public class MiddleValueMasker implements ValueMasker {
@Override
public MaskType getType() {
return MaskType.MIDDLE;
}
@Override
public String mask(String originalValue) {
return MaskUtil.middleMask(originalValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy