mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixing the serializing issue of device groups.
This commit is contained in:
parent
e1d2d8a73f
commit
0879a75f7b
@ -22,8 +22,12 @@ package org.wso2.carbon.policy.mgt.common;
|
|||||||
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModel;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
@ApiModel(value = "DeviceGroupWrapper", description = "This class carries information related to device groups expect users and devices.")
|
@ApiModel(value = "DeviceGroupWrapper", description = "This class carries information related to device groups expect users and devices.")
|
||||||
public class DeviceGroupWrapper {
|
public class DeviceGroupWrapper implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1998101722L;
|
||||||
|
|
||||||
@ApiModelProperty(name = "id", value = "Id of the group", required = true)
|
@ApiModelProperty(name = "id", value = "Id of the group", required = true)
|
||||||
private int id;
|
private int id;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user