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

ch.qos.logback.classic.model.LevelModel Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package ch.qos.logback.classic.model;

import ch.qos.logback.core.model.Model;

public class LevelModel extends Model {

	String value;

	public String getValue() {
		return value;
	}

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


	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy