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

org.xyro.kumulus.graph.GraphNode.kt Maven / Gradle / Ivy

There is a newer version: 0.1.41
Show newest version
package org.xyro.kumulus.graph

import com.fasterxml.jackson.databind.node.ObjectNode
import org.xyro.kumulus.component.KumulusComponent

open class GraphNode(val component : KumulusComponent) {
    open fun toJson() : ObjectNode {
        return toJson(ComponentGraph.mapper.createObjectNode())
    }

    open protected fun toJson(nodeJson: ObjectNode) : ObjectNode {
        return nodeJson.apply {
            this.put("componentId", [email protected])
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy