All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netgrif.application.engine.petrinet.domain.dataset.logic.ChangedFieldContainer.groovy Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.4.0
Show newest version
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