![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.amc.application.deployment.ScopeLoggingConfigurationsItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anypoint-sdk Show documentation
Show all versions of anypoint-sdk Show documentation
Anypoint Software Development Toolkit
/*
* Copyright (c) 2023. Aeontronix Inc
*/
package com.aeontronix.anypointsdk.amc.application.deployment;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ScopeLoggingConfigurationsItem {
public ScopeLoggingConfigurationsItem() {
}
public ScopeLoggingConfigurationsItem(String scope, String logLevel) {
this.logLevel = logLevel;
this.scope = scope;
}
@JsonProperty("logLevel")
private String logLevel;
@JsonProperty("scope")
private String scope;
public String getLogLevel() {
return logLevel;
}
public String getScope() {
return scope;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy