package com.iailab.framework.desensitize.core.slider.handler; import com.iailab.framework.desensitize.core.slider.annotation.PasswordDesensitize; /** * {@link PasswordDesensitize} çš„ç 脱æ•å¤„ç†å™¨ * * @author gaibu */ public class PasswordDesensitization extends AbstractSliderDesensitizationHandler<PasswordDesensitize> { @Override Integer getPrefixKeep(PasswordDesensitize annotation) { return annotation.prefixKeep(); } @Override Integer getSuffixKeep(PasswordDesensitize annotation) { return annotation.suffixKeep(); } @Override String getReplacer(PasswordDesensitize annotation) { return annotation.replacer(); } }