11

I want to have a box around a couple of participants showing that they are part of an entity. How can you do this in PlantUML?

user2748107
  • 240
  • 3
  • 12

1 Answers1

21

You can "box" participants as shown on plantuml site (extract below)

@startuml

box "Internal Service" #LightBlue
participant Bob
participant Alice
end box
participant Other

Bob -> Alice : hello
Alice -> Other : hello

@enduml

This produces: enter image description here

Jean-Marc Volle
  • 3,113
  • 1
  • 16
  • 20