com.turbospaces.logging.DocumentProperties Maven / Gradle / Ivy
package com.turbospaces.logging;
import java.util.ArrayList;
import java.util.List;
import lombok.Getter;
public class DocumentProperties {
@Getter
private final List properties = new ArrayList<>();
public void addProperty(String name, String value) {
if (value.contains("%")) {
properties.add(new DocumentProperty(name, value));
}
}
}