forked from community/device-mgt-core
revert-70aa11f8
parent
52455b4c40
commit
5831d277da
@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* 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.policy.mgt.core.mgt.bean;
|
||||||
|
|
||||||
|
import org.wso2.carbon.device.mgt.common.policy.mgt.Policy;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class stores list of updated policies and list of changed devices for Policy Manager
|
||||||
|
*/
|
||||||
|
public class UpdatedPolicyDeviceListBean {
|
||||||
|
|
||||||
|
private List<Policy> updatedPolicies;
|
||||||
|
private List<Integer> updatedPolicyIds;
|
||||||
|
private List<String> changedDeviceTypes;
|
||||||
|
|
||||||
|
public UpdatedPolicyDeviceListBean(List<Policy> updatedPolicies, List<Integer> updatedPolicyIds, List<String>
|
||||||
|
deviceTypes) {
|
||||||
|
this.updatedPolicies = updatedPolicies;
|
||||||
|
this.updatedPolicyIds = updatedPolicyIds;
|
||||||
|
this.changedDeviceTypes = deviceTypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Policy> getUpdatedPolicies() {
|
||||||
|
return updatedPolicies;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUpdatedPolicies(List<Policy> updatedPolicies) {
|
||||||
|
this.updatedPolicies = updatedPolicies;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Integer> getUpdatedPolicyIds() {
|
||||||
|
return updatedPolicyIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUpdatedPolicyIds(List<Integer> updatedPolicyIds) {
|
||||||
|
this.updatedPolicyIds = updatedPolicyIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getChangedDeviceTypes() {
|
||||||
|
return changedDeviceTypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setChangedDeviceTypes(List<String> changedDeviceTypes) {
|
||||||
|
this.changedDeviceTypes = changedDeviceTypes;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue