|
|
@ -17,6 +17,8 @@
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
package org.wso2.carbon.mdm.services.android.bean.wrapper;
|
|
|
|
package org.wso2.carbon.mdm.services.android.bean.wrapper;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import org.wso2.carbon.mdm.services.android.bean.BlacklistApplications;
|
|
|
|
import org.wso2.carbon.mdm.services.android.bean.BlacklistApplications;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
@ -24,9 +26,13 @@ import java.util.List;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* This class is used to wrap the BlacklistApplications bean with devices.
|
|
|
|
* This class is used to wrap the BlacklistApplications bean with devices.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiModel(value = "BlacklistApplicationsBeanWrapper",
|
|
|
|
|
|
|
|
description = "Mapping between blacklist application and the device ids.")
|
|
|
|
public class BlacklistApplicationsBeanWrapper {
|
|
|
|
public class BlacklistApplicationsBeanWrapper {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "operation", value = "Blacklist applications information", required = true)
|
|
|
|
private BlacklistApplications operation;
|
|
|
|
private BlacklistApplications operation;
|
|
|
|
|
|
|
|
@ApiModelProperty(name = "deviceIDs", value = "List of device Ids", required = true)
|
|
|
|
private List<String> deviceIDs;
|
|
|
|
private List<String> deviceIDs;
|
|
|
|
|
|
|
|
|
|
|
|
public BlacklistApplications getOperation() {
|
|
|
|
public BlacklistApplications getOperation() {
|
|
|
|