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

org.webpieces.plugins.json.JsonConfig Maven / Gradle / Ivy

Go to download

Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property

There is a newer version: 1.9.95
Show newest version
package org.webpieces.plugins.json;

import java.util.regex.Pattern;

public class JsonConfig {

	private Pattern filterPattern;
	private boolean isNotFoundFilter;

	public JsonConfig(Pattern pattern, boolean isNotFoundFilter) {
		this.filterPattern = pattern;
		this.isNotFoundFilter = isNotFoundFilter;
	}
	
	public Pattern getFilterPattern() {
		return filterPattern;
	}

	public boolean isNotFoundFilter() {
		return isNotFoundFilter;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy