com.netgrif.application.engine.petrinet.domain.dataset.logic.ChangedFieldContainer.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.petrinet.domain.dataset.logic
import com.fasterxml.jackson.annotation.JsonInclude
@JsonInclude(JsonInclude.Include.NON_NULL)
class ChangedFieldContainer {
@JsonInclude(JsonInclude.Include.NON_NULL)
private Map> changedFields
ChangedFieldContainer() {
changedFields = new HashMap<>()
}
void putAll(Map changed) {
changed.each { key, field -> changedFields.put(field.id, field.attributes) }
}
Map> getChangedFields() {
return changedFields
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy