|
|
@ -19,21 +19,21 @@
|
|
|
|
package org.wso2.carbon.device.mgt.core.operation.mgt;
|
|
|
|
package org.wso2.carbon.device.mgt.core.operation.mgt;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
public class ProfileOperation extends ConfigOperation implements Serializable {
|
|
|
|
public class ProfileOperation extends ConfigOperation implements Serializable {
|
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = -3322674908775087365L;
|
|
|
|
private static final long serialVersionUID = -3322674908775087365L;
|
|
|
|
private List<Integer> correctiveActionIds;
|
|
|
|
private List<Integer> correctiveActionIds;
|
|
|
|
|
|
|
|
|
|
|
|
private List<Integer> reactiveActionIds;
|
|
|
|
private List<Integer> reactiveActionIds;
|
|
|
|
|
|
|
|
|
|
|
|
public Type getType() {
|
|
|
|
public ProfileOperation() {
|
|
|
|
return Type.PROFILE;
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Control getControl(){
|
|
|
|
public Type getType() {
|
|
|
|
return Control.REPEAT;
|
|
|
|
return Type.PROFILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public List<Integer> getCorrectiveActionIds() {
|
|
|
|
public List<Integer> getCorrectiveActionIds() {
|
|
|
@ -51,4 +51,5 @@ public class ProfileOperation extends ConfigOperation implements Serializable {
|
|
|
|
public void setReactiveActionIds(List<Integer> reactiveActionIds) {
|
|
|
|
public void setReactiveActionIds(List<Integer> reactiveActionIds) {
|
|
|
|
this.reactiveActionIds = reactiveActionIds;
|
|
|
|
this.reactiveActionIds = reactiveActionIds;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|