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

io.microservices.canvas.asciidoc.Canvas.kt Maven / Gradle / Ivy

There is a newer version: 0.12.0.RELEASE
Show newest version
package io.microservices.canvas.asciidoc

import io.microservices.canvas.model.Service


class Canvas(service : Service) {

    val name = service.name
    val description = service.description
    val capabilities = service.capabilities
    val apiCommands = service.api.operations.commands
    val apiQueries = service.api.operations.queries
    val apiEvents = service.api.events.publishedEvents

    val dependenciesAsynchronousOperations = service.dependencies.asynchronousOperations
    val dependenciesEvents = service.dependencies.events
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy