mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix issue in operation log not loading
This commit is contained in:
commit
43e70bcb6c
@ -22,21 +22,10 @@ import java.util.List;
|
||||
|
||||
public class ConfigOperation extends Operation {
|
||||
|
||||
private final List<Property> properties;
|
||||
|
||||
public ConfigOperation() {
|
||||
properties = new ArrayList<>();
|
||||
setControl(Control.REPEAT);
|
||||
}
|
||||
|
||||
public List<Property> getConfigProperties() {
|
||||
return properties;
|
||||
}
|
||||
|
||||
public void addConfigProperty(String name, Object value, Class<?> type) {
|
||||
properties.add(new Property(name, value, type));
|
||||
}
|
||||
|
||||
public Type getType() {
|
||||
return Type.CONFIG;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user