forked from community/device-mgt-plugins
parent
21967c1865
commit
c3a92664fc
@ -0,0 +1,22 @@
|
||||
package org.wso2.carbon.mdm.services.android.bean;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ApiModel(value = "NotifierFrequency",
|
||||
description = "This class represents notification frequency configuration.")
|
||||
public class NotifierFrequency extends AndroidOperation implements Serializable {
|
||||
|
||||
@ApiModelProperty(name = "value", value = "Notification polling frequency", required = true)
|
||||
private int value;
|
||||
|
||||
public int getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package org.wso2.carbon.mdm.services.android.bean;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ApiModel(value = "NotifierFrequency",
|
||||
description = "This class represents notification frequency configuration.")
|
||||
public class NotifierFrequency extends AndroidOperation implements Serializable {
|
||||
|
||||
@ApiModelProperty(name = "value", value = "Notification polling frequency", required = true)
|
||||
private int value;
|
||||
|
||||
public int getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue