pull/398/head
tcdlpds 6 months ago
commit 3106b23d31

@ -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;
}

@ -68,9 +68,7 @@ public class MDMAndroidOperationUtil {
WebApplication webApplication = new WebApplication();
webApplication.setUrl(application.getLocation());
webApplication.setName(application.getName());
// webApplication.setType(application.getType().toString());
// Hard-corded "type" to "webapp". Some agent versions accept only "webapp" as the type.
webApplication.setType("webapp");
webApplication.setType(application.getType().toString());
webApplication.setProperties(application.getProperties());
operation.setPayLoad(webApplication.toJSON());
break;

Loading…
Cancel
Save