forked from community/device-mgt-core
parent
b5ed177338
commit
c542c3efe9
@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. 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 org.wso2.carbon.device.mgt.core.config.analytics;
|
||||
|
||||
import org.wso2.carbon.device.mgt.core.config.analytics.operation.OperationResponseConfigurations;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
|
||||
/**
|
||||
* This class represents the information related to Device Operation Analytics configuration.
|
||||
*/
|
||||
@XmlRootElement(name = "OperationAnalyticsConfiguration")
|
||||
public class OperationAnalyticsConfiguration {
|
||||
|
||||
private boolean isPublishDeviceInfoResponseEnabled;
|
||||
private boolean isPublishLocationResponseEnabled;
|
||||
private OperationResponseConfigurations operationResponseConfigurations;
|
||||
|
||||
public boolean isPublishDeviceInfoResponseEnabled() {
|
||||
return isPublishDeviceInfoResponseEnabled;
|
||||
}
|
||||
|
||||
@XmlElement(name = "PublishDeviceInfoResponse", required = true)
|
||||
public void setPublishDeviceInfoResponseEnabled(boolean publishDeviceInfoResponseEnabled) {
|
||||
this.isPublishDeviceInfoResponseEnabled = publishDeviceInfoResponseEnabled;
|
||||
}
|
||||
|
||||
public boolean isPublishLocationResponseEnabled() {
|
||||
return isPublishLocationResponseEnabled;
|
||||
}
|
||||
|
||||
@XmlElement(name = "PublishLocationResponse", required = true)
|
||||
public void setPublishLocationResponseEnabled(boolean publishLocationResponseEnabled) {
|
||||
this.isPublishLocationResponseEnabled = publishLocationResponseEnabled;
|
||||
}
|
||||
|
||||
public OperationResponseConfigurations getOperationResponseConfigurations() {
|
||||
return operationResponseConfigurations;
|
||||
}
|
||||
|
||||
@XmlElement(name = "PublishOperationResponse", required = true)
|
||||
public void setOperationResponseConfigurations(
|
||||
OperationResponseConfigurations operationResponseConfigurations) {
|
||||
this.operationResponseConfigurations = operationResponseConfigurations;
|
||||
}
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. 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 org.wso2.carbon.device.mgt.core.config.analytics.operation;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* This class represents the information related to Operation response configuration.
|
||||
*/
|
||||
@XmlRootElement(name = "PublishOperationResponse")
|
||||
public class OperationResponseConfigurations {
|
||||
|
||||
private boolean enabled;
|
||||
private List<String> operations;
|
||||
|
||||
public boolean isEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
@XmlElement(name = "Enabled", required = true)
|
||||
public void setEnabled(boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public List<String> getOperations() {
|
||||
return operations;
|
||||
}
|
||||
|
||||
@XmlElementWrapper(name = "Operations", required = true)
|
||||
@XmlElement(name = "Operation", required = true)
|
||||
public void setOperations(List<String> operations) {
|
||||
this.operations = operations;
|
||||
}
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. 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 org.wso2.carbon.device.mgt.core.config.geo.location;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
|
||||
/**
|
||||
* This class represents the information related to Device Operation Analytics configuration.
|
||||
*/
|
||||
@XmlRootElement(name = "OperationAnalyticsConfiguration")
|
||||
public class OperationAnalyticsConfiguration {
|
||||
|
||||
private boolean publishDeviceInfoResponse;
|
||||
private boolean publishLocationResponse;
|
||||
|
||||
public boolean getPublishDeviceInfoResponse() {
|
||||
return publishDeviceInfoResponse;
|
||||
}
|
||||
|
||||
@XmlElement(name = "PublishDeviceInfoResponse", required = true)
|
||||
public void setPublishDeviceInfoResponse(boolean publishDeviceInfoResponse) {
|
||||
this.publishDeviceInfoResponse = publishDeviceInfoResponse;
|
||||
}
|
||||
|
||||
public boolean getPublishLocationResponse() {
|
||||
return publishLocationResponse;
|
||||
}
|
||||
|
||||
@XmlElement(name = "PublishLocationResponse", required = true)
|
||||
public void setPublishLocationResponse(boolean publishLocationResponse) {
|
||||
this.publishLocationResponse = publishLocationResponse;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue