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

com.internetitem.logback.elasticsearch.config.Property Maven / Gradle / Ivy

The newest version!
package com.internetitem.logback.elasticsearch.config;

public class Property {
	private String name;
	private String value;
	private boolean allowEmpty;

	public Property() {
	}

	public Property(String name, String value, boolean allowEmpty) {
		this.name = name;
		this.value = value;
		this.allowEmpty = allowEmpty;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public boolean isAllowEmpty() {
		return allowEmpty;
	}

	public void setAllowEmpty(boolean allowEmpty) {
		this.allowEmpty = allowEmpty;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy