forked from community/device-mgt-core
Add necessary improvements and configs for grafana version 10.3.3 (#396)
Co-authored-by: Sasini_Sandamali <sasini@entgra.io> Reviewed-on: community/device-mgt-core#396 Co-authored-by: Sasini Sandamali <sasini@entgra.io> Co-committed-by: Sasini Sandamali <sasini@entgra.io>apps-11010^2
parent
a7a29891da
commit
01d76c6dbd
@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (c) 2018 - 2024, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||
*
|
||||
* Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
|
||||
* Version 2.0 (the "License"); you may not use this file except
|
||||
* in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.device.mgt.core.analytics.mgt.grafana.proxy.core.config.xml.bean;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
|
||||
@XmlRootElement(name = "ValidationConfig")
|
||||
public class ValidationConfig {
|
||||
private boolean dsQueryValidation;
|
||||
private boolean dashboardIntegration;
|
||||
|
||||
@XmlElement(name = "DSQueryValidation")
|
||||
public boolean getDSQueryValidation() {
|
||||
return dsQueryValidation;
|
||||
}
|
||||
|
||||
public void setDSQueryValidation(boolean dsQueryValidation) {
|
||||
this.dsQueryValidation = dsQueryValidation;
|
||||
}
|
||||
|
||||
@XmlElement(name = "DashboardIntegration")
|
||||
public boolean getDashboardIntegration() {
|
||||
return dashboardIntegration;
|
||||
}
|
||||
|
||||
public void setDashboardIntegration(boolean dashboardIntegration) {
|
||||
this.dashboardIntegration = dashboardIntegration;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue