mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Remove properties from config operations
This commit is contained in:
parent
b04fe7b04d
commit
4049d1a2b4
@ -26,9 +26,7 @@ import java.util.List;
|
|||||||
|
|
||||||
public class ConfigOperation extends Operation {
|
public class ConfigOperation extends Operation {
|
||||||
|
|
||||||
private List<Property> properties;
|
/* public ConfigOperation() {
|
||||||
|
|
||||||
public ConfigOperation() {
|
|
||||||
properties = new ArrayList<Property>();
|
properties = new ArrayList<Property>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,7 +36,7 @@ public class ConfigOperation extends Operation {
|
|||||||
|
|
||||||
public void addConfigProperty(String name, Object value, Class<?> type) {
|
public void addConfigProperty(String name, Object value, Class<?> type) {
|
||||||
properties.add(new Property(name, value, type));
|
properties.add(new Property(name, value, type));
|
||||||
}
|
}*/
|
||||||
|
|
||||||
public static class Property implements Serializable {
|
public static class Property implements Serializable {
|
||||||
private String name;
|
private String name;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user