This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title Spring PetClinic - System Context | |
actor ClinicEmployee | |
[Spring PetClinic] <<Software System>> as SpringPetClinic | |
ClinicEmployee ..> SpringPetClinic : Uses | |
@enduml | |
@startuml | |
title Spring PetClinic - Containers | |
actor ClinicEmployee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title Spring PetClinic - System Context | |
caption The System Context diagram for the Spring PetClinic system. | |
actor "Clinic Employee" <<Person>> as 2 | |
component "Spring PetClinic" <<Software System>> as 1 | |
2 ..> 1 : Uses | |
@enduml | |
@startuml | |
title Spring PetClinic - Containers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.structurizr.example; | |
import com.structurizr.Workspace; | |
import com.structurizr.api.StructurizrClient; | |
import com.structurizr.model.*; | |
import com.structurizr.view.ContainerView; | |
import com.structurizr.view.PaperSize; | |
import com.structurizr.view.SystemContextView; | |
import com.structurizr.view.ViewSet; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "System Context", | |
"scope": "Software System", | |
"description": "A short description of this diagram.", | |
"size": "A5_Landscape", | |
"elements": [ | |
{ | |
"type": "Person", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "System Context", | |
"scope": "My Software System", | |
"description": "The system context diagram for my software system.", | |
"size": "A6_Portrait", | |
"elements": [ | |
{ | |
"type": "Person", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"><head> | |
<style> | |
body { | |
font-size: 14px; | |
font-family: "Open Sans", sans-serif; | |
padding: 0; | |
margin: 0; | |
} | |
#controls { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"><head> | |
<style> | |
body { | |
font-size: 14px; | |
font-family: "Open Sans", sans-serif; | |
padding: 0; | |
margin: 0; | |
} | |
h1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Class diagram Internet Banking System - System Context | |
digraph G { | |
graph [labelloc=top,label="Internet Banking System - System Context",fontname="Verdana",fontsize=12]; | |
edge [fontname="Verdana",fontsize=9,labelfontname="Verdana",labelfontsize=9]; | |
node [fontname="Verdana",fontsize=9,shape=record]; | |
c0 [label="Personal Banking Customer"] | |
c1 [label="Internet Banking System"] | |
c2 [label="Mainframe Banking System"] | |
c3 [label="E-mail System"] | |
// null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 25441, | |
"name": "Getting Started", | |
"description": "This is a model of my software system.", | |
"model": { | |
"people": [ | |
{ | |
"tags": "Element,Person", | |
"id": "1", | |
"name": "User", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
namespace Structurizr.Examples | |
{ | |
class GettingStarted | |
{ | |
static void Main() |