com.taotao.boot.sensitive.other1.SensitiveWrapper Maven / Gradle / Ivy
/*
* Copyright 2022 lzhpo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.sensitive.other1;
import com.taotao.boot.sensitive.other1.annocation.Sensitive;
/** @author lzhpo */
public class SensitiveWrapper {
public SensitiveWrapper(){}
public SensitiveWrapper(Object object, String fieldName, String fieldValue, char replacer) {
this.object = object;
this.fieldName = fieldName;
this.fieldValue = fieldValue;
this.replacer = replacer;
}
/**
* Current object.
*/
private Object object;
/**
* Current field name.
*/
private String fieldName;
/**
* Current field value.
*/
private String fieldValue;
/**
* {@link Sensitive#replacer()}
*/
private char replacer;
public Object getObject() {
return object;
}
public void setObject(Object object) {
this.object = object;
}
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public String getFieldValue() {
return fieldValue;
}
public void setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
}
public char getReplacer() {
return replacer;
}
public void setReplacer(char replacer) {
this.replacer = replacer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy