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

com.turbospaces.logging.DocumentProperties Maven / Gradle / Ivy

There is a newer version: 2.0.33
Show newest version
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));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy