com.github.robtimus.obfuscation.jackson.databind.ObfuscatedBeanSerializerModifier Maven / Gradle / Ivy
/*
* ObfuscatedBeanSerializerModifier.java
* Copyright 2020 Rob Spoor
*
* 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.github.robtimus.obfuscation.jackson.databind;
import java.util.List;
import java.util.ListIterator;
import com.fasterxml.jackson.databind.BeanDescription;
import com.fasterxml.jackson.databind.SerializationConfig;
import com.fasterxml.jackson.databind.ser.BeanPropertyWriter;
import com.fasterxml.jackson.databind.ser.BeanSerializerModifier;
import com.github.robtimus.obfuscation.Obfuscated;
final class ObfuscatedBeanSerializerModifier extends BeanSerializerModifier {
private static final long serialVersionUID = 1L;
@Override
public List changeProperties(SerializationConfig config, BeanDescription beanDesc, List beanProperties) {
List properties = super.changeProperties(config, beanDesc, beanProperties);
for (ListIterator i = properties.listIterator(); i.hasNext(); ) {
BeanPropertyWriter property = i.next();
if (property.getType().getRawClass() == Obfuscated.class) {
property = new ObfuscatedBeanPropertyWriter(property);
i.set(property);
}
}
return properties;
}
}