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

io.github.opensabre.boot.sensitive.rest.strategy.SensitiveStrategy Maven / Gradle / Ivy

The newest version!
package io.github.opensabre.boot.sensitive.rest.strategy;

import io.github.opensabre.boot.sensitive.rule.SensitiveRule;

/**
 * 脱敏策略接口
 */
public interface SensitiveStrategy {
    /**
     * 脱敏处理
     *
     * @param type      类型
     * @param originStr 原始字符串
     * @return 脱敏后的字符
     */
    String desensitizing(SensitiveRule type, String originStr);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy