com.bugsnag.logback.LogbackMetaDataKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bugsnag Show documentation
Show all versions of bugsnag Show documentation
Official Bugsnag notifier for Java applications
package com.bugsnag.logback;
/** Used to allow meta data to be added in the logback.xml file */
public class LogbackMetaDataKey {
private String name;
private String value;
/**
* @return The name of the key
*/
public String getName() {
return name;
}
/**
* @param name The name of the key
*/
public void setName(String name) {
this.name = name;
}
/**
* @return The value of the key
*/
public String getValue() {
return value;
}
/**
* @param value The value of the key
*/
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy