blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 6 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 61 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 07:53:38 | revision_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | committer_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | github_id int64 206k 631M ⌀ | star_events_count int64 0 108k | fork_events_count int64 0 34.4k | gha_license_id stringclasses 13 values | gha_event_created_at timestamp[us]date 2012-08-01 17:54:24 2023-09-14 21:57:05 ⌀ | gha_created_at timestamp[us]date 2009-05-21 02:09:00 2023-04-21 10:18:22 ⌀ | gha_language stringclasses 79 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 8 1.29M | extension stringclasses 17 values | code stringlengths 8 1.29M | non_uml bool 1 class | uml bool 1 class | has_non_ascii bool 2 classes | has_non_latin bool 1 class | uml_subtype stringclasses 10 values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4c1790d8bf943512398f5c312705c64751b2ae42 | 0884a8cda67e9dfbb70f6119fe6c8d6e7f56421a | /oop/slides/relation/source/dependency.puml | c2e65fe622562f7c75780c7c52b1b79be41094f7 | [] | no_license | AltmanEA/AltmanEA.github.io | 3ca936e1d934a077681d7b86a4106b750b144b6a | a4d72ca6c4169c27a534647c1d0b86107526d45e | refs/heads/master | 2023-08-31T10:45:16.476806 | 2023-08-31T06:14:13 | 2023-08-31T06:14:13 | 50,760,757 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 109 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam MinClassWidth 150
class A
class B
A <.. B
@enduml | false | true | false | false | class |
111943d495120b7828eb02bac160d6ba1790846e | cddb2d8d10bea18f8aee4f1a972af7286643938e | /app/src/main/java/com/mii/android/ad/adTypes.puml | 6a1341402ddf45116240823573afd9159be4ea93 | [] | no_license | evelynhu/FanTracker | 5f1b85c8953d2bf70f666f6f50d4285d09a8ed8f | 602b27aac8cf10f63bb84e82bf808c021ce9e1bc | refs/heads/master | 2020-03-22T00:36:04.318221 | 2018-05-01T13:01:47 | 2018-05-01T13:01:47 | 139,254,680 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 612 | puml | @startuml
class PageFragment
class SimpleAdFactory
interface IAdAction
class AdStore
class BannerAdView
class InterstitialAdView
class InStreamAdView
class NativeAdView
class RewardedVideoAdView
AdStore <-- PageFragment
SimpleAdFactory <-- PageFragment
IAdAction <|-- BannerAdView
IAdAction <|-- InterstitialAdView
IAdAction <|-- InStreamAdView
IAdAction <|-- NativeAdView
IAdAction <|-- RewardedVideoAdView
SimpleAdFactory --* AdStore
IAdAction <- AdStore
class AdStore {
Object[] SimpleAdFactory
getAdAction()
}
interface IAdAction {
create()
destroy()
}
class SimpleAdFactory {
createAd()
}
@enduml
| false | true | false | false | sequence |
2f0e5f1f8703abff5db0c8efd33b62002d27d034 | a164e5438716fb2233174ba9e19d137507caa4ea | /src/AbstractFactory/doc/abstractFactory.puml | b768c315f70e85fe49b9cdf9fad3cb86bf248b22 | [] | no_license | briansosa/DisenioSistemas | 0b612b6fe0bc8cf830fe0e5f240b31ab0e965f03 | ea1a47ad0fbad722860f7487329e13825524750c | refs/heads/master | 2023-06-12T03:00:59.641578 | 2021-07-03T22:11:45 | 2021-07-03T22:11:45 | 375,920,489 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,557 | puml | @startuml
title AbstractFactory
interface IFactory {
IBonnet createBonnet(int size);
IChain createChain();
IChassis createChassis();
IDoor createDoor();
IFrame createFrame();
IHandlebars createHandlebars();
IMotor createMotor();
ISeat createSeat(String color, String measures);
ISteeringWheel createSteeringWheel();
ITailPipe createTailPipe();
IWheel createWheel(int size, int duration);
}
class MotorcycleFactory {
IChain createChain()
IChassis createChassis()
IHandlebars createHandlebars()
IMotor createMotor()
ISeat createSeat(String color, String measures)
ITailPipe createTailPipe()
IWheel createWheel(int size, int duration)
}
class CarFactory {
IBonnet createBonnet(int size)
IChassis createChassis()
IChassis createChassis()
IMotor createMotor()
ISeat createSeat(String color, String measures)
ISteeringWheel createSteeringWheel()
ITailPipe createTailPipe()
IWheel createWheel(int size, int duration)
}
class BikeFactory {
IChain createChain()
IFrame createFrame()
IHandlebars createHandlebars()
ISeat createSeat(String color, String measures)
IWheel createWheel(int size, int duration)
}
IFactory <|.. MotorcycleFactory
IFactory <|.. CarFactory
IFactory <|.. BikeFactory
interface IBonnet
interface IChain
interface IChassis
interface IDoor
interface IFrame
interface IHandlebars
interface IMotor
interface ISeat
interface ISteeringWheel
interface ITailPipe
interface IWheel
class CarBonnet
class BikeChain
class MotorcycleChain
class CarChassis
class MotorcycleChassis
class CarDoor
class BikeFrame
class BikeHandlebars
class MotorcycleHandlebars
class CarMotor
class MotorcycleMotor
class BikeSeat
class CarSeat
class MotorcycleSeat
class CarSteeringWheel
class CarTailPipe
class MotorcycleTailPipe
class BikeWheel
class CarWheel
class MotorcycleWheel
IBonnet <|.. CarBonnet
IChain <|.. BikeChain
IChain <|.. MotorcycleChain
IChassis <|.. CarChassis
IChassis <|.. MotorcycleChassis
IDoor <|.. CarDoor
IFrame <|.. BikeFrame
IHandlebars <|.. BikeHandlebars
IHandlebars <|.. MotorcycleHandlebars
IMotor <|.. CarMotor
IMotor <|.. MotorcycleMotor
ISeat <|.. BikeSeat
ISeat <|.. CarSeat
ISeat <|.. MotorcycleSeat
ISteeringWheel <|.. CarSteeringWheel
ITailPipe <|.. CarTailPipe
ITailPipe <|.. MotorcycleTailPipe
IWheel <|.. BikeWheel
IWheel <|.. CarWheel
IWheel <|.. MotorcycleWheel
CarFactory o-- CarBonnet
CarFactory o-- CarChassis
CarFactory o-- CarDoor
CarFactory o-- CarMotor
CarFactory o-- CarSeat
CarFactory o-- CarSteeringWheel
CarFactory o-- CarTailPipe
CarFactory o-- CarWheel
BikeFactory o-- BikeChain
BikeFactory o-- BikeFrame
BikeFactory o-- BikeHandlebars
BikeFactory o-- BikeSeat
BikeFactory o-- BikeWheel
MotorcycleFactory o-- MotorcycleChain
MotorcycleFactory o-- MotorcycleChassis
MotorcycleFactory o-- MotorcycleHandlebars
MotorcycleFactory o-- MotorcycleMotor
MotorcycleFactory o-- MotorcycleSeat
MotorcycleFactory o-- MotorcycleTailPipe
MotorcycleFactory o-- MotorcycleWheel
interface IVehicle {
string getVehicleInformation()
}
class Motorcycle {
static Motorcycle getMotorcycle(IFactory)
string getVehicleInformation()
}
class Car {
static Car getCar(IFactory)
string getVehicleInformation()
}
class Bike {
static Bike getBike(IFactory)
string getVehicleInformation()
}
IVehicle <|.. Motorcycle
IVehicle <|.. Car
IVehicle <|.. Bike
class Client
Client -- IFactory
Client -- IVehicle
Bike -- IFactory
Motorcycle -- IFactory
Car -- IFactory
@enduml | false | true | false | false | class |
295886e857ca3f6baa3b4fb4cbfe53d39dba976b | 4d09d961288d59df1dc82bb8d1e3236411097fcd | /app/uml/android/activity/Application.puml | 799da20471b2b3313dbdc55bcb4eec69969f03f5 | [] | no_license | hackerlc/GearKJ | 3304a71316ade0dde509abf3f62af944d08510f1 | 0196dd1faf7941be1551739d2e098070bcd26e1f | refs/heads/master | 2021-09-24T11:29:48.512771 | 2018-10-09T03:39:02 | 2018-10-09T03:39:02 | 108,965,925 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 189 | puml | @startuml
ContextWrapper <|-- Application
ComponentCallbacks2 <|.. Application
class ContextWrapper {
}
interface ComponentCallbacks2
class Application {
+void onCreate()
}
@enduml | false | true | false | false | class |
fa7001d6e504f25e42b64ff44a9e8438ce6f2d32 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-datatype-utfoertkassasjon.iuml | 6bdfe45a5e91fc608aa8b8023181c3e030cd418e | [] | no_license | petterreinholdtsen/noark5-tjenestegrensesnitt-standard | 855019a61c8679a8119549e2824fa32ecc669e66 | 4673ba7134d83a6992bba6f9036c521c7ae1897f | refs/heads/master | 2023-06-11T12:08:52.134764 | 2023-03-05T11:05:21 | 2023-03-05T11:05:21 | 160,586,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 153 | iuml | @startuml
class Arkivstruktur.UtfoertKassasjon <<dataType>> {
+kassertDato : datetime
+kassertAv : string
+referanseKassertAv : SystemID
}
@enduml
| false | true | false | false | class |
4c1d5ea8baa1111495310f5a470e7966adccba30 | 5cc78b566cd1202586a1cc6b8cb6d97bb7a6394b | /src/docs/uml/sequence2.puml | ac3136f835ece2c2b7c6b8e9add0862ae7267346 | [
"MIT"
] | permissive | garbagetown/jjug-ccc-2017-fall | 95c8d32f6d96a6463b7196c804353d285812659f | 2e6824b187e140579a8e1cc984132fc897515e67 | refs/heads/master | 2021-08-16T07:52:50.032132 | 2017-11-19T09:57:14 | 2017-11-19T09:57:14 | 111,135,773 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 197 | puml | autonumber
Alice -> Bob: Request
activate Bob
Bob -> Bob: Process
note right: validate Request
Bob --> Alice: Response
Alice -> Bob: Another Request
Alice <-- Bob: another Response
deactivate Bob | false | true | false | false | sequence |
3c5a8123db95561bfd7aa7b7779582bab54e10a0 | f266f5b005cf5697b7bc5f4769715cf9b8e6860b | /docs/uml/causal_network_3.puml | a8dbe72e9dcb31b7e43d535e6ccc4c0ed3ade413 | [] | no_license | trubens71/verde | deff84c39401d98625716e716c626a3bc991aa96 | f8fde00f69a4e3d8d4cf113dbb8f3f8db5e498d5 | refs/heads/master | 2023-06-24T13:35:20.138811 | 2021-07-20T20:29:51 | 2021-07-20T20:29:51 | 274,150,753 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
() "zere hours contracts" as zero
() "vacancies" as vacancies
() "quality of life" as qol
zero --> vacancies
vacancies --> qol
zero --> qol
@enduml | false | true | false | false | uml-unknown |
543b9cc116c1e6dd953d10fe33f036cba3d5cc30 | 5852f6b38b87d13b732b67c8fdef4c22ae215a8f | /docs/diagrams/src/movies16.plantuml | 478ea2edc90068aa4e42505150da2ffae91a3de4 | [] | no_license | ivlago/Refactor | bbc940ba59aa2b397d52c3c041e3b1db97f8b22d | 5fc9ddb4517bc21dba3a8df0b629637b213cff79 | refs/heads/main | 2023-04-05T18:22:56.671516 | 2021-04-22T20:14:21 | 2021-04-22T20:14:21 | 359,514,464 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,242 | plantuml | @startuml movies
class Customer {
- String name;
- List<Rental> rentals;
+ Costumer(String name)
+ void addRental(Rental rental)
+ String getName()
+ String statement()
- double getTotalCharge()
- int getTotalFrequentRenterPoints()
}
class Rental {
- Movie movie;
- int daysRented;
+ Rental(Movie movie, int daysRented)
+ int getDaysRented()
+ Movie getMovie()
+ double getCharge()
+ int getFrequentRenterPoints()
}
class Movie {
+ static final int REGULAR = 0;
+ static final int NEW_RELEASE = 1;
+ static final int CHILDRENS = 2;
- String title;
- Price price;
+ Movie(String title, int priceCode)
+ double getCharge(int daysRented)
+ int getFrequentRenterPoints(int daysRented)
+ int getPriceCode()
+ void setPriceCode(int priceCode)
+ String getTitle()
}
class Price {
+ int getPriceCode()
+ double getCharge(int daysRented)
}
class RegularPrice {
+ int getPriceCode()
+ double getCharge(int daysRented)
}
class ChildrenPrice {
+ int getPriceCode()
+ double getCharge(int daysRented)
}
class NewReleasePrice {
+ int getPriceCode()
+ double getCharge(int daysRented)
}
Customer o-down-> Rental
Rental -down-> Movie
Movie *-down- Price
Price <|-down- RegularPrice
Price <|-down- ChildrenPrice
Price <|-down- NewReleasePrice
@enduml
| false | true | false | false | class |
526a2e8d0546802ee07229dfb80f7723b8b90089 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLReferencedResourceNotFoundError.puml | 75e15ad79bafcfe7fa07130382cf7cad79a8dc06 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 527 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface GraphQLReferencedResourceNotFoundError [[GraphQLReferencedResourceNotFoundError.svg]] extends GraphQLErrorObject {
code: String
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
| false | true | false | false | class |
52fe0a960ee4ec6eae3e0958bcffef38c4159e02 | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/WEB_Controllers/HouseConfiguration/US108/US108_ClassDiagram.puml | 5cea26444fb37a62831a5495043ecf2f8d6b0595 | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 1,126 | puml | @startuml
title US 108 - As an Http Client I want to a list of all existing Rooms
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 2
skinparam titleBorderColor indianred
skinparam titleBackgroundColor Snow
skinparam FontName quicksand
skinparam titleFontSize 10
skinparam roundcorner 10
skinparam class {
BorderColor indianred
BackgroundColor indianred
BackgroundColor Snow
roundcorner 10
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
FontSize 12
}
class HouseSettingsWebController
class RoomRepository
class RoomDTOMinimal
class Room
class RoomMapper
class RoomCrudRepository
HouseSettingsWebController -- RoomRepository: >
HouseSettingsWebController -- RoomDTOMinimal: >
RoomRepository -- RoomCrudRepository : >
RoomRepository -- RoomMapper : >
RoomRepository -- RoomDTOMinimal : >
RoomRepository -- Room : >
class HouseSettingsWebController {
getHouseRooms()
}
class RoomDTOMinimal {
}
class Room{
}
class RoomMapper{
objectToDTO(roomDTOMinimal)
}
class RoomRepository {
getAllRoomDTOMinimal()
}
class RoomCrudRepository{
findAll()
}
@enduml | false | true | false | false | class |
193016326d32b75ab0dc3ae9aa783497d1753127 | e55716ede3c9e4d921061371195588fc1ed0c4d7 | /use-cases/Capital City Report.puml | e11a1562c7f6a756754852bd7a285209eca229e3 | [
"Apache-2.0"
] | permissive | DanBeardm/semCoursework | 845a6073632ff8270cd2cb3d714b0fbbcea9f947 | 375464a8f016c71169f0478c545e7435c48f8d7c | refs/heads/master | 2023-04-09T05:59:58.964492 | 2021-04-28T08:50:05 | 2021-04-28T08:50:05 | 335,610,704 | 1 | 2 | Apache-2.0 | 2021-03-31T13:30:07 | 2021-02-03T12:02:34 | Java | UTF-8 | PlantUML | false | false | 516 | puml | @startuml
actor rep as "Reporter"
rectangle Database
rectangle "Capital City Report" {
usecase UC1 as "Get Capital Cities
By Population"
usecase UC2 as "Order Largest
To Smallest"
usecase UC3 as "Number 1 To 10"
usecase UCa as "Print Name"
usecase UCb as "Print Country"
usecase UCc as "Print Population"
rep - UC1
UC1 ..> UC2 : include
UC2 ..> UCa : include
UC2 ..> UCb : include
UC2 ..> UCc : include
UC2 .> UC3 : extend
UC1 - Database
}
@enduml | false | true | false | false | usecase |
886976e9e0c9f40cd62105df320f9f8c4b6bf523 | 424df0073bb0527d606b7df50b7cfa358bad286f | /greekIntellij/src/main/java/java.plantuml | 8acc901350e7b112f061ddb24a26ad14e0b6a03f | [] | no_license | Niko7965/Greek-Infotainmanent | 40d657101d2eb0d06ac8fa7a13277d0114b64fad | c69d3817f707e2346f448a8a0a8eb44c5af7d30f | refs/heads/master | 2023-04-07T00:28:44.883436 | 2020-06-18T09:22:37 | 2020-06-18T09:22:37 | 247,909,405 | 0 | 0 | null | 2021-04-26T20:06:56 | 2020-03-17T07:49:25 | Java | UTF-8 | PlantUML | false | false | 4,586 | plantuml | @startuml
title __JAVA's Class Diagram__\n
class Hint {
~ active : boolean
~ content : String
+ Hint()
+ getContent()
+ setActive()
}
class Logbook {
~ allHints : ArrayList<String>
~ core : PApplet
~ hintLines : ArrayList<String>
~ hintUrl : String
~ logbookActive : boolean
~ page : int
~ playerHints : ArrayList<Hint>
~ text : String
+ Logbook()
+ devEnableAll()
+ devPrintPlayerHints()
+ drawTextBox()
+ enableHint()
+ getHints()
+ hintsToLines()
+ loadAllHints()
+ setPlayerHints()
~ lineSplitter()
}
class Main {
+ bossMode : Boolean
+ quizMode : Boolean
+ startTime : long
~ allRooms : ArrayList<Room>
+ draw()
+ gameOver()
+ getImageFiles()
+ getInteractionFiles()
+ getKeyCode()
+ getTimeMin()
+ keyPressed()
+ keyReleased()
+ loadRooms()
{static} + main()
+ mouseClicked()
+ settings()
+ setup()
+ triggerQuiz()
}
class Player {
~ attempts : int
~ core : PApplet
~ direction : String
~ health : int
~ heart : PImage
~ heartDeath : PImage
~ heartLife : PImage
~ interacting : int
~ moveDown : boolean
~ moveLeft : boolean
~ moveRight : boolean
~ moveUp : boolean
~ questionMark : PImage
~ sprite : PImage
~ spriteDown : PImage
~ spriteLeft : PImage
~ spriteRight : PImage
~ spriteUp : PImage
~ x : float
~ y : float
+ Player()
+ damage()
+ drawHUD()
+ drawPlayer()
+ interact()
+ movement()
+ setSprite()
+ triggerBoss()
}
class Quiz {
~ core : PApplet
~ correct : boolean
~ correctPlacement : float
~ level : int
~ levels : int
~ maxX : float
~ maxY : float
~ minX : float
~ minY : float
~ optionHover : boolean
~ quizNumber : int
~ results : boolean
~ resultsTimer : int
~ space : float
~ sphinx : PImage
~ success : boolean
+ Quiz()
+ activateBoss()
+ activateQuiz()
+ drawQuiz()
+ drawSphinx()
+ questionString()
+ quizOption()
+ shuffleOptions()
~ questionSplitter()
}
class Room {
~ background : PImage
~ core : PApplet
~ heightInTiles : int
~ id : int
~ interactionUrl : String
~ spaces : ArrayList<Space>
~ tileMap : PImage
~ tileSize : int
~ widthInTiles : int
+ Room()
+ bossTerritory()
+ coordToId()
+ drawRoom()
+ evalSpaces()
+ fillSpaces()
+ getInteraction()
+ setBackground()
+ setTileMap()
+ spaceDownSolid()
+ spaceInteraction()
+ spaceLeftSolid()
+ spaceRightSolid()
+ spaceUpSolid()
+ xFromId()
+ yFromId()
~ interactionSplitter()
}
class SoundController {
~ audioInputStream : AudioInputStream
~ clip : Clip
~ currentFrame : Long
~ filePath : String
~ status : String
+ SoundController()
+ play()
+ resetAudioStream()
}
class Space {
~ boss : boolean
~ core : PApplet
~ id : int
~ interaction : int
~ solid : boolean
+ Space()
+ getBoss()
+ getInteraction()
+ getSolid()
}
class TextBox {
~ core : PApplet
~ space : int
~ text : String
+ TextBox()
+ activateText()
+ drawTextBox()
+ sphinxMonologue()
}
Logbook o-- Main : main
Main -up-|> processing.core.PApplet
Main o-- SoundController : correct
Main o-- Room : currentRoom
Main o-- SoundController : interact
Main o-- Logbook : l1
Main o-- Player : p1
Main o-- Quiz : q1
Main o-- SoundController : wrong
Player o-- Main : main
Player o-- TextBox : t1
Quiz o-- Main : main
Room o-- Logbook : log
Space o-- Room : r
TextBox o-- Main : main
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
b1fb12da9e052e18aba642164b089de9cf96fa32 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/ProjectGeneration.puml | 7f67a7a0772872e916d06b9936f418f8352c6656 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,269 | puml | @startuml
interface IGenerator {
SyncIfNeeded(affectedFiles:IEnumerable<string>, reimportedFiles:IEnumerable<string>) : bool
Sync() : void
HasSolutionBeenGenerated() : bool
SolutionFile() : string
ProjectDirectory : string <<get>>
GenerateAll(generateAll:bool) : void
}
interface IFileIO {
Exists(fileName:string) : bool
ReadAllText(fileName:string) : string
WriteAllText(fileName:string, content:string) : void
}
interface IGUIDGenerator {
ProjectGuid(projectName:string, assemblyName:string) : string
SolutionGuid(projectName:string, extension:string) : string
}
interface IAssemblyNameProvider {
GetAssemblyNameFromScriptPath(path:string) : string
GetAssemblies(shouldFileBePartOfSolution:Func<string, bool>) : IEnumerable<Assembly>
GetAllAssetPaths() : IEnumerable<string>
FindForAssetPath(assetPath:string) : UnityEditor.PackageManager.PackageInfo
ParseResponseFile(responseFilePath:string, projectDirectory:string, systemReferenceDirectories:string[]) : ResponseFileData
}
class AssemblyNameProvider {
+ GetAssemblyNameFromScriptPath(path:string) : string
+ GetAssemblies(shouldFileBePartOfSolution:Func<string, bool>) : IEnumerable<Assembly>
+ GetAllAssetPaths() : IEnumerable<string>
+ FindForAssetPath(assetPath:string) : UnityEditor.PackageManager.PackageInfo
+ ParseResponseFile(responseFilePath:string, projectDirectory:string, systemReferenceDirectories:string[]) : ResponseFileData
}
class ProjectGeneration {
+ {static} <<readonly>> MSBuildNamespaceUri : string = "http://schemas.microsoft.com/developer/msbuild/2003"
m_SolutionProjectEntryTemplate : string
m_SolutionProjectConfigurationTemplate : string
m_ShouldGenerateAll : bool
+ ProjectDirectory : string <<get>>
+ GenerateAll(generateAll:bool) : void
<<readonly>> m_ProjectName : string
<<const>> k_ToolsVersion : string = "4.0"
<<const>> k_ProductVersion : string = "10.0.20506"
<<const>> k_BaseDirectory : string = "."
<<const>> k_TargetFrameworkVersion : string = "v4.7.1"
<<const>> k_TargetLanguageVersion : string = "latest"
+ ProjectGeneration()
+ ProjectGeneration(tempDirectory:string)
+ ProjectGeneration(tempDirectory:string, assemblyNameProvider:IAssemblyNameProvider, fileIoProvider:IFileIO, guidGenerator:IGUIDGenerator)
+ SyncIfNeeded(affectedFiles:IEnumerable<string>, reimportedFiles:IEnumerable<string>) : bool
HasFilesBeenModified(affectedFiles:IEnumerable<string>, reimportedFiles:IEnumerable<string>) : bool
{static} ShouldSyncOnReimportedAsset(asset:string) : bool
+ Sync() : void
+ HasSolutionBeenGenerated() : bool
SetupProjectSupportedExtensions() : void
ShouldFileBePartOfSolution(file:string) : bool
IsSupportedExtension(extension:string) : bool
{static} ScriptingLanguageFor(island:Assembly) : ScriptingLanguage
{static} GetExtensionOfSourceFiles(files:string[]) : string
{static} GetExtensionOfSourceFile(file:string) : string
{static} ScriptingLanguageFor(extension:string) : ScriptingLanguage
+ GenerateAndWriteSolutionAndProjects(types:Type[]) : void
ParseResponseFileData(assembly:Assembly) : IEnumerable<ResponseFileData>
GenerateAllAssetProjectParts() : Dictionary<string, string>
IsInternalizedPackagePath(file:string) : bool
SyncProject(island:Assembly, allAssetsProjectParts:Dictionary<string, string>, responseFilesData:IEnumerable<ResponseFileData>, allProjectIslands:List<Assembly>, types:Type[]) : void
SyncProjectFileIfNotChanged(path:string, newContents:string, types:Type[]) : void
SyncSolutionFileIfNotChanged(path:string, newContents:string, types:Type[]) : void
{static} SafeGetTypes(a:System.Reflection.Assembly) : List<Type>
{static} OnGeneratedCSProjectFiles(types:Type[]) : void
+ {static} GetAssetPostprocessorTypes() : Type[]
{static} OnPreGeneratingCSProjectFiles(types:Type[]) : bool
{static} OnGeneratedCSProject(path:string, content:string, types:Type[]) : string
{static} OnGeneratedSlnSolution(path:string, content:string, types:Type[]) : string
SyncFileIfNotChanged(filename:string, newContents:string) : void
ProjectText(assembly:Assembly, allAssetsProjectParts:Dictionary<string, string>, responseFilesData:List<ResponseFileData>, allProjectIslands:List<Assembly>) : string
{static} AppendReference(fullReference:string, projectBuilder:StringBuilder) : void
+ ProjectFile(assembly:Assembly) : string
+ SolutionFile() : string
ProjectHeader(assembly:Assembly, responseFilesData:List<ResponseFileData>) : string
{static} GetSolutionText() : string
{static} GetProjectFooterTemplate() : string
{static} GetProjectHeaderTemplate() : string
SyncSolution(islands:IEnumerable<Assembly>, types:Type[]) : void
SolutionText(islands:IEnumerable<Assembly>) : string
{static} RelevantIslandsForMode(islands:IEnumerable<Assembly>) : IEnumerable<Assembly>
GetProjectEntries(islands:IEnumerable<Assembly>) : string
GetProjectActiveConfigurations(projectGuid:string) : string
EscapedRelativePathFor(file:string) : string
{static} SkipPathPrefix(path:string, prefix:string) : string
{static} NormalizePath(path:string) : string
{static} ProjectFooter() : string
{static} GetProjectExtension() : string
}
class SolutionGuidGenerator <<static>> {
+ {static} GuidForProject(projectName:string) : string
+ {static} GuidForSolution(projectName:string, sourceFileExtension:string) : string
{static} ComputeGuidHashFor(input:string) : string
{static} HashAsGuid(hash:string) : string
{static} HashToString(bs:byte[]) : string
}
enum ScriptingLanguage {
None,
CSharp,
}
class "Dictionary`2"<T1,T2> {
}
IAssemblyNameProvider <|-- AssemblyNameProvider
IGenerator <|-- ProjectGeneration
ProjectGeneration o-> "k_BuiltinSupportedExtensions<string,ScriptingLanguage>" "Dictionary`2"
ProjectGeneration o-> "k_ScriptReferenceExpression" Regex
ProjectGeneration --> "m_AssemblyNameProvider" IAssemblyNameProvider
ProjectGeneration --> "m_FileIOProvider" IFileIO
ProjectGeneration --> "m_GUIDGenerator" IGUIDGenerator
ProjectGeneration o-> "scriptReferenceExpression" Regex
ProjectGeneration +-- ScriptingLanguage
@enduml
| false | true | false | false | class |
3976c5f18848a0a19467e06f76bb4d6390d7d0cc | 9b4db5933b8160e7a3cfc12b937fa3fa42dbdd7b | /src/pers/caijx/prototype/sheep.puml | 6ca0a7781734e51c3da438954a6bddb7b06dac75 | [] | no_license | SmileCJX/DesignPattern | 73014d9bf34b52d4089a605e980e9ee8ee0558ba | 7c5b234d76efd424820e0b1a5521e885dd606bcd | refs/heads/master | 2020-08-05T08:35:19.258006 | 2019-12-03T01:25:06 | 2019-12-03T01:25:06 | 212,466,258 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 102 | puml | @startuml
class Sheep
Sheep : -name: String
Sheep : -age: int
Class Client
Client ..> Sheep
@enduml | false | true | false | false | class |
8ac6dcfc574d03fbb86f2f444a2a4d77e4813dcf | 3ede3e4115d88efc8f6cfe5cab066b50421a5a98 | /modulearchitecture.puml | 6b797a266ffa3926607a4500c2c822c027badedf | [] | no_license | nemethmik/t11grepo | 2127b8296a39f3d9f95e6cbdc6a6b2f901efd73a | 90ce8bf11cc5e6027f28fbd45f69eed0c865c6f9 | refs/heads/master | 2020-07-06T06:55:19.380673 | 2019-09-07T12:43:51 | 2019-09-07T12:43:51 | 202,931,244 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,528 | puml | @startuml
'database "HANA" {
' folder "SBODEMOUS" {
' [OITM]
' }
' frame "COMPANY DB" {
' [OCLG]
' }
'}
cloud {
ServiceLayer - [SAP B1]
' [SAP B1] .u.> [OITM]
}
package "model" {
[B1Session]
[B1Activities] --> [B1Activity]
}
package "b1s" {
[B1LoginDataSourceImpl] -u- B1LoginDataSourceIntf
B1LoginRetrofitIntf ..> ServiceLayer
B1ActivitiesRetrofitIntf ..> ServiceLayer
[B1LoginDataSourceImpl] ..> [B1Session]
[B1ActivitiesDataSourceImpl] -- B1ActivitiesDataSourceIntf
[B1ActivitiesDataSourceImpl] ..> B1ActivitiesRetrofitIntf
[B1LoginDataSourceImpl] ..> B1LoginRetrofitIntf
[DataSourceRepository] ..> [B1LoginDataSourceImpl]
[DataSourceRepository] ..> [B1ActivitiesDataSourceImpl]
[DataSourceRepository] - getLoginDS
getActivitiesDS - [DataSourceRepository]
getLoginDS ..> B1LoginDataSourceIntf
}
package "vm" {
[AppViewModel] - B1LoginVMIntf
[AppViewModel] - B1ActivitiesVMIntf
[AppViewModel] ..> getActivitiesDS
[AppViewModel] ..> [B1Session]
[AppViewModel] ..> getLoginDS
[AppViewModel] ..> B1LoginDataSourceIntf
[AppViewModel] ..> B1ActivitiesDataSourceIntf
[ViewModelFactory] - getLoginVM
[ViewModelFactory] - getActivitiesVM
[ViewModelFactory] ..>[AppViewModel]
getLoginVM ..> B1LoginVMIntf
}
package "app" {
[LoginActivity] ..> [B1Session]
[LoginActivity] .u.> B1LoginVMIntf
[LoginActivity] .u.> B1ActivitiesVMIntf
[LoginActivity] .u.> getLoginVM
[LoginActivity] .u.> [getActivitiesVM]
[LoginActivity] .u.> [B1Activities]
[MainActivity]
}
@enduml | false | true | false | false | class |
3fb5ba523f66a0daa29af70a2578d11088c746e6 | 0b0754a6ac71aae77aa29e94a143b92d2ca34d3d | /app/UML/Activity Diagram/StartQuiz.puml | 6907d9f3e5651dd8be90cc115fbafb40700949aa | [] | no_license | onmurphy/AndroidTermProject | c515a2e24ee4e7f604a8da1cd058488a0b76259d | 159d37406df9faa0082b0b9fc64621fe2600f24f | refs/heads/master | 2021-05-31T06:21:47.679637 | 2016-05-01T19:32:26 | 2016-05-01T19:32:26 | 56,472,493 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 99 | puml | @startuml
(*) --> "start quiz"
If "begin" then
--> [Yes] "display questions"
else
--> (*)
@enduml | false | true | false | false | activity |
823865395af5ab1ade704e905a006963376a65f5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderDeletedMessage.puml | 93e672b910acc0c2daed32659830075e96ee5e01 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,165 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface OrderDeletedMessage [[OrderDeletedMessage.svg]] extends OrderMessage {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
order: [[Order.svg Order]]
}
interface OrderMessage [[OrderMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
| false | true | false | false | class |
ee1b0b283ba3ae1ff9dce84a43af02c28ea37171 | e6d58ccb12f75880a5b42ec93ebc9b67a0ad069d | /doc/articleAndMagazineModels.puml | d2ae7fa5781a148aa8de243b6f2f3bab72d5b67a | [] | no_license | Max-Z80/magazineKeepr_backend | a3b4e5b4a107cd35b041d531c79757ee18a11e2a | 69a7b2704d827fb493adda901246e3cb8ba7d175 | refs/heads/master | 2022-12-17T12:16:39.431145 | 2020-09-14T20:45:35 | 2020-09-14T20:45:35 | 295,158,489 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 581 | puml | @startuml
class Article{
id: number
page: number
title: string
attachments: Array
type: enum['memo', 'file']
comment: string
}
class Magazine{
id: number
name: string
issue: string
location: string
}
Article "[0..*] article" -- "[1] magazine" Magazine: is written in >
object article1{
id=1
page=10
title="guide des tailles d'été"
type:"file"
magazine
}
object magazine1{
id=1
name= 'rustica'
issue= '2588'
location ='bevenais;bureau;armoire1;etagere1;cartonRevue1'
}
article1 -- magazine1
@enduml | false | true | true | false | class |
799e28ec9cf5ebbb62c6eb4033f38c4b6e78dd03 | debec793d847c9c06dcbba6b9f956fa807828928 | /javascript/communication-between-browser-tabs-synchronizing-state/sequence-diagram.puml | ccb3bf3a3938569d0f1a3fdf004e8ed8bc94728d | [
"MIT"
] | permissive | diwadidu/diwadidu.github.io | 1308e8a6dcec9bad28382249303fcb7318b3ad69 | a1e4e7e919e9c856dfb25f7c109bfa1c83badb75 | refs/heads/master | 2021-06-27T01:33:40.860347 | 2021-02-18T11:45:42 | 2021-02-18T11:45:42 | 68,662,503 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 984 | puml | @startuml
actor user
scale 2048 width
skinparam monochrome true
hide footbox
skinparam responseMessageBelowArrow true
skinparam ParticipantPadding 10
participant user as user
box "Browser UI"
participant Tab_1 as "Tab 1"
participant Tab_2 as "Tab 2"
participant Tab_3 as "Tab 3"
end box
participant storage as "Window.storage"
participant Server as Server
== User Logged in ==
user -> Tab_1: Opens application
activate Tab_1
Tab_1 -> storage: property set?
activate storage
storage --> Tab_1: yes
Tab_1 -> Tab_1: Show application state
deactivate Tab_1
== User logging out ==
user -> Tab_2: Logout
activate Tab_2
Tab_2 -> Server: Log user out on server
Server --> Tab_2: 200 OK
Tab_2 -> storage: Update localStorage
deactivate Tab_2
activate Tab_1
storage --> Tab_1: localStorage changed
Tab_1 -> Tab_1: Load login screen
deactivate Tab_1
activate Tab_3
storage --> Tab_3: localStorage changed
Tab_3 -> Tab_3: Load login screen
deactivate storage
deactivate Tab_3
@enduml
| false | true | false | false | sequence |
6f3ceec3bd1b9ffd3e6d665d3a45ed022ab16bbe | 1dd9d620da1783f7bcfcfd79cac6bfa2794c1953 | /videos/1/traffic_lights_fsm.puml | b99caa4a10be7c1f8a147d7f15e72b5bd38f253c | [
"MIT"
] | permissive | yohummus/casual-engineering | 41498ecc7a35798ba86c09e1fe10d4336c15b293 | 8b126b7ef6c2fea237c065083c1b445c03ed97d0 | refs/heads/master | 2022-09-30T01:28:54.872445 | 2020-05-23T17:00:55 | 2020-06-06T12:39:39 | 262,848,154 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 726 | puml | @startuml
hide empty description
title Traffic Lights FSM
[*] -> NormalOperation
state NormalOperation {
[*] --> Red
Red : entry / start_timer(4000)
Red --> RedYellow : Timeout
RedYellow : entry / start_timer(1000)
RedYellow --> Green : Timeout
Green : entry / start_timer(4000)
Green --> Yellow : Timeout
Yellow : entry / start_timer(2000)
Yellow --> Red : Timeout
}
NormalOperation -> ErrorOperation : LightsBroken
state ErrorOperation {
[*] --> YellowOn
YellowOn : entry / start_timer(800)
YellowOn --> YellowOff : Timeout
YellowOff : entry / start_timer(800)
YellowOff --> YellowOn : Timeout
}
ErrorOperation -> NormalOperation : LightsRepaired
@enduml
| false | true | false | false | sequence |
9fdf7ab70d811e01135cf61d79115fd25a60ef0d | 55afcc28eb94f2e3a3b8ecbbb37ee09c2099974a | /Ejercicios recuperación/2_aulas/aulas.puml | 7398f4cf5c4e04fa083d15fb4efddfcde27960b4 | [] | no_license | igijon/sge2021_python | 7c1a66faa78e38092d6e7b9d9ba4b8d762ca10a9 | eeb8302f3b0853f1edcf486cbd1d5082afd27d1a | refs/heads/main | 2023-05-30T19:10:59.871908 | 2021-06-12T16:02:10 | 2021-06-12T16:02:10 | 308,727,048 | 4 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,352 | puml | @startuml aula
Persona <|-- Alumno
Persona <|-- Profesor
Aula "1" o-- "0..*" Alumno
Aula "1" o-- "0..*" Profesor
Aula "1" o-- "0..*" Asignatura
Asignatura "0..*" <-- "1" Alumno : se_matricula
Asignatura "0..*" <-- "1" Profesor: imparte
class Aula {
- str codigo
+ add_asignatura(a: Asignatura)
+ asignatura_en_curso(a: Asignatura): Boolean
+ remove_asignatura(a: Asignatura)
+ get_asignatura(a: Asignatura): Asignatura
+ add_alumno(a: Alumno)
+ esta_alumno_en_curso(a: Alumno): Boolean
+ remove_alumno(a: Alumno)
+ add_profesor(p: Profesor)
+ esta_profesor_en_curso(p: Profesor): Boolean
+ remove_profesor(p: Profesor)
+ get_profesor(p: Profesor): Profesor
+ to_dictionary(): Dictionary
}
class Asignatura {
- str codigo
- str nombre
+ to_dictionary(): Dictionary
}
class Persona {
- str dni
- str nombre
- Date fecha_nacimiento
+ to_dictionary(): Dictionary
}
class Alumno {
+ matricular_asignatura(a: Asignatura)
+ esta_asignatura_matricula(a: Asignatura): Boolean
+ remove_asignatura(a: Asignatura)
+ to_dictionary(): Dictionary
}
class Profesor {
- Date fecha_incorporacion
+ to_dictionary(): Dictionary
}
note as N1
Los getters y setters son omitidos
por claridad en el código.
Tampoco añadimos los métodos equals y toString
end note
@enduml | false | true | true | false | class |
b86d365e2d36944294b6bd9bda6a922fa34e2961 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Events/SignalTrack.puml | cff638c8b58e28e0b2e8a3d68949fcbc3a903cd9 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 69 | puml | @startuml
class SignalTrack {
}
MarkerTrack <|-- SignalTrack
@enduml
| false | true | false | false | class |
5abf27e1ee668bca01a1fe434f179f5712a00a00 | 2d18d575a2e37fc8be360ecbe48be2465056a8e2 | /docs/initial_state/initial_state.puml | d1780d131d23afa1a0def523a8d846aacb94bf0c | [] | no_license | hugohg34/backgammon | a47e5132c857bbe8c1d4c7cda3a05c1541159905 | 8e3d49ef27ee251a5262994c713a1a86ab7fd0ab | refs/heads/main | 2023-07-06T11:25:13.985476 | 2021-08-06T07:36:52 | 2021-08-06T07:36:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,318 | puml | @startuml
object ":Backgammon" as Backgammon
object ":Board" as Board
object ":Point" as Point1 {
number = 1
}
object ":Point" as Point6 {
number = 6
}
object ":Point" as Point8 {
number = 8
}
object ":Point" as Point12 {
number = 12
}
object ":Point" as Point13 {
number = 13
}
object ":Point" as Point17 {
number = 17
}
object ":Point" as Point19 {
number = 19
}
object ":Point" as Point24 {
number = 24
}
object ":Piece" as PieceB1
object ":Piece" as PieceB2
object ":Piece" as PieceB3
object ":Piece" as PieceB4
object ":Piece" as PieceR1
object ":Piece" as PieceR2
object ":Piece" as PieceR3
object ":Piece" as PieceR4
object ":Color" as ColorBlack {
BLACK
}
object ":Color" as ColorRed {
RED
}
Backgammon *--> Board
Board *--> Point1
Board *--> Point6
Board *--> Point8
Board *--> Point12
Board *--> Point13
Board *--> Point17
Board *--> Point19
Board *--> Point24
Point1 *--> "2" PieceR1
Point12 *--> "5" PieceR2
Point17 *--> "3" PieceR3
Point19 *--> "5" PieceR4
Point6 *--> "5" PieceB1
Point8 *--> "3" PieceB2
Point13 *--> "5" PieceB3
Point24 *--> "2" PieceB4
PieceB1 *--> ColorBlack
PieceB2 *--> ColorBlack
PieceB3 *--> ColorBlack
PieceB4 *--> ColorBlack
PieceR1 *--> ColorRed
PieceR2 *--> ColorRed
PieceR3 *--> ColorRed
PieceR4 *--> ColorRed
@enduml
| false | true | false | false | class |
268bcc269950cb6ca8213d98e2aa180dd888b841 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductPublishScope.puml | 5bfda630f734396f2e14ba24123ff800bdae166e | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,370 | puml | @startuml
hide methods
enum ProductPublishScope {
ALL
PRICES
}
interface ProductPublishedMessage [[ProductPublishedMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
removedImageUrls: [[String.svg List<String>]]
productProjection: [[ProductProjection.svg ProductProjection]]
scope: [[ProductPublishScope.svg ProductPublishScope]]
}
interface ProductPublishedMessagePayload [[ProductPublishedMessagePayload.svg]] {
type: String
removedImageUrls: [[String.svg List<String>]]
productProjection: [[ProductProjection.svg ProductProjection]]
scope: [[ProductPublishScope.svg ProductPublishScope]]
}
interface ProductPublishAction [[ProductPublishAction.svg]] {
action: String
scope: [[ProductPublishScope.svg ProductPublishScope]]
}
ProductPublishScope --> ProductPublishedMessage #green;text:green : "scope"
ProductPublishScope --> ProductPublishedMessagePayload #green;text:green : "scope"
ProductPublishScope --> ProductPublishAction #green;text:green : "scope"
@enduml
| false | true | false | false | sequence |
7ed0f6f50d6d7cbce2d4213117c58061ed985ebc | a29e37e9174b55c75a2a88824ff015dd387378fb | /Veterinaria/UML/DiagramaUML.puml | ac22883d94a449f66f5d86faa8acea61cfd9ab09 | [] | no_license | TomasAlvarez78/Ing-en-Soft | 3b610ebb8068fb674b07a6496908eddff306be3c | 3674388fb16c50203d4230b0bb9cc36c5e71d517 | refs/heads/master | 2023-07-19T08:55:52.212311 | 2021-09-15T01:06:16 | 2021-09-15T01:06:16 | 402,591,925 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,290 | puml | @startuml Clinica Veterinaria
package Veterinaria{
class Persona{
- nombre : string
- apellido : string
- dni : Int
- fechaNacimiento : Date
- telefono : Int
- email : string
}
class Cliente{
- datosPersonales : Persona
+ verificarCliente()
+ crearCliente()
+ consultarEstado()
+ consultarCamara()
+ consultarHistorial()
}
class Veterinario{
- datosPersonales : Persona
- profesion : String
+ operar()
}
class Auxiliar{
- datosPersonales : Persona
- turno : string
+ cobrarCliente()
}
class Mascota{
- nombre : string
- raza : string
- edad : string
- sexo : string
- dueno : Cliente
+ verificarMascota()
+ crearMascota()
+ modificarDueno()
}
class Consulta{
- animal : Mascota
- profesional : Veterinario
- fecha : Datetime
- tiempoTranscurrido : Int
- importe : Double
- resolucion : string
- pago : Pago
- recetas : List <Receta>
}
class Receta{
- nombre : string
- definicion : string
}
class Pago{
- metodo : string
+ registrarPago()
+ aplicarRecargo()
}
class SistemaCamaras{
- cantidad : int
- listaMascotas : List<Mascota>
+ verVideo()
}
class Camara{
- numero: int
+ verVideoCamara()
}
' Herencia
Cliente -up-|> Persona
Veterinario -up-|> Persona
Auxiliar -up-|> Persona
' Relaciones
Cliente "1" --> "0-n" Mascota
Consulta "0-n" -left-> "1" Mascota
Consulta "0-n" -up-> "1" Veterinario
Consulta -left-> "0-n" Receta
Consulta -right-> Pago
Cliente -> Pago
SistemaCamaras -down-> Camara
Cliente -> SistemaCamaras
}
package REIAC {
class REIAC{
+ verificarMascota()
}
}
package GestorContenidos <<Database>> {
class GestorContenidos{
+ guardarDiario()
+ generarInforme()
+ historialMascota()
}
}
Mascota --> REIAC
GestorContenidos -up-> Consulta
' GestorContenidos -up-> Cliente
' GestorContenidos -up-> Mascota
@enduml | false | true | false | false | class |
5444b84b81145693df4c924257ec2d0d33ac4d31 | e009d1eae92023d89425a31e52f79cad2f9800be | /OOP-Assign-TaxiRental/taxi_final_rental/out/production/taxi_final_rental/App/App.plantuml | 108bc3780c53288a73e5641c510ffcaf80845a98 | [] | no_license | michalkubiak98/Java-TaxiRental-Project | cc0998d1eccc7a4e9e621c0971356c3a737a5761 | ef6b4f3d8af791e99ee7ea95a74639b27cd688ab | refs/heads/master | 2023-06-03T05:24:26.499548 | 2021-07-03T15:19:23 | 2021-07-03T15:19:23 | 224,510,134 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 406 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace App {
class App.Main {
+ Main()
{static} + main()
+ start()
}
}
App.Main -up-|> javafx.application.Application
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
63904452b982c944fc8ad8c4736f29c38c3811c6 | d2a188c9357d76c2a22a9d5f4f68154a6a1901a4 | /docs/uml/graph_improve_pharse.plantuml | 5c549cf418a87048d247c1f679101f4b7a86544d | [
"MIT"
] | permissive | ArDoCo/PARSEGraphImprove | 9f1b4e17be90862a7d488c2b45606a352a224aa6 | 3520197d6a1260566e6dd2da0ee279aa82b83709 | refs/heads/master | 2023-02-10T19:43:43.186266 | 2020-12-21T14:57:19 | 2020-12-21T14:57:19 | 244,677,807 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,880 | plantuml | @startuml
object token0 {
value = "This"
sentence = 0
chunkIOB = "B-NP"
position = 0
}
object token1 {
value = "is"
sentence = 0
chunkIOB = "B-VP"
position = 1
}
object token2 {
value = "a"
sentence = 0
chunkIOB = "B-NP"
position = 2
}
object token3 {
value = "house"
sentence = 0
chunkIOB = "I-NP"
position = 3
}
object token4 {
value = "."
sentence = 0
chunkIOB = "0"
position = 4
}
object token5 {
value = "Here"
sentence = 1
chunkIOB = "B-ADVP"
position = 5
}
object token6 {
value = "we"
sentence = 1
chunkIOB = "B-NP"
position = 6
}
object token7 {
value = "go"
sentence = 1
chunkIOB = "B-VP"
position = 7
}
object token8 {
value = "."
sentence = 1
chunkIOB = "0"
position = 8
}
token0 <-right-> token1 : relation
token1 <-right-> token2 : relation
token2 <-right-> token3 : relation
token3 <-right-> token4 : relation
token4 <-right-> token5 : relation
token5 <-right-> token6 : relation
token6 <-right-> token7 : relation
token7 <-right-> token8 : relation
object noun_phrase0 {
CHUNK_IOB = NP
}
token0 <-up-> noun_phrase0 : begin_noun_phrase
object verb_phrase0 {
CHUNK_IOB = VP
}
token1 <-up-> verb_phrase0 : begin_verb_phrase
object noun_phrase1 {
CHUNK_IOB = NP
}
token2 <-up-> noun_phrase1 : begin_noun_phrase
token3 <-up-> noun_phrase1 : inside_noun_phrase
object adverb_phrase0 {
CHUNK_IOB = ADVP
}
token5 <-up-> adverb_phrase0 : begin_adverb_phrase
object noun_phrase2 {
CHUNK_IOB = NP
}
token6 <-up-> noun_phrase2 : begin_noun_phrase
object verb_phrase1 {
CHUNK_IOB = VP
}
token7 <-up-> verb_phrase1 : begin_verb_phrase
noun_phrase0 <-right-> verb_phrase0 : phrase2phrase
verb_phrase0 <-right-> noun_phrase1 : phrase2phrase
noun_phrase1 <-right-> adverb_phrase0 : phrase2phrase
adverb_phrase0 <-right-> noun_phrase2 : phrase2phrase
noun_phrase2 <-right-> verb_phrase1 : phrase2phrase
@enduml | false | true | false | false | sequence |
a7520d42331bc3ac6c610530edab0aba949a3933 | f82e39b7ba1de2512a1faedc6f6bbd6bfc00b242 | /docs/plantuml/Overview.plantuml | 75a99404a913a1ec7d0bc4fdb82248443eec7d8d | [] | no_license | mumov/fintech-coding-challenge | cb7a6e5e015548057b214e65c90b2be39d51cdc2 | 729eeb54b829d5481f7ef616c27cf1d30aadabaa | refs/heads/main | 2023-03-11T18:40:14.296790 | 2021-03-04T08:34:28 | 2021-03-04T08:34:28 | 344,390,831 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 357 | plantuml | @startuml
Input -> Internal: Instrument
Input -> Internal: Quote
== Instrument-Price retrieval ==
Output --> Internal: getInstruments
Internal -> Output : Instruments
== Aggregated-Price History retrieval ==
Output --> Internal: getCandlestickChart
Internal -> Output : CandlestickChart
== Hot Instrument stream ==
Internal -> Output: HotInstruments
@enduml | false | true | false | false | sequence |
ac67ad432980abc102418d7500aa8e89e4b9fd7c | 4f2641b1e69cf6859332e1e77da6185ea397647f | /documents/uml-designer/download.puml | 77df833943f8788b7c0d5ee3e074a7aae8d3eb43 | [] | no_license | AllanWendy/jenkins | 5d3a02cf533abaf1d5d53aa4165b6d35f7257bda | b8dc6ca69fd18908cd887e502ca73cedca4dfd3b | refs/heads/master | 2016-09-01T14:23:19.910365 | 2016-01-24T08:12:53 | 2016-01-24T08:12:53 | 48,847,332 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,446 | puml | @startuml
class DownloadController{
private List<Downloader> mDownloaders;
public static Downloader obtainDownloader(DownloadConfig config);
}
class DownloadException
class Downloader{
void add(Downloadable downloadable);
void addAll(List<Downloadable> item);
void remove(Downloadable downloadable);
void removeAll(List<Downloadable> item);
void pause(Downloadable downloadable);
void resume(Downloadable downloadable);
void init(DownloadConfig);
void clear();
void destroy();
List<Downloadable> queryAll();
addDownloadListener(DownloadListener listener);
removeDownloadListener(DownloadListener listener);
}
class DownloadList{
void add(Downloadable downloadable);
void remove(Downloadable downloadable);
void clear();
}
class DownloadWorker{
void runPrepare(Downloadable,RunState);
void runStart(Downloadable,RunState);
void runResume(Downloadable,RunState);
void runProgress(Downloadable,RunState);
void runPause(Downloadable,RunState);
void runEnd(Downloadable,RunState);
void runError(Downloadable,RunState);
}
class DownloadConfig{
private ExecutorService mExecutor;
private int mCoreCount;
private HibernatePolicy mPolicy;
getXXX();
setXXX();
}
abstract class HibernatePolicy{
private void performPrepare();
private void performCommit();
abstract void prepare();
abstract void commit();
protected HibernatePolicy append(Downloadable downloadable);
protected HibernatePolicy appendAll(List<Downloadable> downloadable);
}
class JsonFilePolicy {
void prepare();
void commit();
JsonFilePolicy append();
}
class DatabasePolicy{
void prepare();
void commit();
DatabasePolicy append();
}
interface Downloadable {
public String getUrl();
public String getName();
public String getSaveDir();
public long getSize();
public long getTotal();
public long getProgress();
}
interface DownloadListener{
void onPrepare(Downloadable);
void onStart(Downloadable);
void onResume(Downloadable);
void onProgress(Downloadable);
void onPause(Downloadable);
void onEnd(Downloadable);
void onError(Downloadable);
}
interface Runnable{
}
enum RunState{
PREPARE,
START,
RESUME,
PROGRESS,
PAUSE,
END,
ERROR;
}
HibernatePolicy <|-- JsonFilePolicy
HibernatePolicy <|-- DatabasePolicy
Runnable <|-- DownloadWorker
Downloader <-- DownloadList
Downloader <-- DownloadWorker
Downloader <-- DownloadConfig
Downloader <-- Downloadable
DownloadWorker <-- RunState
Downloader <-- DownloadListener
DownloadList <-- HibernatePolicy
DownloadController <-- Downloader
@enduml | false | true | false | false | class |
5234ecaeb3e4f9643f3a859bfff29d1fc58d0fd8 | b3600ff637cbf5acd0a33d1d47652e3edd1e45c6 | /images/dependency-adapter/virtual-deps.puml | cb093a62ccccbb876dfd4e1b64b40cdb1ded9b04 | [
"Apache-2.0"
] | permissive | bazelbuild/proposals | 629c0d290ed14505321d18438e323457d244b8d9 | 27fbb6e60206a397d6a6ac2ea924751f35734f94 | refs/heads/main | 2023-09-01T20:48:19.602187 | 2023-08-14T19:23:42 | 2023-08-14T19:23:42 | 140,339,230 | 90 | 73 | Apache-2.0 | 2023-09-14T17:06:53 | 2018-07-09T20:33:43 | null | UTF-8 | PlantUML | false | false | 409 | puml | @startuml
package "Local Repository" {
[ Executable A ] as A
cloud "Library B" as B
}
package "External Repository (shared_libs)" {
cloud "Library C" as C
[ Library D ] as D
}
A -[#red]-> B: <back:white><b><back:white><color:red> ERROR: no such package 'B'
A -[#red]r-> C: <back:white><b><back:white><color:red>ERROR: no such package '@shared_libs//C'
C ..> D: <back:white> //D:libD
@enduml | false | true | false | false | sequence |
09a48355aabfc4a0e9c013844bdf2dab82b90d66 | e8eb337a2b2cbe18456b321804020572e9315e71 | /docs/rdcu-demarrerJeu.puml | beb960c5422889b889313a9752d230572126adc3 | [] | no_license | AndreNguyen15/log210-systeme-gestion-bordereau-node-express-ts | a5f350f3b2b148bf126568f096d1b70fdc3c91db | f1ffe8aeb2dee99f55c6244596254497993a6651 | refs/heads/master | 2022-12-18T19:16:18.801218 | 2020-09-15T21:00:20 | 2020-09-15T21:00:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 391 | puml | @startuml
skinparam style strictuml
skinparam defaultfontname Verdana
title RDCU pour démarrerJeu
participant ":JeuDeDes" as c
->c : demarrerJeu(nom)
note right : par Contrôleur
participant "j:Joueur" as j
create j
participant "joueurs:\nMap<Joueur>" as jm
c-->j : j = create(nom)
note right : par Créateur\n(JeuDeDes //agrège// Joueur)
c -> jm : add(j)
note right : selon Expert
@enduml | false | true | true | false | sequence |
1627ea82cb29d09384df02fb50a33dd99445ecac | aff68ebcc42563768b200a9de86989646287b29e | /doc/diagrams/documentFetcher.puml | 4ce34cf5a29da345aac8c9c7777b828bb707c51d | [
"MIT"
] | permissive | exasol/dynamodb-virtual-schema | fc17be7abb687acaa442d7b7cc363ab76c175c22 | 4910b40e4b6f840b7bc494d045c63056d889be26 | refs/heads/main | 2023-07-06T22:09:56.793653 | 2023-07-04T08:30:51 | 2023-07-04T08:30:51 | 238,997,495 | 1 | 1 | MIT | 2023-07-04T08:30:53 | 2020-02-07T18:31:48 | Java | UTF-8 | PlantUML | false | false | 810 | puml | @startuml
interface DocumentFetcher <<interface>> {
{abstract} run() : Stream of documents
}
interface DocumentFetcherFactory <<interface>> {
{abstract} buildDocumentFetcherForQuery(query): DocumentFetcher
}
class DynamodbQueryDocumentFetcher{
queryRequest
{abstract} run() : Stream of documents
}
class DynamodbScanDocumentFetcher{
scanRequest
{abstract} run() : Stream of documents
}
class DynamodbDocumentFetcherFactory{
buildDocumentFetcherForQuery(query): DocumentFetcher
}
DocumentFetcher <|.... DynamodbQueryDocumentFetcher
DocumentFetcher <|.... DynamodbScanDocumentFetcher
DocumentFetcherFactory <|.. DynamodbDocumentFetcherFactory
DynamodbDocumentFetcherFactory ---> DynamodbQueryDocumentFetcher: <<create>>
DynamodbDocumentFetcherFactory ---> DynamodbScanDocumentFetcher: <<create>>
@enduml
| false | true | false | false | sequence |
110bc4c8da1e34ad5b58594cfdc51a6f54bc7068 | 1bc5bec4d5a6c3b4552a4fe5b0d2c10b71f0c4a6 | /BankAccountSystem-ref/classDiagram.puml | 5f4f846cea4f9ef0259f535d0483d98b71e0b72d | [] | no_license | thomasbroussard/2018s1_fund | 8c28ace2ba5c1338435de3172930b1346f3a3cda | b63a5ec2c2b3cf10d0fcf3637c519eb3925a3817 | refs/heads/master | 2021-06-11T02:01:14.798173 | 2018-06-26T18:04:43 | 2018-06-26T18:04:43 | 128,102,363 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 536 | puml | @startuml
class Customer{
- String name
- String address
}
class Account{
- Double balance
}
class Stock{
- String name
- Double unitPrice
}
class InvestmentAccount{
+ buyStock(Stock stock,Integer qty)
}
class SavingsAccount{
- Double interrestRate
}
class StockOrder{
- Integer quantity
- Double ticker
}
InvestmentAccount --|> Account
SavingsAccount --|> Account
Stock "1" --o "*" StockOrder
InvestmentAccount "1" --o "*" StockOrder
Customer "1" --* "*" Account
@enduml | false | true | false | false | class |
7bd6f4b14a6698d5a585e3be95a9d230c271da26 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductAddExternalImageAction.puml | 8990eff5d5e00bacba3d340f0de5d60fa88815fd | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 520 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface ProductAddExternalImageAction [[ProductAddExternalImageAction.svg]] extends ProductUpdateAction {
action: String
variantId: Long
sku: String
image: [[Image.svg Image]]
staged: Boolean
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
ba484963db1a6528094f1ea42cc1015b94332005 | f7eda2d9047da713b3d65a8a179a3a77cd10ba39 | /Server/docs/sequence/enroll.puml | fba6095b25235109a57a1d9818252fafae18dc6b | [
"Apache-2.0"
] | permissive | abhijeet-gandhi/remote-execution | 66bd5a4652eacbfc0f338954568648e77b5e10b8 | bba0bfeebc912c3ed3d26ad574dcde9282821741 | refs/heads/main | 2023-04-12T13:54:33.457006 | 2021-05-06T08:34:32 | 2021-05-06T08:34:32 | 364,804,529 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 405 | puml | title Enroll
skinparam monochrome true
skinparam backgroundColor #fefefe
participant Agent
participant Server
participant DB
Agent -> Server: FQDN and TLS, register
Server --> DB: Register Agent, status awaiting user approval
DB --> Server: Confirmation
Server --> Agent: Awaiting User approval
User -> Server: Approve Agent enrollement
Server --> Server: Signs Agent TLS
Server --> User: Confirmation
| false | true | false | false | sequence |
540a1528110e5a13b210fb6d20c833279370b9bf | 6153f22ccad5e550ec60e6465d77bd7088174144 | /DesignPattern/DecoratorPattern/uml/uml.puml | 2dfe48029000351e5344ddaae08431e7fd1a77f0 | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | zwxbest/Demo | a5093d4e82b269d200d23a7a390e299334301917 | 16ce40b63907d52d65ad93fba6a793847911d216 | refs/heads/master | 2023-06-08T17:15:27.688512 | 2022-03-03T03:53:31 | 2022-03-03T03:53:31 | 123,203,277 | 1 | 7 | MIT | 2023-05-26T22:15:03 | 2018-02-27T23:52:55 | Roff | UTF-8 | PlantUML | false | false | 607 | puml | @startuml
abstract class Finery{
# Finery compoent
+ void Decorate(Finery)
+ show(){compoent.show()}
}
together {
class LeatherShoes{
+ show(){>>"BigTrouser";super.show()}
}
class BigTrouser
class Suit
class Sneakers
class Tie
class TShirts
}
class Main
Finery*-up-|>Finery
Finery-up..>Finery
LeatherShoes-up-|>Finery
Sneakers-up-|>Finery
BigTrouser-up-|>Finery
Suit-up-|>Finery
Tie-up-|>Finery
TShirts-up-|>Finery
Main..-up>Finery
Main..-up>Sneakers
Main..-up>BigTrouser
Main..-up>Suit
Suit..-up>Finery:1.Decorate(Finery)
BigTrouser..-left>Suit:2
Sneakers..-left>BigTrouser:3
@enduml | false | true | false | false | class |
305785b2b22642c8b20d300c556b0dd101052988 | a7f8d8e116a9f42a87389cb344ca347d3e7e6893 | /libs/core/src/storage/docs/diagrams/src/StorageModel.puml | d2752b6b7e6b6e33590db5f9970076ed8a73b1ea | [] | no_license | gammaper-devop/claro_crm_reportes | e3fc36baeb5c9f3be248b849a888e966254fb060 | 28ded2b48d7331deb80823cdf4b7e7faa5377812 | refs/heads/master | 2023-08-16T20:25:01.587208 | 2021-09-25T02:34:56 | 2021-09-25T02:34:56 | 402,591,385 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,827 | puml | @startuml StorageModel
enum EStorageType {
LOCAL = 'local',
SESSION = 'session',
MEMORY = 'memory',
}
interface IStorage {
set(key: string, value: any): void
get(key: string): any
remove(key: string): void
clear(): void
}
interface IStorageConfig {
secretKey: string
storageType?: EStorageType
i18nLang?: string
}
interface IMessages {
invalid_storage_type: string
key_not_found: string
secret_key_not_found: string
}
abstract class BrowserStorageManager implements IStorage {
+ config: IStorageConfig
# encryptor: EncryptionManager
# messages: IMessages
# windowStorage?: Storage
+ constructor(config: IStorageConfig)
+ get(key: string): string
+ set(key: string, value: any): void
+ clear(): void
+ remove(key: string): void
}
abstract class MemoryStorageManager implements IStorage {
+ config: IStorageConfig
# encryptor: EncryptionManager
# memoryStorage = new Map()
# messages: IMessages
+ constructor(config: IStorageConfig)
+ get(key: string): any
+ set(key: string, value: any): void
+ clear()
+ remove(key: string): void
}
class LocalStorage extends BrowserStorageManager {
+ windowStorage: Storage = window.localStorage;
}
class MemoryStorage extends MemoryStorageManager {
+ memoryStorage = new Map<string, string>();
}
class SessionStorage extends BrowserStorageManager {
+ windowStorage: Storage = window.sessionStorage;
}
class StorageFactory {
+ StorageFactory(config: IStorageConfig): IStorage;
}
class StorageBuilder {
+ constructor(storage: IStorage, config: IStorageConfig) {}
+ getStorage(): IStorage
}
LocalStorage <---o StorageBuilder : <<To LocalStorages>>
SessionStorage <---o StorageBuilder : <<To SessionStorages>>
StorageFactory ..> StorageBuilder : <<use>>
StorageFactory ..> MemoryStorage : <<use>>
@enduml
| false | true | false | false | class |
73b2cd55ecbc07c0ecc196d9b321fb7ad873db3b | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /06classdiagram/50_classdiagram_association_reverse.puml | 313a127df7b3e7661c2916064a609c72520ef869 | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 426 | puml | '
'ClassDiagrams: Association classes
'
'You can define association class after that a relation has been defined between two classes,
'like in this example:
'
'--: reverse association horizontally
'..: multiple association
'--------------------------------------
'
@startuml
class Student {
Name
}
class Enrollment {
drop()
cancel()
}
Student "0..*" -- "1..*" Course
(Student, Course) .. Enrollment
@enduml | false | true | false | false | class |
f86afc8dbe172945423d930445ac9bea4abe7a6c | 758c81ef98d8be2221e22ed1ebb90bff4edad0f4 | /component-overview.puml | 6c5f22608c9c46f73cf88a735a8ab8e2800c9c1e | [] | no_license | rasmusjelsgaard/compatriot-spec | ae55019e261b1e9e07eb0dfceb9bdb502a1160af | 5c119aab5427bd051cc7b0fe12152ac1f716d4bd | refs/heads/master | 2020-08-04T08:30:30.974221 | 2019-10-09T07:06:42 | 2019-10-09T07:06:42 | 212,073,177 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 431 | puml | ```plantuml
@startuml Component overview
package "compatriot-web" {
[http-server]
}
package "compatriot-cli" {
[auto-completer]
[params-parser]
}
package "compatriot-persistence" {
[redis-client]
[data-access]
}
package "lib-compatriot" {
[parser]
[lexer]
}
[http-server] --> [lexer]
[params-parser] --> [lexer]
[auto-completer] --> [lexer]
[lexer] --> [parser]
[parser] --> [data-access]
@enduml
```
| false | true | false | false | uml-unknown |
8dd054f8a782b4db86a4ca3bac49e282b548a2df | eee65bdd4128eeedc3271601006ed5739b43bd67 | /uml/ocp_step_one.puml | 88d9d156cab7f5485885590d24a687fb76b3d1dd | [] | no_license | argh87/bachelorthesis | 25e8443e61233a628a12a6207f20b0a8319c3cf5 | 9f8a463b455b6e84f67a424ebf5efc2507bc3ebc | refs/heads/master | 2023-04-14T08:47:44.757939 | 2021-04-12T08:32:34 | 2021-04-12T08:32:34 | 345,094,877 | 0 | 1 | null | 2021-04-12T08:32:35 | 2021-03-06T13:01:32 | TeX | UTF-8 | PlantUML | false | false | 100 | puml | @startuml
class PdfExporter
PdfExporter -> MovieCollector
MovieCollector -> MovieRepository
@enduml
| false | true | false | false | class |
16ad731a7f374e148dcaca068bcae8e4cd0a8fe4 | 220a9488453befbd410f5f7ac830b27c87539aca | /cli/uml/sequence_diagrams/rooms_searching_sequence.puml | 0c4482929a76502a58cd18fbee5bc13183a69253 | [] | no_license | ktvcv/hotel-project | 5156d9d395152a884095b8d03174a12261e6bd02 | 14ace34aa8f38394235dd09746c8a9582fd99e1c | refs/heads/master | 2023-04-28T09:17:36.141309 | 2020-12-09T17:17:37 | 2020-12-09T17:17:37 | 250,385,675 | 0 | 1 | null | 2023-04-14T17:44:03 | 2020-03-26T22:28:22 | Java | UTF-8 | PlantUML | false | false | 518 | puml | @startuml
actor Guest
boundary ViewComponent
control Controller
boundary ReservationService
boundary IHotelRepository
database Database
Guest->SearchingRoomViewComponent:Input dni of guest
SearchingRoomViewComponent->Controller: getReservationData
Controller->ReservationService: checkForGuestExisting
ReservationService->Database: requestForCheck()
Database->Controller: responseWithAnswer
Controller->ViewComponent: redirecting to addPaymentMethod()
Controller->ViewComponent: redirecting to registration()
@enduml | false | true | false | false | sequence |
4bbde09083efd069ba01fbb5d725ebf15cec52bc | 328ad53d13281389d3fbf7aef294ec1f4080c297 | /docs/responder-sequence.puml | ec7fc868bc80f652a230d47334210736ddb03a1e | [
"Apache-2.0",
"MIT"
] | permissive | jimpick/go-graphsync | 8fc83ad2b1c6e8e0b5c367b94268062d1874138d | 1bdc5585248c9c77b82473ee2d05a4cd6e25db19 | refs/heads/master | 2023-02-02T16:07:37.271810 | 2020-12-17T18:21:23 | 2020-12-17T18:21:23 | 301,290,968 | 0 | 0 | NOASSERTION | 2020-10-05T04:22:39 | 2020-10-05T04:16:20 | null | UTF-8 | PlantUML | false | false | 3,576 | puml | @startuml Responding To A Request
participant "GraphSync\nTop Level\nInterface" as TLI
participant ResponseManager
participant "Query Workers" as QW
participant PeerTaskQueue
participant PeerTracker
participant PeerResponseManager
participant PeerResponseSender
participant LinkTracker
participant ResponseBuilder
participant IPLD
participant "Intercepted Loader" as ILoader
participant Loader
participant "Message Sending\nLayer" as Message
== Initialization ==
TLI -> ResponseManager ** : Setup
ResponseManager -> QW ** : Create
activate QW
TLI -> PeerTaskQueue ** : Setup
TLI -> PeerResponseManager ** : Setup
== Responding To Request ==
par
loop until shutdown
note over TLI : Request Queueing Loop
TLI -> ResponseManager : Process requests
alt new request
ResponseManager -> PeerTaskQueue : Push Request
PeerTaskQueue -> PeerTracker ** : Create for peer\n as neccesary
PeerTaskQueue -> PeerTracker : Push Request
ResponseManager -> ResponseManager : Create Request Context
else cancel request
ResponseManager -> ResponseManager : Cancel Request Context
end
end
else
par
loop until shutdown
note over QW: Request Processing Loop
QW -> PeerTaskQueue : Pop Request
PeerTaskQueue -> PeerTracker : Pop Request
PeerTracker -> PeerTaskQueue : Next Request\nTo Process
PeerTaskQueue -> QW : Next Request\nTo Process
QW -> IPLD : DecodeNode
IPLD -> QW : Selector Spec Node
QW -> IPLD : ParseSelector
IPLD -> QW : Root Node, IPLD Selector
QW -> PeerResponseManager : SenderForPeer
PeerResponseManager -> PeerResponseSender ** : Create for peer\nas neccesary
PeerResponseSender -> LinkTracker ** : Create
PeerResponseSender -> QW : PeerResponseSender
activate PeerResponseSender
QW -> ILoader ** : Create w/ RequestID, PeerResponseSender, Loader
QW -> IPLD : Start Traversal Of Selector
loop until traversal complete or request context cancelled
note over PeerResponseSender: Selector Traversal Loop
IPLD -> ILoader : Request to load blocks\nto perform traversal
ILoader -> Loader : Load blocks\nfrom local storage
Loader -> ILoader : Blocks From\nlocal storage or error
ILoader -> IPLD : Blocks to continue\n traversal or error
ILoader -> PeerResponseSender : Block or error to Send Back
activate PeerResponseSender
PeerResponseSender -> LinkTracker : Notify block or\n error, ask whether\n block is duplicate
LinkTracker -> PeerResponseSender : Whether to\n send block
PeerResponseSender -> ResponseBuilder ** : Create New As Neccesary
PeerResponseSender -> ResponseBuilder : Aggregate Response Metadata & Block
PeerResponseSender -> PeerResponseSender : Signal Work To Do
deactivate PeerResponseSender
end
IPLD -> QW : Traversal Complete
QW -> PeerResponseSender : Request Finished
activate PeerResponseSender
PeerResponseSender -> LinkTracker : Query If Errors\n Were Present
LinkTracker -> PeerResponseSender : True/False\n if errors present
PeerResponseSender -> ResponseBuilder : Aggregate request finishing
PeerResponseSender -> PeerResponseSender : Signal Work To Do
deactivate PeerResponseSender
end
else
loop until shutdown / disconnect
note over PeerResponseSender: Message Sending\nLoop
PeerResponseSender -> PeerResponseSender : Wait For Work Signal
...
PeerResponseSender -> ResponseBuilder : build response
ResponseBuilder -> PeerResponseSender : Response message data to send
PeerResponseSender -> Message : Send response message data
activate Message
Message -> PeerResponseSender : Channel For When Message Processed
...
Message -> PeerResponseSender : Notification on channel
deactivate Message
end
deactivate PeerResponseSender
end
deactivate QW
end
@enduml | false | true | false | false | sequence |
c789590316786e22148e13c071b83cc01cf45e89 | 9ab835c647068cadd2c7d0472a8d039c9e71cf20 | /Design/Class.puml | 3587de6f82a10d1e1f3e78860815b6c04d19eef9 | [] | no_license | Hengle/UIMaster | a6ee8958c408ca880e5b02e33326e3fedf33475f | ee4bb9f13549c8e208654bfac375a5b5173376f0 | refs/heads/master | 2020-04-01T20:50:56.576733 | 2017-09-10T13:57:20 | 2017-09-11T15:31:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,299 | puml | @startuml
CustomUIViewController *-- CustomUIView
CustomUIView <|-- UIView
class CustomUIView{
}
class CustomUIViewController{
+ CustomUIView view
+ Destory()
}
CustomUIViewController <|-- UIViewController
interface UIViewContorllerInterface{
+ UIViewControllerDidLoad()
+ OnShowView()
+ OnHideView()
+ OnCloseView()
}
UIViewController <|-- UIViewContorllerInterface
class UIViewController {
+ UIView view
+ string viewPrefabPath
+ {virtual} OnShowView()
+ {virtual} OnHideView()
+ {virtual} OnCloseView()
}
interface UIViewInterface{
+ InitView()
+ ShowView()
+ HideView()
+ CloseView()
}
UIViewController *-- UIView
UIView <|-- MonoBehaviour
UIView <|-- UIViewInterface
class UIView{
+ {virtual} InitView()
+ {virtual} ShowView()
+ {virtual} HideView()
+ {virtual} CloseView()
}
UIMaster "1" o-- "many" UIViewController : controls
class UIMaster {
--private region--
- mUIStack
- mStashUIStack
- OnDestory()
--public region--
+ {static} UIMaster Instance
+ Pop(UIViewController viewcontroller)
+ Push(UIViewController viewcontroller, UIType type)
+ Stash(UIViewController viewcontroller)
+ Clear()
}
class UIDataMaster{
}
enum UIType{
Overlay
Replace
}
@enduml
| false | true | false | false | class |
a04123b09d3e7774c445ff0359ca616c156011db | 409baf50fa5597d1a4890ad0204172a2302d3430 | /actors/stage/src/main/java/com/ea/orbit/actors/net/channelSequence.puml | 942da9eeac30272f67fbba5723e37061abbef62c | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | Jedmond/orbit | 98be7b37ef6e8c298da5e3ad8ee66ceb2905bb0f | 852c9e3656ac700c2d65f01d4522d419c0631721 | refs/heads/master | 2020-12-28T22:53:56.214302 | 2015-11-10T04:29:02 | 2015-11-10T04:29:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 709 | puml | @startuml
activate Handler_1
Handler_1 -> Handler_1 : ctx1.fireWrite
Handler_1 --> Handler_2 : onWrite
deactivate Handler_1
activate Handler_2
Handler_2 -> Handler_2 : ctx2.fireWrite
Handler_2 --> Handler_3 : onWrite
deactivate Handler_2
activate Handler_3
Handler_3 -> Handler_3 : ctx3.fireWrite
Handler_3 --> Connection : onWrite
deactivate Handler_3
activate Connection
Connection -> Connection : ctx4.fireRead
Connection --> Handler_3 : onRead
deactivate Connection
activate Handler_3
Handler_3 -> Handler_3 : ctx3.fireRead
Handler_3 --> Handler_2 : onRead
deactivate Handler_3
activate Handler_2
Handler_2 -> Handler_2 : ctx2.fireRead
Handler_2 --> Handler_1 : onRead
deactivate Handler_2
@enduml | false | true | false | false | sequence |
fce8215ee5875cbfdbb94112091c5b150860d25a | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1161386/sp2/design1.puml | bd0da0ac17eab8a81f88bb00b728ec779720e864 | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,210 | puml | @startuml design1.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
boundary newNotePageView
control newNotePagePresenter
control NoteService
control NoteServiceImpl
control NoteController
entity NoteRepository
entity UserRepository
database Database
box "NSheets Client"
participant newNotePageView
participant newNotePagePresenter
end box
box "Server"
participant NoteServiceImpl
participant NoteController
participant NoteService
participant UserRepository
participant NoteRepository
end box
box "Database"
participant Database
end box
User -> newNotePagePresenter : onClick() / On button click
newNotePagePresenter ->> NoteServiceImpl: createNote(NoteDTO dto)
NoteServiceImpl -> NoteController : createNote(NoteDTO dto)
NoteController -> UserRepository: User user = getUserByUsername(CurrentUser.username())
NoteController -> NoteService : createNote(NoteDTO dto, User user)
NoteService -> NoteRepository : save(Note)
NoteRepository -> Database : save
NoteController ->> newNotePagePresenter : onSuccess()
newNotePagePresenter -> newNotePageView : refreshNotes() / Informs success
@enduml | false | true | false | false | usecase |
ae179121931a16b6956d19166449c6b32e4f4733 | 917f7524046ed086a97d0aeb39ff694bc707598c | /ProjetACL-master/ProjetACL/src/controleur/controleur.plantuml | 995707ed40e5c4e0aff26034e83c40bdc987918b | [] | no_license | h-wb/s7-acl | ff5797db723abb1773e49cb3982f0ba59ac2ed5a | b04e4849944e28077fa8f461d36b431a51c9b9af | refs/heads/master | 2020-04-10T13:04:09.215000 | 2019-03-16T12:51:24 | 2019-03-16T12:51:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,182 | plantuml | @startuml
title __CONTROLEUR's Class Diagram__\n
package controleur {
class GererFichier {
- fichierALire : String
+ GererFichier()
+ lire()
+ EcrireFichier()
}
}
package controleur {
class Jeu {
- tour : int
+ Jeu()
+ getTour()
+ setTour()
+ getJ()
+ setJ()
+ tirerCarte()
+ Joue()
}
}
package controleur {
class Joueur {
- pseudo : String
+ Joueur()
+ getPseudo()
+ setPseudo()
+ getScore()
}
}
package controleur {
class Outils {
{static} ~ arrayCateg : String[]
{static} ~ arrayValeur : String[]
{static} + getRandomCateg()
{static} + getRandomValeur()
}
}
package controleur {
class Score {
- valeur : int
+ Score()
+ getValeur()
+ setValeur()
}
}
Jeu o-- Joueur : j
Joueur o-- Score : score
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
8ee8b0eedea89361737808a9c0d385973acd57a0 | aedec23132eabce8e05ee4a0c773b86b470ab0f1 | /Diagrams/SequenceDiagrams/seq-prepare-1.1.1.b.plantuml | de8b8958caac8fb8605b7e7ae1dbd9f8a8d1c3fd | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | arfintechpy/docs | 465ef01f8bcf8201c7dd36033a4970886e40d09a | 305a593be2ecd3f470dd6e199ef5656a2c746355 | refs/heads/master | 2020-04-20T22:03:45.265174 | 2019-02-01T08:00:32 | 2019-02-01T08:00:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,897 | plantuml | @startuml
' declate title
title 1.1.1.b. Prepare Handler Consume (batch messages)
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
collections "Prepare-Topic-dfsp1" as TOPIC_PREPARE_DFSP1
control "Prepare Event Handler" as PREP_HANDLER
collections "Position-Topic-dfsp1" as TOPIC_POSITION_DFSP1
collections "Event-Topic" as TOPIC_EVENTS
collections "Notification-Topic" as TOPIC_NOTIFICATIONS
entity "Transfer DAO" as TRANS_DAO
entity "Participant DAO" as PARTICIPANT_DAO
database "Central Store" as DB
box "Central Service" #LightYellow
participant TOPIC_PREPARE_DFSP1
participant PREP_HANDLER
participant TOPIC_POSITION_DFSP1
participant TOPIC_EVENTS
participant TOPIC_NOTIFICATIONS
participant TRANS_DAO
participant PARTICIPANT_DAO
participant DB
end box
' start flow
activate PREP_HANDLER
group Prepare Handler Consume
TOPIC_PREPARE_DFSP1 <- PREP_HANDLER: Consume Prepare event batch of messages for Payer
activate TOPIC_PREPARE_DFSP1
deactivate TOPIC_PREPARE_DFSP1
group Persist Event Information
|||
PREP_HANDLER -> TOPIC_EVENTS: Publish event information
ref over PREP_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/develop/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0.]]} \n
|||
end
group Fetch batch Payer information
PREP_HANDLER -> PARTICIPANT_DAO: Request to retrieve batch of Payer Participant details (if it exists)
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Request Participant details
hnote over DB #lightyellow
participant
end note
activate DB
PARTICIPANT_DAO <-- DB: Return Participant details if it exists
deactivate DB
PARTICIPANT_DAO --> PREP_HANDLER: Return Participant details if it exists
deactivate PARTICIPANT_DAO
PREP_HANDLER <-> PREP_HANDLER: Validate Payer
PREP_HANDLER -> PREP_HANDLER: store result set in var: $LIST_PARTICIPANTS_DETAILS_PAYER
end
group Fetch batch Payee information
PREP_HANDLER -> PARTICIPANT_DAO: Request to retrieve batch of Payee Participant details (if it exists)
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Request Participant details
hnote over DB #lightyellow
participant
end note
activate DB
PARTICIPANT_DAO <-- DB: Return Participant details if it exists
deactivate DB
PARTICIPANT_DAO --> PREP_HANDLER: Return Participant details if it exists
deactivate PARTICIPANT_DAO
PREP_HANDLER <-> PREP_HANDLER: Validate Payee
PREP_HANDLER -> PREP_HANDLER: store result set in var: $LIST_PARTICIPANTS_DETAILS_PAYEE
end
group Fetch batch of transfers
PREP_HANDLER -> TRANS_DAO: Request to retrieve batch of Transfers (if it exists)
activate TRANS_DAO
TRANS_DAO -> DB: Request batch of Transfers
hnote over DB #lightyellow
transfer
end note
activate DB
TRANS_DAO <-- DB: Return batch of Transfers (if it exists)
deactivate DB
TRANS_DAO --> PREP_HANDLER: Return batch of Transfer (if it exists)
deactivate TRANS_DAO
PREP_HANDLER -> PREP_HANDLER: store result set in var: $LIST_TRANSFERS
end
loop for each message in batch
group Validate Prepare Transfer
group Validate Payer
PREP_HANDLER <-> PREP_HANDLER: Validate Payer against in-memory var $LIST_PARTICIPANTS_DETAILS_PAYER
end
group Validate Payee
PREP_HANDLER <-> PREP_HANDLER: Validate Payee against in-memory var $LIST_PARTICIPANTS_DETAILS_PAYEE
end
group Duplicate check
PREP_HANDLER <-> PREP_HANDLER: Validate duplicate Check against in-memory var $LIST_TRANSFERS
end
PREP_HANDLER <-> PREP_HANDLER: Validate amount
PREP_HANDLER <-> PREP_HANDLER: Validate crypto-condition
PREP_HANDLER <-> PREP_HANDLER: Validate message signature (to be confirmed in future requirement)
end
group Persist Transfer State (with transferState='RECEIVED' on validation pass)
PREP_HANDLER -> TRANS_DAO: Request to persist transfer
activate TRANS_DAO
TRANS_DAO -> DB: Persist transfer
hnote over DB #lightyellow
transferStateChange
end note
activate DB
deactivate DB
TRANS_DAO --> PREP_HANDLER: Return success
deactivate TRANS_DAO
end
note right of PREP_HANDLER #yellow
Message:
{
id: <transferMessage.transferId>
from: <transferMessage.payerFsp>,
to: <transferMessage.payeeFsp>,
type: application/json
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
responseTo: <previous.uuid>,
type: position,
action: prepare,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
PREP_HANDLER -> TOPIC_POSITION_DFSP1: Route & Publish Position event for Payer
activate TOPIC_POSITION_DFSP1
deactivate TOPIC_POSITION_DFSP1
end
end
deactivate PREP_HANDLER
@enduml
| false | true | false | false | sequence |
249ab1223553359193755b7150c24e98f5cb5c20 | c800a9e50329b7396684ae18c153bae04446d17a | /docs/testsResults/T06_Should_create_note_on_relation.puml | 098b5a4f4dc80b133d02ab89c73d15e5b5c70d41 | [
"Apache-2.0"
] | permissive | isukces/AutoUml | 5cae179ab7db7042d5b59960cb5aac3bb13522a1 | d4a64c9d6d05ac55e195425f45f11080cd294755 | refs/heads/master | 2023-09-01T05:31:23.658558 | 2023-08-19T14:26:18 | 2023-08-19T14:26:18 | 142,751,263 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | puml | @startuml
title
Diagram Test
end title
class Order #ff0000
{
}
class OrderItem
{
}
Order --{ OrderItem:Items
note on link #aqua/aliceblue
Note on rel
end note
@enduml
| false | true | false | false | class |
b3fe77ec00836afb118c941b7b6928657884ed29 | ed0c891d32880da75653a851ed37afc1cc752c91 | /uml/sequence.puml | 107f89131c837ce440ab34578dbb5181fa4e9575 | [] | no_license | mohamed-hamdi/BestiolesProject | 0c77d74c4eac8e4c8fe0ddea2a093a537931fa93 | 24532c3c2924dfa6f2c3058662902cb4ae8d97eb | refs/heads/master | 2023-03-25T07:49:42.776057 | 2021-03-24T17:54:24 | 2021-03-24T17:54:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 888 | puml | @startuml sqeuencediagramm
participant main
participant Aquarium
participant Milieu
participant BestoileFactory
participant Sensor
participant Behaviour
participant Accessoire
participant Bestoile
main --> Aquarium: <<create>>
Aquarium --> Milieu: <<create>>
main --> BestoileFactory: <<create>>
main -> BestoileFactory: BestoileFactory.createBestoile(selectedBehav, selectedSens, selectedAcc)
note right: needs to specify characteristics from enums. Abbreviated for readability.
BestoileFactory --> Sensor: <<create>>
BestoileFactory --> Behaviour: <<create>>
BestoileFactory --> Accessoire: <<create>>
BestoileFactory --> Bestoile: <<create>>
Bestoile --> BestoileFactory: shared_ptr<Bestiole>
BestoileFactory -> BestoileFactory: setCoords(x, y)
Milieu -> Milieu: addMember(shared_ptr<Bestiole>)
BestoileFactory --> main: shared_ptr<Bestiole>
@enduml | false | true | false | false | sequence |
44434ed7c6fec2aaaff0d6ebccb79c6a66bbb2b4 | 663bb72bc9faca1c0e35c416debbe9609e0974cb | /Aufgabe_3/main.puml | 363d38148fd654275ec127cefaed4a2c18d54fea | [] | no_license | JayTee42/SoftwareentwicklungSoSe2020_Aufgabe_04 | 7a3c03d4d9d0bb12e16da308a0fdb7d0872ae0e7 | 6de1b0a7d0bfc08906351a0c71e33a36818c2d6e | refs/heads/master | 2022-10-22T16:09:20.513882 | 2020-06-15T15:50:38 | 2020-06-15T15:50:38 | 268,763,141 | 0 | 0 | null | 2020-06-02T09:53:06 | 2020-06-02T09:53:05 | null | UTF-8 | PlantUML | false | false | 1,016 | puml | @startuml
enum PhoneState
{
off,
on,
unknown
}
enum ConnectionState
{
connected,
offline
}
interface Credential {}
class AppleID {}
class GoogleAccount {}
AppleID ..|> Credential
GoogleAccount ..|> Credential
interface Store {}
class AppStore {}
class PlayStore {}
AppStore ..|> Store
PlayStore ..|> Store
abstract class Smartphone
{
+ PhoneNumber: string << get >>
+ makeACall(phoneNumber: string)
+ receiveACall(incomingNumber: string)
+ {abstract} getOS(): string
}
Smartphone "<< get >>" *-- PhoneState
Smartphone "<< get >>" *-- ConnectionState
Smartphone -- Credential
Smartphone -- Store
class ApplePhone
{
}
ApplePhone --|> Smartphone
ApplePhone -- AppleID
ApplePhone -- AppStore
abstract class AndroidPhone
{
{abstract} RunVendorSpecificLocalization()
}
AndroidPhone --|> Smartphone
AndroidPhone -- GoogleAccount
AndroidPhone -- PlayStore
class SonyPhone {}
class NokiaPhone {}
SonyPhone --|> AndroidPhone
NokiaPhone --|> AndroidPhone
hide empty members
@enduml
| false | true | false | false | class |
c684cde78b41e946123dc5bf315c1ec7950d0633 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QuoteRequestResourceIdentifier.puml | 0c6aa1a278df8f6089a2c2f5f86dd1a72345af6d | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,257 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface QuoteRequestResourceIdentifier [[QuoteRequestResourceIdentifier.svg]] extends ResourceIdentifier {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface ResourceIdentifier [[ResourceIdentifier.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface QuoteRequestResourceIdentifier [[QuoteRequestResourceIdentifier.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface StagedQuoteDraft [[StagedQuoteDraft.svg]] {
quoteRequest: [[QuoteRequestResourceIdentifier.svg QuoteRequestResourceIdentifier]]
quoteRequestVersion: Long
quoteRequestStateToAccepted: Boolean
key: String
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
state: [[StateReference.svg StateReference]]
}
QuoteRequestResourceIdentifier --> QuoteRequestResourceIdentifier #blue;text:blue : "typeId : quote-request"
QuoteRequestResourceIdentifier --> StagedQuoteDraft #green;text:green : "quoteRequest"
@enduml
| false | true | false | false | sequence |
7ad1f1d2fceb1e78e16d04a2261a78be2d2036df | 81fce1effd3c5da8bda86bcc7986bb47baf4f597 | /order-service/src/main/java/com/dmall/order/domain/OrderStateMachine.puml | b5dc5b4b3c9849f14460a0e9197b56f9e3d4907d | [] | no_license | jlhuangliang/spring-cloud-sfsm | 317dae37f8fd3218171d77092b18f1cb59bd00ef | 338a5f98368db1c7c28ec0d9ee4b29a9db57b0e1 | refs/heads/master | 2020-05-02T14:10:19.764018 | 2019-03-27T13:46:02 | 2019-03-27T13:46:02 | 178,002,948 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 333 | puml | @startuml
scale 450 width
title Order state machine
[*] --> Created
Created -> Paid : notify paid
Created --> Cancelled : cancel order
Cancelled --> [*]
Paid -> InDelivery : article shipped
InDelivery --> Received : sign for
Received --> Confirmed : confirm order
Confirmed --> [*]
center footer Generated for demonstration
@enduml | false | true | false | false | sequence |
49d59e80c4c77f2c3614a1b442242596a83b47e3 | 5cf36a3143d1d36d4594d6adeea847fd8df9c034 | /src/main/java/oop/assignment3/ex42/base/ParseDataFile.puml | dbe8f31e0f7415e9eedd5e25902cb02af9d78b77 | [] | no_license | GabrielFernandez14/fernandez-cop3330-assignment3 | 0b32cb5ff817068da681cfebf0b7d071e6e8f56f | 567e68bb023b37e8be9801a6a4797927b2c3fc65 | refs/heads/master | 2023-06-04T12:29:26.441441 | 2021-06-21T00:39:50 | 2021-06-21T00:39:50 | 377,873,844 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 209 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Main {
+ output: String
+ printTable: output
}
class ParseDataFile {
+ getTable()
}
Main --|> ParseDataFile
ParseDataFile o--> Main
@enduml | false | true | false | false | class |
ae68b911bb87a17054fef80fbaadc6c0d9649619 | 510356d099fc0d0ae2e5bc6456b61820ab379ad3 | /src/com/arijeet/design/behavior/pattern/command/command.plantuml | 82a5bf31683ab9952e03f95f2ba7c9183d3d6ca3 | [] | no_license | arijeetsaha/java-design-patterns | 19156a379689d1dde2c7e75d997c84ea84b2f019 | 9c30808bc9be34092d5f6257fbfd9ed995848a50 | refs/heads/master | 2022-11-20T05:20:27.467475 | 2020-07-22T20:27:53 | 2020-07-22T20:27:53 | 281,776,415 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,637 | plantuml | @startuml
title __COMMAND's Class Diagram__\n
namespace com.arijeet.design.pattern.command {
class com.arijeet.design.pattern.command.AddMemberCommand {
- distributionList : String
- emailAddress : String
+ AddMemberCommand()
+ execute()
}
}
namespace com.arijeet.design.pattern.command {
class com.arijeet.design.pattern.command.Client {
{static} + main()
}
}
namespace com.arijeet.design.pattern.command {
interface com.arijeet.design.pattern.command.Command {
{abstract} + execute()
}
}
namespace com.arijeet.design.pattern.command {
class com.arijeet.design.pattern.command.EWSService {
+ addMember()
+ removeMember()
}
}
namespace com.arijeet.design.pattern.command {
class com.arijeet.design.pattern.command.MailTasksRunner {
{static} - RUNNER : MailTasksRunner
- pendingCommands : List<Command>
- runner : Thread
- stop : boolean
+ addCommand()
{static} + getInstance()
+ run()
+ shutdown()
- MailTasksRunner()
}
}
com.arijeet.design.pattern.command.AddMemberCommand .up.|> com.arijeet.design.pattern.command.Command
com.arijeet.design.pattern.command.AddMemberCommand o-- com.arijeet.design.pattern.command.EWSService : receiver
com.arijeet.design.pattern.command.MailTasksRunner .up.|> java.lang.Runnable
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
90e468768d9764911ac9acba264b226715b6d9f1 | 1ab5a383796d8b67a1fcde45372e1b90da98d3a5 | /Midterm/app/UML/SystemSequenceDiagram.puml | 4741cb0b57f308fe54516c4919fec194d3dc2845 | [] | no_license | jacobvarner/comp3710 | cd8ab5497f9bbac353530a59aeee33cad426bd0a | aa3c093ea1a8d6ea7158fcd63f89560400414797 | refs/heads/master | 2021-01-10T10:31:32.632005 | 2016-05-01T19:10:45 | 2016-05-01T19:10:45 | 54,129,048 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 694 | puml | @startuml
User -> WordScrambler: Enter word
User -> WordScrambler: Press SCRAMBLE button
WordScrambler -> WordScrambler: Scramble words
WordScrambler -> HistoryDisplay: Add HistoryEntry
User <-- WordScrambler: Display first 5 words
User -> WordScrambler: Change number of words to display
User <-- WordScrambler: Display new number of words
User -> WordScrambler: Press NEXT button
User <-- WordScrambler: Display next words
User -> WordScrambler: Press PREV button
User <-- WordScrambler: Display previous words
User -> HistoryDisplay: Press HISTORY button
HistoryDisplay -> HistoryDisplay: Sort history into two columns
User <-- HistoryDisplay: Display history to user in two columns
@enduml | false | true | false | false | sequence |
c081a3fa6c00a4ff2bfbd499bb17c8e4014d499e | 4ef2a0d7b50e772e235e40bf33c1313a11e1d23a | /app/docs/asciidoc/models/AhdesionGroup.puml | f83162f20d5e0bfe5a328383c758e19abf270b0b | [
"Apache-2.0"
] | permissive | SefkanTas/Sonofy | 4cb768b9eed72f2e133c2ec5b814c70352f39b4c | f4d7875d5c4ed996ec9ecc7fdf15ea75706af23a | refs/heads/master | 2023-03-27T03:41:36.030113 | 2021-03-27T20:14:31 | 2021-03-27T20:14:31 | 297,685,348 | 3 | 5 | Apache-2.0 | 2021-03-27T20:14:32 | 2020-09-22T15:04:53 | Java | UTF-8 | PlantUML | false | false | 760 | puml | @startuml
actor User as g
participant "::AdhesionGroup " as act
participant ":: GroupeFirestore " as groupb
participant ":: Groupe " as group
g -> act: Acceder à un groupe privée
activate act
act -> g : Souhaitez vous faire une demande d'adhésion pour voir le groupe?
g -> act: Oui
act -> groupb : getGroupWithId(groupeId)
activate groupb
groupb --> act : return groupeId
deactivate groupb
act -> group : getWaitingApprovalUserId().add(currentUserId)
activate group
group --> act : canAccess(String userId) or refuseRequest(String userUid)
deactivate group
act -> groupb : getCollection().document(groupeId).update()
activate groupb
groupb --> act : ok
deactivate groupb
act --> g : Acces permis au groupe ou acces refusé au groupe
deactivate act
@enduml | false | true | true | false | usecase |
5d2e3c8d2f56e991b8cf5fe008b36e9f0d211a70 | 798c6888db8adb2530b324f6a5fcdf29e196cce8 | /app/src/uml/sequence/session.puml | efd3841dab14eca8e98c380a7f17a85ad3307533 | [] | no_license | ceejey/LetiTrip_Beta | a2897fb3dea8dae1f1625968d3b8f95ae3606e1a | beca1b76901c8de4c24a7835bebc8cbf84f56786 | refs/heads/master | 2021-01-10T13:28:16.295371 | 2016-03-18T19:33:38 | 2016-03-18T19:33:38 | 47,585,677 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,131 | puml | @startuml
MainActivity -> GPSService: bind
MainActivity <-- GPSService: gps
SessionOverview -> MainActivity:getGps
return gps
Session -> MainActivity:getGps
return gps
SessionDetail -> MainActivity:getGps
return gps
SessionOverview ->MainActivity: startService
MainActivity->GPSService: start
Activate GPSService
GPSService->PolarHandler: start
Activate PolarHandler
GPSService<--PolarHandler: pulse
GPSService->WeatherDatabase: getLatestWeather
GPSService<--WeatherDatabase: weather
GPSService->WattHandler: calcWatts(height, weight, time,..)
GPSService<--WattHandler: pMech
GPSService->WattHandler: calcKcal(pMech,passedTime)
GPSService<--WattHandler: kcal
GPSDatabase<-GPSService: addData(sessionID, lat, lon, alt, bicycle, pulse, speed, watt, calories)
GPSService-->Session: broadcast
GPSService-->SessionDetail: broadcast
GPSService-->MainActivity: broadcast
SessionOverview ->MainActivity: stopService
MainActivity ->GPSService: unbind
MainActivity ->GPSService: stop
Deactivate GPSService
GPSService->PolarHandler: stop
Deactivate PolarHandler
MainActivity ->GPSService: bind
MainActivity <-- GPSService: gps
@enduml | false | true | false | false | sequence |
22a9e3d40ce02b43c2289f427d1c617f0abc2697 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - analysis/rollcall/updateRollCall.plantuml | d2b29976465f285940ac3a0452f54c9afa5328b9 | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 956 | plantuml | @startuml updateRollCall
class RollCall <<entity>> {
id: bigint
classroom_member_id: bigint
date: date
is_presented: bool
created_at: datetime
updated_at: datetime
// create ()
// read ()
// delete ()
// update ()
// request make roll call ()
}
class ClassroomMember <<entity>> {
id: bigint
user_id: bigint
classroom_id: bigint
created_at: datetime
// create ()
// read ()
// delete ()
// update ()
// checking information is valid ()
}
class UpdateRollCallForm <<boundary>> {
// request update roll call ()
}
class StudentController <<controller>> {
// request update roll call ()
}
hide RollCall <<entity>> circle
hide UpdateRollCallForm <<boundary>> circle
hide StudentController <<controller>> circle
StudentController "1" -left- "1" RollCall
StudentController "1" -right- "1" ClassroomMember
StudentController "1" -down- "1" UpdateRollCallForm
@enduml
| false | true | false | false | class |
1632be4d36a7bf79d818b208d02fd54a4153b9d9 | fb84bca41a00746017b56791cc1900e4cb811be7 | /plantuml/Eats/Eat.puml | 7693cec12f580d5b154ce8136f8fcc48b9278818 | [] | no_license | MainCastle1212/EverythingEater_Main | 9b3622cc5cca5f78a411cfd7df61fbdec29a8856 | c228f75b78387aee448c6fbb2f3a362dccb724bd | refs/heads/main | 2023-01-12T07:33:38.139825 | 2020-11-12T10:01:22 | 2020-11-12T10:01:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 172 | puml | @startuml
class Eat {
Ratio : float
Time : float
Start() : void
+ TryEat(collision:Collision2D) : void
}
MonoBehaviour <|-- Eat
Eat --> "ease" Ease
@enduml
| false | true | false | false | class |
ffad3230079174f2f89d81e3fc8942f934b52e3b | 2b6941b92c50f4249cae69ba78da255f533addda | /ext/useCase/mentoringDemandManagement.puml | 298940881faef528a8d9c48ff5ac8df384062522 | [] | no_license | LBiasibetti/coopToolProject | 25c4d476c0a5f98e247078bfc47d80c21d56b163 | 271604fbefa294b0f3f1da26b5122c9252e4013d | refs/heads/master | 2023-02-12T03:59:20.248862 | 2021-01-12T17:58:39 | 2021-01-12T17:58:39 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 629 | puml | @startuml
left to right direction
:student: --> (create a mentoring demand)
:student: --> (delete a mentoring demand)
(send notification) <.. :system:
(delete a mentoring demand) ..> (send notification) : << include >>
:student: --> (update a mentoring demand)
(update a mentoring demand) <.. (validate the session) : << extend >>
:student: --> (view a mentoring demand)
:student: --> (answer a mentoring demand)
:admin: --> (view a mentoring demand)
:admin: --> (delete a mentoring demand)
(update a mentoring demand) ..> (send notification) : << include >>
(view a mentoring demand) <.. (search by topic) : << extend >>
@enduml | false | true | false | false | class |
06133321c420f01729ca4deed42ff8fd33174a25 | db30c89cdd73a338ef664e2342ebea4e617c9716 | /test/PlantUmlClassDiagramGeneratorTest/uml/public.puml | 735970ac3e5d90b681c2cf7448b797c18bc40b53 | [
"MIT"
] | permissive | Vivraan/PlantUmlClassDiagramGenerator | 33b4b4e5bf40d3173f7b6bc1f22631480633d709 | d5e4e571f7dbade27da465729bc09afc319fc646 | refs/heads/master | 2023-01-03T13:02:42.886516 | 2020-10-31T00:22:02 | 2020-10-31T00:22:02 | 291,209,572 | 1 | 0 | MIT | 2020-08-29T05:47:33 | 2020-08-29T05:47:32 | null | UTF-8 | PlantUML | false | false | 1,314 | puml | @startuml
class ClassA {
+ PropD : string <<get>>
+ ClassA()
{static} ClassA()
+ <<override>> ToString() : string
+ {static} StaticMethod() : string
+ ExpressonBodiedMethod(x:int) : void
}
abstract class ClassB {
+ {abstract} PropA : int <<get>> <<protected set>>
+ {abstract} AbstractMethod(arg1:int, arg2:double) : string
}
class ClassC <<sealed>> {
+ <<override>> PropA : int <<get>> <<protected set>> = 100
+ <<event>> PropertyChanged : PropertyChangedEventHandler
+ <<override>> AbstractMethod(arg1:int, arg2:double) : string
}
class Vector <<struct>> {
+ X : double <<get>>
+ Y : double <<get>>
+ Z : double <<get>>
+ Vector(x:double, y:double, z:double)
+ Vector(source:Vector)
}
enum EnumA {
AA= 0x0001,
BB= 0x0002,
CC= 0x0004,
DD= 0x0008,
EE= 0x0010,
}
class NestedClass {
+ A : int <<get>>
}
class "IList`1"<T> {
}
class InnerClass {
+ X : string <<get>> = "xx"
+ MethodX() : void
}
class InnerStruct <<struct>> {
+ A : int <<get>>
+ InnerStruct(a:int)
}
ClassB --> "publicA" ClassA
ClassB o-> "listOfA<ClassA>" "IList`1"
ClassB <|-- ClassC
INotifyPropertyChanged <|-- ClassC
ClassC --> "PropB" ClassB
NestedClass --> "B" InnerClass
NestedClass +-- InnerClass
InnerClass +-- InnerStruct
@enduml
| false | true | true | false | class |
663146e790d5bcac92d7a50c16209e967692efce | 3f0f1beb0020ef10c82e25f24f5ba1e6125d09e2 | /src/zhw/businessumls/HyTradeOfflineClient.puml | f52b113feb16db574833d0dcee77743459502036 | [] | no_license | ShepherdOutsidethefortres/JavaBase | 14995735a15d04529ea5fc487fea3aeac878a22c | f7b748ba4b808ba6bf9922718b6fa28615775fc0 | refs/heads/master | 2021-06-26T15:07:04.659964 | 2021-02-25T06:38:51 | 2021-02-25T06:38:51 | 211,585,121 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,511 | puml | @startuml
interface HyTradeOfflineClient{
+fetchInfo(HyTradeInfoReq):HyTradeResult<HyTradeInfoVO>
+submitOrder(HyTradeSubmitReq):HyTradeResult<HyTradeSubmitVO>
+pushOrder(HyTradeSubmitReq):HyTradeResult<HyTradeSubmitVO>
+renderInfo(HyTradeInfoReq):HyTradeResult<HyTradeRenderVO>
}
class HyTradeClientImpl{
-hyTradeInfoService:HyTradeInfoService
-hyTradeRenderService:HyTradeRenderService
-hyTradeSubmitService:HyTradeSubmitService
-hyPromotionRPCService:HyPromotionRPCService
-wmMiddleRPCService:WmMiddleRPCService
+fetchInfo(HyTradeInfoReq):HyTradeResult<HyTradeInfoVO>
+submitOrder(HyTradeSubmitReq):HyTradeResult<HyTradeSubmitVO>
+pushOrder(HyTradeSubmitReq):HyTradeResult<HyTradeSubmitVO>
+renderInfo(HyTradeInfoReq):HyTradeResult<HyTradeRenderVO>
}
class HyTradeInfoService{
-applicationContext:ApplicationContext
-ecs:HyTradeEcsService
-hyTradeConfigService:HyTradeConfigService
+fetchInfo(HyTradeInfoReq,ProgeressData):HyTradeInfo
}
class HyTradeRenderService{
~hyTradeInfoService:HyTradeInfoService
+renderInfo(HyTradeInfoReq):HyTradeRenderVO
}
class HyTradeSubmitService{
~hyTradeInfoService:HyTradeInfoService
+submitOrder(HyTradeSubmitReq):HyTradeSubmitVO
+pushOrder(HyTradeSubmitReq):HyTradeSubmitVO
}
HyTradeInfoService <.. HyTradeClientImpl
HyTradeRenderService <.. HyTradeClientImpl
HyTradeSubmitService <.. HyTradeClientImpl
HyTradeOfflineClient <|.... HyTradeClientImpl
HyTradeOfflineClient <-[hidden]- HyTradeClientImpl
HyTradeOfflineClient <-[hidden]- HyTradeInfoService
@enduml | false | true | false | false | class |
7f824a00f537741373c9efe0d06a23ea1c861548 | 995cc362a4be5eceee50c4b1b4a4acb3963d2cc7 | /Analyzer.plantuml | 3f2212ac5002d30e66361b83f7076e5d6537f9bc | [] | no_license | dpoolas/Packet-Sniffer | b046facc9e72f871d430d71eec8db1f7f89eaaee | 4637464b7813385bee81e1fa6aaa1eee64f72d8b | refs/heads/main | 2023-03-06T02:23:50.278437 | 2021-02-22T01:04:40 | 2021-02-22T01:04:40 | 336,428,180 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,621 | plantuml | @startuml
title __ANALYZER's Class Diagram__\n
package packetsniffer {
class Analyzer {
}
}
package packetsniffer {
package packetsniffer.gui {
class ButtonColumn {
}
}
}
package packetsniffer {
class Captor {
}
}
package packetsniffer {
class CaptorRunner {
}
}
package packetsniffer {
package packetsniffer.gui {
class CaptureButton {
}
}
}
package packetsniffer {
package packetsniffer.gui {
class ComboItem {
}
}
}
package packetsniffer {
package packetsniffer.gui {
class CustomRenderer {
}
}
}
package packetsniffer {
package packetsniffer.database {
interface DatabaseCallback {
}
}
}
package packetsniffer {
package packetsniffer.database {
class DatabaseConnection {
}
}
}
package packetsniffer {
package packetsniffer.gui {
class Display {
}
}
}
package packetsniffer {
package packetsniffer.gui {
class FilterTextField {
}
}
}
package packetsniffer {
package packetsniffer.gui {
class HorizontalAlignmentHeaderRenderer {
}
}
}
package packetsniffer {
package packetsniffer.utils {
class IPUtilities {
}
}
}
package packetsniffer {
package packetsniffer.utils {
class SubnetUtils {
}
}
}
package packetsniffer {
class Watchlists {
}
}
ButtonColumn -up-|> TableCellRenderer
ButtonColumn -up-|> TableCellEditor
ButtonColumn -up-|> ActionListener
ButtonColumn -up-|> MouseListener
ButtonColumn -up-|> AbstractCellEditor
Captor o-- Display : display
Captor o-- Watchlists : blacklist
CaptorRunner -up-|> Runnable
CaptorRunner o-- Captor : Capture
CaptureButton -up-|> JButton
CaptureButton o-- CaptorRunner : runner
CustomRenderer -up-|> DefaultTableCellRenderer
Display -up-|> JFrame
Display o-- CaptureButton : captureButton
Display o-- CaptorRunner : captor
Display o-- FilterTextField : filterText
Display o-- CustomRenderer : captureCellRenderer
Display o-- CustomRenderer : sessionCellRenderer
Display o-- Watchlists : blacklist
FilterTextField -up-|> JTextField
HorizontalAlignmentHeaderRenderer -up-|> TableCellRenderer
Watchlists o-- SubnetUtils : utils
Watchlists o-- Display : display
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
77d6cce4d8cabcc922955f1a6f326ff0d72cee36 | eb6ceeb9b4d81abdcaf62759423d9631e241453e | /relman/images/compCSS.plantuml | 0c586774f8425020cd84ca4653d1c6df95db3ab7 | [
"Apache-2.0"
] | permissive | CodeURJC-DAW-2018-19/santatecla-relaciones-2 | 18f3401f104daf95e3997a04da5dd53750bfed41 | c5131df07bcfe18f8dbe4b9a309116b734170a8d | refs/heads/master | 2020-04-19T07:15:55.034484 | 2019-04-07T21:56:38 | 2019-04-07T21:56:38 | 168,042,332 | 5 | 3 | Apache-2.0 | 2019-04-07T15:45:01 | 2019-01-28T21:42:24 | CSS | UTF-8 | PlantUML | false | false | 212 | plantuml | @startuml
CSS *-- HTML
HTML *-- DISEÑO_WEB
HTML *-- ETIQUETAS
HTML *-- VIDEOS
HTML *-- SPRING
SPRING *-- SEGURIDAD_SPRING
SPRING *-- DOCKER_SPRING
SPRING *-- IMAGENES
HTML *-- API_REST
CSS *-- BOOTSTRAP
@enduml
| false | true | true | false | class |
4b93ec059c7276ef9a563a659d71c41287582b0a | 611d84c7ba4dd20baa8582353030ad115d95e446 | /PlantUML/userroles.plantuml | 04a0b9bf33c6cd3de083443977c3456089006a06 | [] | no_license | bendotto/business-operations-framework-docs | 7de699102e4b43d4b4bdfe522d81f629c2c19264 | ac8d60db648d6ab51a019f50c6228952a2445736 | refs/heads/main | 2023-08-03T03:30:23.859728 | 2021-09-28T07:31:59 | 2021-09-28T07:31:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,657 | plantuml | @startuml
actor Browser as user
participant "User Role Management" as frontend
participant "User Role API" as backend
participant "Identity & Key Management" as wso2
participant "Admin API" as adminAPI
participant "Ory Keto" as keto
user -> frontend : visits
frontend -> backend : request user list
backend -> wso2 : request user list
wso2 -> backend : user list
backend -> frontend : user list
frontend -> user : display user list
user -> frontend : select user
frontend -> backend : retrieve user roles
backend -> keto : look up user roles
keto -> backend : user roles
backend -> frontend : user roles
frontend -> user : display user roles
user -> frontend : add/remove role for user
frontend -> backend : add/remove role for user
backend -> keto : store/delete user-role tuple
keto -> backend : success
backend -> frontend : success
frontend -> user : display updated user roles
user -> frontend : visits
frontend -> backend : request participant list
backend -> adminAPI : query participant list
adminAPI -> backend : participant list
backend -> frontend : participant list
frontend -> user : display participant list
user -> frontend : select user
frontend -> backend : retrieve user participant mapping
backend -> keto : look up user participant mapping
keto -> backend : user participant mapping
backend -> frontend : user participant mapping
user -> frontend : add/remove participant mapping for user
frontend -> backend : add/remove participant for mapping user
backend -> keto : store/delete user-participant tuple
keto -> backend : success
backend -> frontend : success
frontend -> user : display updated user participant mapping
@enduml | false | true | false | false | sequence |
85e2e8a37a67c4a7d48119c4078c355b625142ac | 40dff9f3accaa74abc586113fbe434a6a47073b4 | /src/main/java/com/kiran/design/solid/c/lsp/fixing_lsp.puml | 71f0bb1d5e5dc9290c9b030c7da11e5fd6aa4a3d | [] | no_license | kiranprakashb/design-core-java | 05eac64aa217bf9acbbda21dcd7b98e56e558f20 | 2c661c0d2e0506b7fa547395527422205c4cd50e | refs/heads/main | 2023-03-04T01:24:55.516348 | 2021-02-17T19:24:51 | 2021-02-17T19:24:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 574 | puml | @startuml
'https://plantuml.com/class-diagram
class BankingAppWithdrawalService
class Account {
deposit(BigDecimal)
}
class WithdrawableAccount {
withdraw(BigDecimal)
}
class CurrentAccount {
deposit(BigDecimal)
withdraw(BigDecimal)
}
class SavingsAccount {
deposit(BigDecimal)
withdraw(BigDecimal)
}
class FixedTermDepositAccount {
deposit(BigDecimal)
}
Account <|-- WithdrawableAccount
WithdrawableAccount <|-- CurrentAccount
WithdrawableAccount <|-- SavingsAccount
Account <|-- FixedTermDepositAccount
WithdrawableAccount <.. BankingAppWithdrawalService
@enduml | false | true | false | false | class |
ea431358187672991e76095304c3ceed7ab1b6f2 | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch05/resources/isp01.puml | 122cbffb0f80da6ceb4c3550c637713e04e8128c | [
"MIT"
] | permissive | appkr/pattern | b40b621e52c9b27be01f2a21f2f605a459ac998f | 1e635f7b79cc4b89d2e75455cb14e1572619eb20 | refs/heads/master | 2022-11-02T01:56:18.654766 | 2022-10-12T08:45:58 | 2022-10-12T08:47:36 | 71,896,898 | 11 | 2 | MIT | 2018-11-10T15:05:11 | 2016-10-25T12:55:03 | PHP | UTF-8 | PlantUML | false | false | 182 | puml | @startuml
'skinparam linetype ortho
class User1 {}
class User2 {}
class User3 {}
class Ops {
+ op1()
+ op2()
+ op3()
}
User1 --> Ops
User2 --> Ops
User3 --> Ops
@enduml
| false | true | false | false | class |
b0532327f8e2c5068ec8941c10c94112d2d3f35b | db15a4762717f1c25f1b86534b29a4bfd3bc21b5 | /src/main/controllers/controllers.plantuml | df33ac41b4d17112496f103895ecc58b6331fa97 | [] | no_license | AdamRohdell/Laboration1 | 3f8a1c9022f29ad63d1c356b23a27c9866b3f808 | b4098b8d2be81b4dea9f9df3597653421bec0a10 | refs/heads/master | 2020-04-06T22:40:21.458338 | 2018-12-11T08:34:43 | 2018-12-11T08:34:43 | 157,843,265 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,026 | plantuml | @startuml
title __CONTROLLERS's Class Diagram__\n
package main {
package main.controllers {
class CarController {
- delay : int
- timer : Timer
- factory : VehicleFactory
~ cars : ArrayList<Car>
- changeDirection()
- calculateIfOutOfBounds()
+ gas()
+ brake()
+ startCars()
+ stopCars()
+ getCars()
+ setTurboOn()
+ setTurboOff()
+ liftBeds()
+ lowerBeds()
}
}
}
package main {
package main.controllers {
class TimerListener {
+ actionPerformed()
}
}
}
CarController o-- VehicleFactory : factory
CarController o-- CarView : frame
CarController +-down- TimerListener
TimerListener -up-|> ActionListener
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
028c51f717e8d4b531fe697dcd1a50672da0754e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderEdit.puml | af92b4ccc826db52c165ed701bbb168afc77e76f | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 2,243 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface OrderEdit [[OrderEdit.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
resource: [[OrderReference.svg OrderReference]]
stagedActions: [[StagedOrderUpdateAction.svg List<StagedOrderUpdateAction>]]
result: [[OrderEditResult.svg OrderEditResult]]
comment: String
custom: [[CustomFields.svg CustomFields]]
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface OrderEditPagedQueryResponse [[OrderEditPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[OrderEdit.svg List<OrderEdit>]]
}
interface OrderEditAppliedMessage [[OrderEditAppliedMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
edit: [[OrderEdit.svg OrderEdit]]
result: [[OrderEditApplied.svg OrderEditApplied]]
}
interface OrderEditAppliedMessagePayload [[OrderEditAppliedMessagePayload.svg]] {
type: String
edit: [[OrderEdit.svg OrderEdit]]
result: [[OrderEditApplied.svg OrderEditApplied]]
}
interface OrderEditReference [[OrderEditReference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[OrderEdit.svg OrderEdit]]
}
OrderEdit --> OrderEditPagedQueryResponse #green;text:green : "results"
OrderEdit --> OrderEditAppliedMessage #green;text:green : "edit"
OrderEdit --> OrderEditAppliedMessagePayload #green;text:green : "edit"
OrderEdit --> OrderEditReference #green;text:green : "obj"
@enduml
| false | true | false | false | sequence |
55a63c9f0e8dcc7efbaa73874e782f6e8687b65f | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Gestores/GestorComprobantes.puml | 1bf912baff033e3c6a20f05f57e57557161b7f6c | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 76 | puml | @startuml GestorComprobantes
hide circle
class GestorComprobantes{
}
@enduml | false | true | false | false | class |
cba299cd852546c15395f60857aacc624e85752f | 0b2980d77fe9c1f050178d10c60db7029f05e27e | /src/media/media.plantuml | 9d67fa46e35cc3797efbea83d8b068ae73319991 | [] | no_license | vitaliakhokhlova/POE_Java | b88568da7aee976935870eeba5a22c3e4fa17b12 | 7a1ce69a81c34a375890c565413a66e8a5df650f | refs/heads/master | 2020-03-21T13:15:24.153321 | 2018-08-31T15:04:57 | 2018-08-31T15:04:57 | 138,595,700 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,171 | plantuml | @startuml
title __MEDIA's Class Diagram__\n
package com.formation.start {
package com.formation.start.media {
class Author {
- name : String
+ Author()
+ toString()
}
}
}
package com.formation.start {
package com.formation.start.media {
class Book {
- nbpage : int
+ Book()
+ Book()
+ getNetPrice()
+ getNbpage()
+ toString()
+ setNbpage()
}
}
}
package com.formation.start {
package com.formation.start.media {
class BookRepository {
~ reader : BufferedReader
~ nLines : int
~ nColumns : int
~ bookList : ArrayList<Book>
+ load()
+ getAll()
+ getById()
+ getByTitle()
+ getByPrice()
+ getByPublisher()
+ add()
+ remove()
+ update()
+ toString()
+ print()
}
}
}
package com.formation.start {
package com.formation.start.media {
class CD {
- nbtrack : int
+ CD()
+ getNbtrack()
+ setNbtrack()
}
}
}
package com.formation.start {
package com.formation.start.media {
class DVD {
- zone : int
+ DVD()
+ getNetPrice()
+ getZone()
+ setZone()
}
}
}
package com.formation.start {
package com.formation.start.media {
interface IBookRepository {
{abstract} + load()
{abstract} + getAll()
{abstract} + getById()
{abstract} + getByTitle()
{abstract} + getByPrice()
{abstract} + getByPublisher()
{abstract} + add()
{abstract} + remove()
{abstract} + update()
}
}
}
package com.formation.start {
package com.formation.start.media {
class Media {
{static} - compteur : int
- id : int
- title : String
- price : double
- authorList : ArrayList<Author>
+ Media()
+ Media()
+ getPrice()
+ getNetPrice()
+ toString()
+ setId()
+ setTitle()
+ setPrice()
+ setPublisher()
+ setAuthorList()
{static} + getCompteur()
+ getId()
+ getTitle()
+ getPublisher()
+ getAuthorList()
}
}
}
package com.formation.start {
package com.formation.start.media {
class Medias {
{static} + main()
}
}
}
package com.formation.start {
package com.formation.start.media {
class Publisher {
- name : String
+ Publisher()
+ getName()
+ toString()
}
}
}
Book -up-|> Media
BookRepository -up-|> IBookRepository
CD -up-|> Media
DVD -up-|> Media
Media o-- Publisher : integer
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
a0cf7e66d3d6e1c0d5597244441460be62ddeff5 | 6ee5cc3fc08bbfefeef5d8d7e89f91cea7a95ae6 | /doc/system_plan/diagrams/seq_remove.puml | e4545ecabba471c3653d6643ea1fa83c6d54069b | [] | no_license | realmoriss/grumpy-free-jaguars | 71f74e47f22ddd11bf414bba1d3de838218cc6c9 | e3a2901a0840508c3c426f46efdaad5179c6df83 | refs/heads/master | 2023-01-22T09:05:06.067749 | 2020-11-29T22:13:24 | 2020-11-29T22:13:24 | 304,857,097 | 0 | 0 | null | 2020-11-29T21:54:25 | 2020-10-17T10:56:40 | C++ | UTF-8 | PlantUML | false | false | 1,916 | puml | @startuml
actor "User Agent" as user_agent
boundary "Content removal API" as api_content_remove
boundary "User Manager" as user_manager
database "User database" as db_user
database "Content database" as db_content
user_agent --> api_content_remove : Removal request (HTTP POST),\ncontains ID of content to be removed.
note top
Should also include a CSRF token to prevent admins who are also
visit other, potentially XSS vulnerable or malicious sites
from helping an unkown actor remove content without authorization.
end note
activate api_content_remove
api_content_remove -> user_manager : Retrieve role of requesting user.
activate user_manager
user_manager -> db_user : Fetch user information from database.
activate db_user
user_manager <- db_user : Return query result.
deactivate db_user
api_content_remove <- user_manager : Return user role.
deactivate user_manager
alt User has admin role
api_content_remove <- api_content_remove : Validate removal request
alt Failed to validate removal request
user_agent <-- api_content_remove: Return an HTTP status code that signals validation failure.\nExact value depends on how the validation failed.
else Request is deemed valid
api_content_remove -> db_content : Remove content from DB.
activate db_content
api_content_remove <- db_content : Result of delete operation
deactivate db_content
alt Content has been removed succesfully
user_agent <-- api_content_remove: Return HTTP 204 No Content
else Removal failed
user_agent <-- api_content_remove: Return HTTP Status code to signal reason for failure.
end
end
else User is not authorized to remove content
user_agent <-- api_content_remove: Return HTTP 403 Forbidden to signal that the user has no permission to request what they just did.
end
deactivate api_content_remove
@enduml
| false | true | false | false | usecase |
7394658478412bf40d5431dd35114b8ac900f18e | 4d5a06fd943002161cbc4969033382b2165bd727 | /samples/Two Mode Sample - Normal.puml | e10725ef474a0fbb9a4b0b4e3e0a106edfa19fd5 | [
"MIT"
] | permissive | NicoJuicy/Azure-PlantUML | 7ff338f2d1a8c31980635ea50cc915128f4d1643 | fd46c4c5b3999b7c289f1bb755adc59cdbf82aaf | refs/heads/master | 2023-01-27T12:43:15.583259 | 2023-01-02T12:27:45 | 2023-01-02T12:27:45 | 239,044,077 | 0 | 0 | MIT | 2023-01-18T17:19:27 | 2020-02-08T00:04:26 | null | UTF-8 | PlantUML | false | false | 1,496 | puml | @startuml Two Mode Sample - Normal
!pragma revision 1
!define AzurePuml https://raw.githubusercontent.com/plantuml-stdlib/Azure-PlantUML/master/dist
!includeurl AzurePuml/AzureCommon.puml
' !includeurl AzurePuml/AzureSimplified.puml
!includeurl AzurePuml/Analytics/AzureEventHub.puml
!includeurl AzurePuml/Compute/AzureFunction.puml
!includeurl AzurePuml/Databases/AzureCosmosDb.puml
!includeurl AzurePuml/Storage/AzureDataLakeStorage.puml
!includeurl AzurePuml/Analytics/AzureStreamAnalyticsJob.puml
!includeurl AzurePuml/InternetOfThings/AzureTimeSeriesInsights.puml
!includeurl AzurePuml/Identity/AzureActiveDirectoryB2C.puml
!includeurl AzurePuml/DevOps/AzureApplicationInsights.puml
LAYOUT_LEFT_RIGHT
AzureEventHub(rawEventsHubAlias, "Raw Event Hub", "PK: Medallion HackLicense VendorId; 3 TUs")
AzureDataLakeStorage(datalakeAlias, "Data Lake", "GRS")
AzureStreamAnalyticsJob(streamAnalyticsAlias, "Aggregate Events", "6 SUs")
AzureFunction(stateFunctionAlias, "State Processor", "C#, Consumption Plan")
AzureEventHub(aggregatedEventsHubAlias, "Aggregated Hub", "6 TUs")
AzureCosmosDb(stateDBAlias, "State Database", "SQL API, 1000 RUs")
AzureTimeSeriesInsights(timeSeriesAlias, "Time Series", "2 Data Processing Units")
rawEventsHubAlias ----> datalakeAlias
rawEventsHubAlias --> streamAnalyticsAlias
rawEventsHubAlias ---> stateFunctionAlias
streamAnalyticsAlias --> aggregatedEventsHubAlias
aggregatedEventsHubAlias --> timeSeriesAlias
stateFunctionAlias --> stateDBAlias
@enduml
| false | true | false | false | uml-unknown |
dc9f5bac348dada3f55e9485a6a8b4cb876dde3f | 97c3584b425ea19989b9faba6ec949fa63726b1a | /uml/Item.puml | 0c56f78333eabb53d0c96e0a9d87df373eec76f2 | [] | no_license | N00dles123/To-DoListManager | c2816b9caf7afcc0d8862511a2a58e212cadbaae | e06d3a9e9ccb864e6b341c54dfc6051d4528087e | refs/heads/master | 2023-08-27T18:40:33.758508 | 2021-11-14T21:57:23 | 2021-11-14T21:57:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 335 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Item{
String description;
Date time;
boolean complete;
public void setTime(String someTime)
public String getDescription()
public String getTime()
public void setDescription(String descr)
public void setComplete()
public void setIncomplete()
public String getComplete()
}
@enduml | false | true | false | false | class |
27a05058ba4bc77d060a4d45e79fead4ca825f2d | 608c7301bf1eaed2b79855fd8030b15e4fc0d4aa | /docs/uml/sequence_diagram/obstacleAvoidance.puml | b1759f59bc6d336e4371352b5cd41b77d9489650 | [] | no_license | mehmetrizaoz/autonomous_steering_agents | 48d0fbba36eafd081c78b825687d156bb02a5764 | 5d901252f66b68bfcaf48dd7da6145b1bdc462f0 | refs/heads/master | 2023-05-15T07:28:49.473767 | 2021-06-14T10:43:48 | 2021-06-14T10:43:48 | 356,524,673 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,310 | puml | @startuml
actor actor as user
participant graphics as view
participant obstacle as obst
participant agent as agent
participant behavior as steeringBehavior
participant obstacleAvoidance as oA
user -> oA: user defines scenario
activate oA
activate view
activate agent
activate obst
activate steeringBehavior
note left: anytime
user -> view: set mouse position
loop triggered with 20ms periodic event
loop for all agents
oA -> view: request mouse position
view --> oA: gives mouse position
oA -> agent: set agent target position
oA -> steeringBehavior: request seek force for agent
steeringBehavior --> oA: gives seek force
oA -> steeringBehavior: request avoid force for agent
steeringBehavior -> obst: request obstacles info
obst --> steeringBehavior: gives obstacles info
steeringBehavior --> oA: gives avoid force
oA -> agent: set force
oA -> agent: set arriving behavior
end
loop for all obstacles
oA -> view: draw obstacle
end
agent -> agent: calculate next position
oA -> view: draw agents
oA -> view: draw title
oA -> view: refresh
end
user -> view: stop program
deactivate oA
deactivate view
deactivate obst
deactivate agent
deactivate steeringBehavior
@enduml | false | true | false | false | sequence |
7e1bca138a48696aa9b6d0f72a6b86885ada8312 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/spring/practice-jpa-association-mapping-4.plantuml | ccf5c5972294a2f525fc332be3fe13b57dd1e7bc | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 555 | plantuml | @startuml
!define table(x) class x << (T,#FFAAAA) >>
!define primary_key(x) <b><color:#b8861b><&key></color> x</b>
!define foreign_key(x) <color:#aaaaaa><&key></color> x
hide methods
hide stereotypes
entity (Member) {
primary_key(id)
team
name
}
entity (Team) {
primary_key(id)
name
members
}
Member "*" --> "1" Team
Member "*" <.. "1" Team
table(MEMBER) {
primary_key(ID) <<PK>>
foreign_key(TEAM_ID) <<FK>>
NAME
}
table(TEAM) {
primary_key(ID) <<PK>>
NAME
}
MEMBER }o..o| TEAM
Member -right-> MEMBER :team -> TEAM_ID
@enduml | false | true | false | false | sequence |
d0c8ed58cc360a986d3097e3b5d5607040d6066f | 9f816b59dc2fa8215e38fd13e7e74a6ef9b9b812 | /CHESS BPO periode D/out/production/CHESS BPO periode D/piece/piece.plantuml | 79e23ed263b5f6c81f32691edf16c3a9f0ee803d | [] | no_license | SofianZoo/chess | 4337569b6ff45ff4f7e0962e8d1cf424765a4c71 | bb3204f1e56470754d0bc16a2de0e2ec49e5e598 | refs/heads/master | 2023-05-04T07:19:41.469582 | 2021-05-25T18:16:21 | 2021-05-25T18:16:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 878 | plantuml | @startuml
title __PIECE's Class Diagram__\n
namespace piece {
abstract class piece.Piece {
- couleur : couleurPiece
- posX : int
- posY : int
- signe : char
+ Piece()
+ changeCoord()
+ getPosX()
+ getPosY()
{abstract} + peutJouer()
+ toChar()
}
}
namespace piece {
class piece.Roi {
+ Roi()
+ peutJouer()
}
}
namespace piece {
class piece.Tour {
+ Tour()
+ peutJouer()
}
}
namespace piece {
enum couleurPiece {
BLANC
NOIR
}
}
piece.Roi -up-|> piece.Piece
piece.Tour -up-|> piece.Piece
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
70af9601e7ad9f0ce43a539ace261b0a7248dec6 | 3ea02aab5d9a15def695d50ffd9c538a0b4e5173 | /test/exhibitions/exhibitions.puml | 7eb293e415b4a70119e2bb559764af1e2b20b18c | [] | no_license | VladimirAlexiev/rdf2rml | cd6a3c7c27dd3ce30214c852b4b0d9291464b461 | 29d7f21c9ed3defd5d6a64a02a5e18315d30b559 | refs/heads/master | 2023-06-09T10:08:02.313163 | 2023-06-07T11:25:10 | 2023-06-07T11:25:10 | 158,509,814 | 35 | 5 | null | 2023-05-30T12:54:05 | 2018-11-21T07:44:42 | Perl | UTF-8 | PlantUML | false | false | 4,777 | puml | @startuml
hide empty methods
hide empty attributes
hide circle
skinparam classAttributeIconSize 0
class _exhibition_exhibitionid_ as "<exhibition/(exhibitionid)>"
class _exhibition_exhibitionid_ <<(A,yellow)>>
show _exhibition_exhibitionid_ circle
class _exhibitionVenue_exhvenuexrefid_ as "<exhibitionVenue/(exhvenuexrefid)>"
class _exhibitionVenue_exhvenuexrefid_ <<(A,yellow)>>
show _exhibitionVenue_exhvenuexrefid_ circle
class _exhibitionVenue_exhvenuexrefid_object_objectid_ as "<exhibitionVenue/(exhvenuexrefid)/object/(objectid)>"
class _exhibitionVenue_exhvenuexrefid_object_objectid_ <<(A,yellow)>>
show _exhibitionVenue_exhvenuexrefid_object_objectid_ circle
class _exhibition_exhibitionid_date_ as "<exhibition/(exhibitionid)/date>"
_exhibition_exhibitionid_date_ : a crm:E52_Time-Span
_exhibition_exhibitionid_date_ : crm:P3_has_note "[displaydate]"
_exhibition_exhibitionid_date_ : crm:P82a_begin_of_the_begin "[beginisodate]"^^xsd:date
_exhibition_exhibitionid_date_ : crm:P82b_end_of_the_end "[endisodate]"^^xsd:date
_exhibitionVenue_exhvenuexrefid_object_objectid_ : a crm:E7_Activity
class _exhibitionVenue_exhvenuexrefid_object_objectid_date_ as "<exhibitionVenue/(exhvenuexrefid)/object/(objectid)/date>"
_exhibitionVenue_exhvenuexrefid_object_objectid_ --> _exhibitionVenue_exhvenuexrefid_object_objectid_date_ : crm:P4_has_time-span
class _exhibitionVenue_exhvenuexrefid_object_objectid_catalognumber_ as "<exhibitionVenue/(exhvenuexrefid)/object/(objectid)/catalognumber>"
_exhibitionVenue_exhvenuexrefid_object_objectid_ --> _exhibitionVenue_exhvenuexrefid_object_objectid_catalognumber_ : crm:P1_is_identified_by
_exhibitionVenue_exhvenuexrefid_object_objectid_ -up-> _exhibitionVenue_exhvenuexrefid_ : crm:P9i_forms_part_of
_exhibitionVenue_exhvenuexrefid_object_objectid_ : "\nexhvenuesxrefs, exhvenobjxrefs\n where exhvenuesxrefs.exhvenuexrefid=exhvenobjxrefs.exhvenuexrefid\n and exhvenuesxrefs.approved=1 and exhvenobjxrefs.displayed=1\n"
_exhibitionVenue_exhvenuexrefid_object_objectid_ : crm:P12_occurred_in_the_presence_of <object/[objectid]>
_exhibitionVenue_exhvenuexrefid_object_objectid_ : crm:P2_has_type <event/object-at-exhibition>
class _exhibition_exhibitionid_title_ as "<exhibition/(exhibitionid)/title>"
_exhibition_exhibitionid_title_ : a crm:E41_Appellation
_exhibition_exhibitionid_title_ : crm:P3_has_note "[exhtitle]"
class _exhibitionVenue_exhvenuexrefid_date_ as "<exhibitionVenue/(exhvenuexrefid)/date>"
_exhibitionVenue_exhvenuexrefid_date_ : a crm:E52_Time-Span
_exhibitionVenue_exhvenuexrefid_date_ : crm:P82a_begin_of_the_begin "[beginisodate]"^^xsd:date
_exhibitionVenue_exhvenuexrefid_date_ : crm:P82b_end_of_the_end "[endisodate]"^^xsd:date
_exhibitionVenue_exhvenuexrefid_object_objectid_date_ : a crm:E52_Time-Span
_exhibitionVenue_exhvenuexrefid_object_objectid_date_ : crm:P82a_begin_of_the_begin "[begindispldateiso]"^^xsd:date
_exhibitionVenue_exhvenuexrefid_object_objectid_date_ : crm:P82b_end_of_the_end "[enddispldateiso]"^^xsd:date
_exhibitionVenue_exhvenuexrefid_object_objectid_catalognumber_ : a crm:E42_Identifier
_exhibitionVenue_exhvenuexrefid_object_objectid_catalognumber_ : crm:P2_has_type aat:300404620 # catalog number
_exhibitionVenue_exhvenuexrefid_object_objectid_catalognumber_ : crm:P3_has_note "[catalognumber]"
_exhibition_exhibitionid_ : a crm:E7_Activity
_exhibition_exhibitionid_ --> _exhibition_exhibitionid_title_ : crm:P1_is_identified_by
_exhibition_exhibitionid_ --> _exhibition_exhibitionid_date_ : crm:P4_has_time-span
_exhibition_exhibitionid_ : "\nexhibitions left join conxrefs \n on id=exhibitionid\n where tableid=47\n and roleid=286 \n and exhdepartment in [53,54]\n"
_exhibition_exhibitionid_ : crm:P14_carried_out_by <agent/[constituentid]> # [constituent]
_exhibition_exhibitionid_ : crm:P2_has_type aat:300054766 # exhibition [event]
_exhibitionVenue_exhvenuexrefid_ : a crm:E7_Activity
class _agent_address_conaddressid_ as "<agent/address/(conaddressid)>"
_exhibitionVenue_exhvenuexrefid_ --> _agent_address_conaddressid_ : crm:P7_took_place_at
_exhibitionVenue_exhvenuexrefid_ -up-> _exhibition_exhibitionid_ : crm:P9i_forms_part_of
_exhibitionVenue_exhvenuexrefid_ --> _exhibitionVenue_exhvenuexrefid_date_ : crm:P4_has_time-span
_exhibitionVenue_exhvenuexrefid_ : "\nexhvenuesxrefs left join conaddress \n on exhvenuesxrefs.constituentid=conaddress.constituentid \n where exhvenuesxrefs.approved=1\n"
_exhibitionVenue_exhvenuexrefid_ : crm:P14_carried_out_by <agent/[constituentid]> # [constituent]
_exhibitionVenue_exhvenuexrefid_ : crm:P2_has_type <event/exhibition-at-venue>
_exhibitionVenue_exhvenuexrefid_ : crmx:sort_order "[displayorder]"
_agent_address_conaddressid_ : a crm:E53_Place
_agent_address_conaddressid_ : rdfs:label "[address]"
@enduml
| false | true | false | false | sequence |
1fa871ad8a9954f38d4717a2cdcdb569cb2f448f | 13c9db1e42dc79485e5c8609b37b996f8f6ed987 | /wallet_query_ctx.puml | bc6d70533d691e226c1c18b731e8036e08c3788c | [] | no_license | dhh1128/indy-sdk-async | 1e7248e1c0fcd9cf261bfb2c3289f44a7859c606 | e6f9df8056944493e98b5bb786cfbfbedcf27068 | refs/heads/master | 2020-03-15T07:12:40.934500 | 2018-05-03T16:54:21 | 2018-05-03T16:54:21 | 132,024,439 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,407 | puml | @startuml
title Jason's Vision of Sync Storage + Contexts
participant App
participant libindy
participant Storage
autonumber
== Wallet Search ==
note over libindy #f0f0f0
Assumptions
1. App creates as many "contexts" as it likes.
2. Contexts are single-threaded and not thread-safe.
They do not share state. This means the singletons
inside libindy today are replaced with state held
by each context object.
3. Existing wallet and encryption APIs are revised to
be synchronous. It's unclear whether dispatch thread
and command queue are still used for ledger.
end note
App -> libindy: query_handle = indy_wallet_search(ctx_handle,\n\t"{\n\t\t"plaintext.issue_date": {"$gte": "X1"},\n\t\t"plaintext.issue_date": {"$lte": "X2"},\n\t\t"issuer": {"$eq": "Y"},\n\t\t"holder_role": {"eq": "witness"}\n\t}");
libindy -> libindy: encrypt query params
note left: (block)
libindy -> Storage: cursor =\n\tdo_wallet_search(ctx.wallet_handle,\n\t\tjson)
note left: (block)
Storage -> libindy: return cursor
libindy -> App: return query handle
loop
App -> libindy: indy_wallet_fetch_next(query_handle)
libindy -> libindy: decrypt data
note left: (block)
libindy -> App: return decrypted data
end
App -> libindy: indy_wallet_close_query(query_handle)
note right #ffe0e0: Use callback instead, so libindy knows\nwhen caller is done with resources?
libindy -> Storage: wallet_close_cursor(cursor)
@enduml | false | true | false | false | sequence |
3850ca0841082db51f6a1e624d3745623d5577f2 | 2a9ea58e31aa5280b6cc055e2e5649d5618ff465 | /ParkingManagerApplicationService.park.puml | 526057ac1a7fcceb42d188b0a3797395bbbec034 | [] | no_license | kbyyd24/parking-lot-modling | b650237b71a5ef144d87d8b4ba0a541cd73b5163 | 910f13d5cdd0f396a336ed79e539b0923b6de179 | refs/heads/master | 2021-02-10T14:56:42.901116 | 2020-03-22T10:21:56 | 2020-03-22T10:21:56 | 244,391,734 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,154 | puml | @startuml
actor User
User -> ParkingManagerApplicationService : park
activate ParkingManagerApplicationService
ParkingManagerApplicationService -> ParkingManagerRepository : find
activate ParkingManagerRepository
return ParkingManager
deactivate ParkingManagerRepository
ParkingManagerApplicationService -> ParkingManagerParkService : park
activate ParkingManagerParkService
ParkingManagerParkService -> ParkingManager : dispatchOneParkingBoy
activate ParkingManager
return ParkingBoy
deactivate ParkingManager
ParkingManagerParkService -> ParkingBoy : findOneParkingLot
activate ParkingBoy
return ParkingLot
deactivate ParkingBoy
ParkingManagerParkService -> ParkingLot : park
activate ParkingLot
return Receipt
deactivate ParkingLot
ParkingManagerApplicationService <-- ParkingManagerParkService : Receipt
deactivate ParkingManagerParkService
ParkingManagerApplicationService -> ParkingManagerRepository: save
activate ParkingManagerRepository
ParkingManagerApplicationService <-- ParkingManagerRepository
deactivate ParkingManagerRepository
User <-- ParkingManagerApplicationService : Receipt
deactivate ParkingManagerApplicationService
@enduml | false | true | false | false | sequence |
d6ce958fc8fc89ffff86d1eab422804f80e02dea | 8e0e85b3875e06a4d76b4298decb879026847d7f | /docs/Skeleton/diagrams/Craft_teleport_gate/sequence/6.Not_possible_to_craft_gate_2.puml | 330214223b18e196301179cf4da2ed0622fab0c1 | [] | no_license | viseguard-studios/Documentation | fba5030594be0303374d70019c7ea759316a96fe | 290312ddbeab9cf9a28147c868f3330475aebd6d | refs/heads/main | 2023-05-13T12:00:34.417075 | 2021-06-06T07:52:49 | 2021-06-06T07:52:49 | 338,383,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,381 | puml | @startuml
actor Tester as Tester <<SpaceShip>>
participant recipe as recipe <<TeleportGateRecipe>>
participant s as s <<SpaceShip>>
participant inv as inv <<Inventory>>
participant a as a <<Asteroid>>
participant inventory as inventory <<Inventory>>
collections item as item <<Item>>
collections aItem as aItem <<Item>>
title SpaceShip can't craft teleport gate because of the lack of space in inventory
Tester-> recipe++: CanCraft(s)
recipe -> s++: GetAsteroid()
s --> recipe--: a
recipe -> s++: GetInventory()
s --> recipe--: inv
recipe -> inv++: getItems()
inv --> recipe--: items
recipe -> a++: GetInventory()
a --> recipe--: inventory
recipe -> inventory++: getItems()
inventory --> recipe--: aItems
group loop: input check[for each i in recipe.input]
group loop [for each item in items]
recipe -> item++: Satisfies(i)
item --> recipe--: x
end
group loop [for each item in aItems]
recipe -> aItem++: Satisfies(i)
aItem --> recipe--: y
end
end
group loop check storage capacity [for each item in items]
recipe -> item++: GetAmount()
item-->recipe--: amount
end
recipe -> inv++: GetSize()
inv-->recipe--: size
note right
after crafting, the available space in
spaceship's inventory is less than the
space needed to insert teleport gates,
so the gates can't be crafted
end note
recipe --> Tester: false
@enduml | false | true | false | false | usecase |
f13d7f1d4f1340cda8e802cf444752c7f9018091 | 573fd3fb5867c0f26fb2906f0478b234956e713f | /whitepaper/deployment-entity-relationship-diagram.puml | a1615e995ef609457f1ed7e45327ff8b59ad86f4 | [
"Apache-2.0"
] | permissive | RafaelAPB/blockchain-integration-framework | 65cd73a7115069d343da7d269db45918710a7bbd | 89d5102496adfe98a542a373e805dc38ecb8f269 | refs/heads/main | 2023-08-07T02:19:05.864116 | 2023-04-12T00:41:07 | 2023-04-14T07:37:08 | 241,220,244 | 5 | 0 | Apache-2.0 | 2023-05-24T02:04:39 | 2020-02-17T22:22:43 | TypeScript | UTF-8 | PlantUML | false | false | 1,484 | puml | @startuml deployment-entity-relationship-diagram
!include <material/common>
' To import the sprite file you DON'T need to place a prefix!
!include <material/cellphone>
!include <material/laptop_chromebook>
!include <material/database>
title Deployment Entity Relationship Diagram\n\nHyperledger Cactus
namespace Physical_Deplyoment_Elements {
entity CactusNode <<object>> {
* id: string
--
* nodeApiHost: string
* consortiumId: string
* memberId: string
* publicKeyPem: string
* plugins: Array<Plugin>
* ledgers: Array<Ledger>
}
entity APIServer <<OS process>> {
* plugins: Array<PluginInstance>
}
interface "ICactusPlugin" <<interface>> {
* getInstanceId(): string
--
* getPackageName(): string
}
entity "PluginInstance" <<object>> implements ICactusPlugin {
+ instanceId: string
+ packageName: string
}
}
entity "CactusConsortium" <<object>> {
* id: string
--
* mainApiHost: string
* members: Array<ConsortiumMember>
}
entity "ConsortiumMember" <<object>> {
* id: string
--
* nodes: Array<CactusNode>
}
enum LedgerType <<enum>> {
- BESU_1X
- BESU_2X
- BURROW_0X
- CORDA_4X
- FABRIC_14X
- FABRIC_2
- QUORUM_2X
- SAWTOOTH_1X
- ...
}
entity Ledger <<object>> {
* id: string
--
* ledgerType: LedgerType
}
CactusNode }|-- ConsortiumMember
ConsortiumMember }|-- CactusConsortium
APIServer }|-- CactusNode
PluginInstance }|-- APIServer
Ledger .. LedgerType
@enduml
| false | true | false | false | sequence |
f0b2f3b4537c3e00b26698641b245d888f1e1b87 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-codelist-skjermingmetadata.puml | 179480de6c7b14e7151869a07712a86e2d5bd13d | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 590 | puml | @startuml
skinparam nodesep 100
hide circle
class Kodelister.SkjermingMetadata <<codelist>> {
+Skjerming klasseID = KID
+Skjerming tittel klasse = TKL
+Skjerming tittel mappe - unntatt første linje = TM1
+Skjerming tittel mappe - utvalgte ord = TMO
+Skjerming navn part i sak = NPS
+Skjerming tittel registrering - unntatt første linje = TR1
+Skjerming tittel registrering - utvalgte ord = TRO
+Skjerming navn avsender = NA
+Skjerming navn mottaker = NM
+Skjerming tittel dokumentbeskrivelse = TD
+Skjerming merknadstekst = MT
+Midlertidig skjerming = M
}
@enduml
| false | true | true | false | class |
df9586b8db0671d781bc0880531793beef6fd992 | 23c8deee2bb6068576e4b0180e79f96834683580 | /doc/netbootseq.plantuml | a36c1851c3b280a89e96f448f4f36a1cede2ad50 | [] | no_license | ohollmen/linetboot | 0da95e6e2a07c54c97fe5ecdc1b53b4efc7693cd | 387cbe2b4c3a761e109b8488f5963330e0e55fd3 | refs/heads/master | 2023-08-04T04:59:40.283948 | 2023-07-24T17:43:29 | 2023-07-24T17:43:29 | 163,449,211 | 7 | 0 | null | 2023-03-04T09:22:40 | 2018-12-28T21:01:59 | JavaScript | UTF-8 | PlantUML | false | false | 2,134 | plantuml | @startuml
skinparam roundcorner 10
title PXE+DHCP+PXELinux+linetboot Boot and Installation Sequence
' order 10 - only supported in later plantuml. Unnecessary if you keep below in order.
participant "Boot Client" as Client
'database DHCP
participant DHCP
participant TFTP
box "linetboot"
' When used w/o Box (above)
'participant "**linetboot** / HTTP" as HTTP
participant HTTP
participant Media
'participant "Host Params and Install DB" as HP
database "Host Info and\nParams DB" as HP
end box
' "database" declared here instead of above messes up the order
Client -> Client: Choose PXE Boot (e.g. F12) at startup
Client -> DHCP: DHCP Request
DHCP --> Client: Response w. Next-Server, Boot File\n(and MAC addr. associated IP addr.)
Client -> TFTP: Bootloader Request (NBP Boot File)
Client <-- TFTP: Bootloader binary (lpxelinux.0)
Client -> TFTP: Boot Menu (txt) and Modules (*.c32)
Client <-- TFTP: Menu (pxelinux.cfg/default) and Modules
hnote over Client : Pause for user choice\n(90s. timeout)
'...90 s. timeout ...
Client->Client: Choose Boot Action Item (from Menu)
Client -> HTTP: Kernel and Init RamDisk
HTTP <-> Media
Client <-- HTTP: vmlinux, initrd.img
Client -> Client: Boot Linux (Installer or Tool)
note right: Tool/Utility boot does not\ncontinue to OS Install from here\n(e.g. Gparted Live, memtest86)
== OS Installation ==
Client -> HTTP: Load Preseed or Kickstart Config
HTTP -> HP: Lookup Host Info (by IP)
HTTP <-- HP: Host Install Params
note right: Hostname,IP,Netmask,\nGateway,DNS servers,\nDisk and Part. Info,\nInitial User Info\n...
HTTP -> HTTP: Generate Config
Client <-- HTTP: Installer Instructions / Config (txt) for (Full) Automation
Client -> HTTP: Signal install **start** event
HTTP -> HP: New Install Session
'== Fetch and Install all needed (N) packages ==
group Fetch and Install all needed (N) packages
Client -> HTTP: Request SW Packages
HTTP <-> Media
Client <-- HTTP: Deb: *.deb,*.udeb, RH: *.rpm
end
'Client -> Client: Install
Client -> HTTP: Signal install **end** event
HTTP -> HP: End Install Session
Client -> Client: Reboot
footer (C) Olli Hollmen 2018
@enduml
| false | true | false | false | sequence |
87a518a326d69f4e4d9cb530fe4301b09df8b651 | 0ea1dec22625973d1493c8f2abc45689a5521c80 | /src/main/scala/try_12/Try12.puml | b66ede930663057e5dd225997862447c065e94a7 | [] | no_license | suzuki-hoge/repository-transparency | f1c6a4b5c14ccceb49839e96ad59f1117cb3bcde | 7e69c03e74aad4336a30e7e877765ad23c50b3a4 | refs/heads/master | 2020-09-08T00:13:56.618427 | 2019-12-03T04:47:05 | 2019-12-07T02:23:36 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,376 | puml | @startuml
title Try12
namespace cancel {
class DomainService << (S, lightcyan) >> {
def apply(...): Option[Error]
}
}
namespace change_deliver_to {
class DomainService << (S, lightcyan) >> {
def apply(...): Option[Error]
}
}
namespace change_arrival_at {
class DomainService << (S, lightcyan) >> {
def apply(...): Option[Error]
}
}
package order {
class Order {
OrderStatus
OrderKind
def validateOrdered(): Option[OrderError]
def validateClothes(): Option[OrderError]
}
enum OrderError {
OrderedOnly
ClothesOnly
}
Order -d-> OrderError
}
package item {
class Item {
ItemStatus
def validateWaiting(): Option[ItemError]
def validateWaitingOrPacked(): Option[ItemError]
}
enum ItemError {
WaitingOnly
WaitingOrPackedOnly
}
Item -d-> ItemError
}
package user {
class User {
Plan
def validatePremium(): Option[UserError]
}
enum UserError {
PremiumOnly
}
User -d-> UserError
}
interface Error
cancel.DomainService -d--> Order
cancel.DomainService -d--> Item
change_deliver_to.DomainService -d--> Order
change_deliver_to.DomainService -d--> Item
change_arrival_at.DomainService -d--> Order
change_arrival_at.DomainService -d--> Item
change_arrival_at.DomainService -d--> User
OrderError -d-|> Error
ItemError -d-|> Error
UserError -d-|> Error
@enduml
| false | true | false | false | class |
21e363758ba5594883457f7519608e8ca7ada4b7 | d93164272b4c67d091d300a30b68c9df3f55a2d3 | /docs/diagrams/class/class.plantuml | 53ef97ed9a5dc2fde6ff1ff03919d463556c1b2c | [
"MIT"
] | permissive | mati1297/tp2_algoblocks | ceca0aff4eaf09c6bb8c19d154e28b297b0de7f1 | c02c5453f21bfe7361fbb19d8ee06ee16be6ebb5 | refs/heads/master | 2023-03-16T19:10:57.644392 | 2021-03-08T20:38:03 | 2021-03-08T20:38:03 | 319,747,541 | 0 | 0 | MIT | 2021-03-08T20:34:48 | 2020-12-08T20:02:33 | Java | UTF-8 | PlantUML | false | false | 1,939 | plantuml | @startuml
class Game {
}
class Player {
}
class Coordinates {
}
class Coordinate {
}
class Pencil {
}
interface PencilState {
}
class RaisedPencilState {
}
class LoweredPencilState {
}
class Whiteboard {
}
class Drawing {
}
abstract class Shape{
}
class Line {
}
class Blank {
}
class Workspace {
}
class Algorithm {
}
class Sequence {
}
class Action {
}
abstract class Block {
}
abstract class ActionBlock {
}
abstract class EffectBlock {
}
class MoveUp {
}
class MoveDown {
}
class MoveRight {
}
class MoveLeft {
}
class RaisePencil {
}
class LowerPencil {
}
class Repeat {
}
class Inverse {
}
class CustomBlock {
}
class Grid {
}
class Movement{
}
class Direction{
}
class Position{
}
Game "1" o-- "1" Player
Coordinates "1" o-- "2" Coordinate
Player -- Action
Player "1" o-- "1" Pencil
Pencil "1" o-- "1" PencilState
PencilState <|.. RaisedPencilState
PencilState <|.. LoweredPencilState
Game "1" o--left "1" Whiteboard
Whiteboard "1" o-- "1" Drawing
Drawing "1" o-- "*" Shape
Shape "1" o-- "*" Coordinates
Shape <|-- Line
Shape <|-- Blank
Pencil "1" o-- "*" Shape
Game "1" o-- "*" Block
Block <|-- EffectBlock
Block <|-- ActionBlock
Block <|-- CustomBlock
Game "1" o--right "1" Workspace
Workspace "1" o-- "1" Algorithm
Algorithm "1" o-- "*" Block
Workspace "1" o-- "1" Sequence
Sequence "1" o-- "*" Action
ActionBlock <|-- MoveUp
ActionBlock <|-- MoveDown
ActionBlock <|-- MoveRight
ActionBlock <|-- MoveLeft
ActionBlock <|-- LowerPencil
ActionBlock <|-- RaisePencil
Action <..right ActionBlock
EffectBlock <|-- Repeat
EffectBlock <|-- Inverse
Player *-- Movement
Movement o-- Position
Position o-- Grid
Player ..> Direction
Movement *-- Direction
Whiteboard o-- Grid
Coordinates "1" --o "1" Player
Grid o-- Coordinates
Position ..> Coordinates
Movement ..> Coordinates
Algorithm ..> Sequence
EffectBlock ..> Sequence
CustomBlock ..> Sequence
@enduml | false | true | false | false | class |
b8febf4121b9d1049b0c7a83930905053135e8eb | 98db91bbebf1f48bc591bdfbfd16f8615e238374 | /specs/ekopache/PH_AL_COFEED_revB.puml | 761adeddb5eaca1d563600b703b26c450d1f5a12 | [] | no_license | pengtianyue/Solvay_test | c912ef0bcea28150fd0a0b108992e3612c634982 | 35d24a2e13c1d44326e65384fa57db08494bbc59 | refs/heads/master | 2021-01-21T04:50:58.658610 | 2016-04-13T19:36:57 | 2016-04-13T19:36:57 | 49,964,037 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 545 | puml | @startuml
scale 350 width
[*] --> NotShooting
state NotShooting {
[*] --> Idle
Idle --> Configuring : EvConfig
Configuring --> Idle : EvConfig
}
state Configuring {
[*] --> NewValueSelection
NewValueSelection --> NewValuePreview : EvNewValue
NewValuePreview --> NewValueSelection : EvNewValueRejected
NewValuePreview --> NewValueSelection : EvNewValueSaved
state NewValuePreview {
State1 -> State2
}
Shooting --> NotShooting
}
Configuring : Some Attr
state Configuring{
config : attr1
config : attr2
}
@enduml | false | true | false | false | sequence |
05ca08313c40933cee4212602d9bde1b4c2bad72 | 3d4effac17929df93da92e0f7e3df7d2ca894bcd | /src/test/resources/plantuml/plantuml.puml | 267e2027fe9345e0b08741ec708bcfdfaa4894b5 | [] | no_license | jvmtomte/jqassistant-demo | 0f51313e20392d4b2b4468fe3a87e800460561c2 | fa4440dcbca15d4a5436b33e5fedde47ee7b935f | refs/heads/master | 2021-09-12T12:02:05.567499 | 2018-04-16T14:10:14 | 2018-04-16T14:10:14 | 104,911,266 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | puml | @startuml
package jqademo.plantuml.package1 {}
package jqademo.plantuml.package2 {}
'=============================================
' Definition of exceptions
' package1 is not allowed to access package2
'=============================================
jqademo.plantuml.package1 --> jqademo.plantuml.package2
@enduml | false | true | false | false | uml-unknown |
8bf9aa045fb5ca28a5a44ab3122133a1c7864636 | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/Crimson.puml | 5363f9c3b7aa36359b9f50a61fc0ad788ed4d883 | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 310 | puml | @startuml
skinparam ClassBackgroundColor #Crimson
skinparam ClassFontColor #Crimson
skinparam ClassBorderColor #Crimson
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
25de76c2eaaee403cca5011bee092b3bc0707b76 | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/web/docs/features/firestore_emulator_for_driver_tests/diagrams/firestore_emulator_class_diagram.puml | c128e9e4c64d4935aef6719a724191c12fbc1d9f | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 3,566 | puml | @startuml firestore_emulator_class_diagram
package core.src.domain.entities {
abstract class Enum<T> {
+ value: T
}
}
package test_driver {
class FlutterWebDriver {
- _args : DriverTestArguments
- _processManager : ProcessManager
+ startDriverTests : Future<void>
}
package arguments {
package parser {
class DriverTestArgumentsParser {
- static const _useFirestoreEmulatorFlagName : String
- _configureParser() : void
+ parseArguments(List<String> args) : DriverTestArguments
}
}
package model {
class DriverTestArguments {
+ firestoreEmulatorConfig : FirestoreEmulatorConfig
}
class FirestoreEmulatorConfig {
+ static useFirestoreEmulatorEnvVariableName : String
+ static port : int
+ useEmulator : bool
+ factory fromEnvironment()
+ toMap() : Map<String, String>
}
}
}
package cli {
package common.runner {
abstract class ProcessRunner {}
}
package firebase {
package model as firebase_model {
class FirebaseEmulator{
+ static const auth : FirebaseEmulator
+ static const functions : FirebaseEmulator
+ static const firestore : FirebaseEmulator
+ static const database : FirebaseEmulator
+ static const hosting : FirebaseEmulator
+ static const pubsub : FirebaseEmulator
}
}
package runner {
abstract class FirebaseEmulatorRunner {
+ statusRequestUrl : String
+ isAppStarted() : Future<void>
}
class FirestoreEmulatorRunner {
- _arguments : StartEmulatorCommand
+ args : List<String>
+ executableName : String
+ statusRequestUrl : String
+ run(String workingDir) : Future<FirebaseProcess>
}
}
package command {
class StartEmulatorCommand {
+ static const executableName : String
+ only(FirebaseEmulator emulator) : void
+ inspectFunctions(int port) : void
+ import(String directory) : void
+ exportOnExit(String directory) : void
}
}
package process {
class FirebaseProcess {
+ static start(StartEmulatorCommand args, String workingDir) : Future<FirebaseProcess>
}
}
}
}
package process_manager {
class ProcessManager {
+ run() : Future<ProcessWrapper>
}
}
}
FlutterWebDriver --> DriverTestArguments : uses
DriverTestArguments -> FirestoreEmulatorConfig: uses
FlutterWebDriver --> FirestoreEmulatorRunner : uses
FlutterWebDriver --> ProcessManager : uses
FirestoreEmulatorRunner --> StartEmulatorCommand : uses
FirestoreEmulatorRunner --> FirebaseProcess : starts
FirestoreEmulatorRunner ..|> FirebaseEmulatorRunner
FirebaseEmulatorRunner ..|> ProcessRunner
StartEmulatorCommand --> FirebaseEmulator: uses
FirebaseEmulator..|> Enum
DriverTestArgumentsParser --> DriverTestArguments : provides
@enduml
| false | true | false | false | sequence |
0f67f5d8c564145024009d263e24b4eea8ea1859 | 8f06a12c80d2c6e49f7bfbd932cc515747492543 | /sequencediagram_application.puml | c84fe97967f38c7714f3047ccb83b4440f67948e | [
"Apache-2.0"
] | permissive | teinelund/jproject_info | 8d79783cff351908844f9adc10bf6e5332b7833d | 005bfa7a7739c73a6307ab2de82ce05d1129b739 | refs/heads/main | 2023-02-26T08:55:45.809867 | 2021-02-06T05:54:37 | 2021-02-06T05:54:37 | 307,726,871 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,934 | puml | @startuml
autoactivate on
actor User
participant "__application__\n//Application//" as Application1 #EA80FF
participant "__ac__\n//ApplicationComponent//" as ApplicationComponent1 #EA80FF
participant "__jc__\n//JCommander//" as JCommander1 #d4d4c9
participant "ParseCommandLine\nArgumentsCommand" as ParseCommandLineArgumentsCommand #99FFCC
participant "ValidateCommandLine\nArgumentsCommand" as ValidateCommandLineArgumentsCommand #99FFCC
box "jproject_info" #FBE6FF
participant Application #F2B3FF
participant ApplicationComponent1
participant Application1
end box
box context #CCF7FF
participant Context #99EEFF
end box
box command #CCFFE6
participant ParseCommandLineArgumentsCommand #99FFCC
end box
box jcommander #f2f2e6
participant JCommander1
end box
box command_line_parameters_parser #F7FFCC
participant ParametersImpl #EEFF99
end box
box controller #FFDDCC
participant ControllerImpl #FFBB99
end box
box strategy #FFCCDD
participant Strategy #FF99BB
end box
User -> Application #F2B3FF : main(args : String[])
Application -> ApplicationComponent1 ** : create
Application -> ApplicationComponent1 #EA80FF : buildApplication()
ApplicationComponent1 -> Application1 ** : create
Application <-- ApplicationComponent1 : application
'
' Application execute
Application -> Application1 #EA80FF : execute(args)
Application1 -> Context #99EEFF : setCommandLine\nArguments\n(args : String[])
Application1 <-- Context
'
' ParseCommandLineArgumentsCommand execute
Application1 -> ParseCommandLineArgumentsCommand #99FFCC : execute
ParseCommandLineArgumentsCommand -> Context #99EEFF : getParameters()
ParseCommandLineArgumentsCommand <-- Context : args : Parameters
ParseCommandLineArgumentsCommand -> Context #99EEFF : getCommandLineArguments()
ParseCommandLineArgumentsCommand <-- Context : args : String[]
ParseCommandLineArgumentsCommand -> JCommander1 #d4d4c9 : parse(args : String[])
ParseCommandLineArgumentsCommand <-- JCommander1
ParseCommandLineArgumentsCommand -> Context #99EEFF : setJCommander(jc)
ParseCommandLineArgumentsCommand <-- Context
'
' ControllerImpl execute
ParseCommandLineArgumentsCommand -> ControllerImpl #FFBB99 : execute()
ControllerImpl -> Context #99EEFF : getParameters()
ControllerImpl <-- Context : parameters
ControllerImpl -> ParametersImpl #EEFF99 : isHelpOption()
ControllerImpl <-- ParametersImpl : boolean
ControllerImpl -> ParametersImpl #EEFF99 : isVersionOption()
ControllerImpl <-- ParametersImpl : boolean
ControllerImpl -> ParametersImpl #EEFF99 : isPathInfo()
ControllerImpl <-- ParametersImpl : boolean
ControllerImpl -> Strategy #FF99BB : execute()
ControllerImpl <-- Strategy
'
' ControllerImpl execute finish
ParseCommandLineArgumentsCommand <-- ControllerImpl
'
' ParseCommandLineArgumentsCommand execute finish
Application1 <-- ParseCommandLineArgumentsCommand
'
' Application execute finish
Application <-- Application1
User <-- Application
@enduml | false | true | false | false | usecase |
c8ecb1c5547cd6c63e07890818f7bb05a3611a78 | b16be9a8f0a3adc1631d1a55c45e1cba9b8746d7 | /src/Doc/Strategy.puml | a1198bad7698f836e7729ac743c2910a1b1cde87 | [] | no_license | yicheny/DesignPattern | 2fb55d6e264be126963b9c3eeef7720f23be01b9 | fb9ff66d1c371ae68d47a7f110e1a5d42a86ff7a | refs/heads/main | 2023-04-14T12:22:35.162357 | 2021-04-28T04:44:29 | 2021-04-28T04:44:29 | 349,940,142 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 430 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class Context{
contextInterface()
}
Context o--> Strategy
interface Strategy{
AlgorithmInterface()
}
Strategy <|-- ConcreteStrategyA
Strategy <|-- ConcreteStrategyB
Strategy <|-- ConcreteStrategyC
class ConcreteStrategyA{
AlgorithmInterface()
}
class ConcreteStrategyB{
AlgorithmInterface()
}
class ConcreteStrategyC{
AlgorithmInterface()
}
@enduml | false | true | false | false | class |
fec9152d473e82620c0a76488e296d16f21cbaf1 | 94e97ae339bc000b35437c3c12b268365fe464fe | /src/main/java/ex42/ex42uml.puml | 8ea9a627a56a5835b4f7b6e6d7e11beb13d6d6d9 | [] | no_license | ko815770/Niyamabha-cop3330-assignment3 | d5ddc8881f9d509cf606dc1a308d0277d76eb141 | b3b715ddc5541ec46b7080e61c24375f497ab0bc | refs/heads/master | 2023-08-24T11:11:42.314333 | 2021-10-11T20:08:36 | 2021-10-11T20:08:36 | 416,070,763 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | puml | @startuml
class App {
main()
parseData text
}
class parseData {
ArrayList<String> object
addlist()
list()
printlist()
}
app <-- parseData
@enduml | false | true | false | false | class |
e5f3576327dd88f51c7b1f581ed5fb0b9bb0a8ef | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/application_start_image2.puml | 80052702d2aec6075f4067dc54677e24c4982d76 | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 945 | puml | @startuml doc-files/application_start_image2.png
participant CleanSheets as CS
participant "app : CleanSheets" as aCS
participant "Frame.Creator" as FC
participant "Frame" as F
participant "uiController : UIController" as UIC
participant "chooser : FileChooser" as FChooser
participant "actionManager : ActionManager" as aM
participant "mb : MenuBar" as MB
[-> CS: main
activate CS
create aCS
CS -> aCS : app = new
...
CS -> FC : new(app)
CS -> FC : createAndWait
activate FC
FC -> FC : run
activate FC
create F
FC -> F : new(app)
activate F
create UIC
F -> UIC : uiController = new(app)
create FChooser
F -> FChooser : chooser = new(this, app.getUserProperties)
create aM
F -> aM : actionManager = (app, uiController, chooser);
|||
note right of F
Here we have more
initializations...
end note
create MB
F -> MB : mb = new(app, actionManager, uiController)
F -> F : setJMenuBar(mb)
deactivate F
deactivate FC
deactivate FC
@enduml
| false | true | false | false | sequence |
3ab1482959f76b32ef1b76a607cd568b8e8a7b6c | 0adabba61ed12d21fdd9723f1a4ef1c780ac0932 | /Deployment-Diagrams/Deployment-Diagram-elements.puml | 7ded203bb2c3659096a61d2e7c210f8a98287dd0 | [] | no_license | DavidHartman-Personal/PlantUML-Reference | eba988bce0a89661a50511805ce59798d962f7cb | 20167b2520dad0c14d0d114d6760e9568810ffdf | refs/heads/main | 2023-07-19T09:47:20.703635 | 2021-09-09T07:45:53 | 2021-09-09T07:45:53 | 403,338,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 442 | puml | @startuml
actor actor
actor/ "actor/"
agent agent
artifact artifact
boundary boundary
card card
circle circle
cloud cloud
collections collections
component component
control control
database database
entity entity
file file
folder folder
frame frame
hexagon hexagon
interface interface
label label
node node
package package
person person
queue queue
rectangle rectangle
stack stack
storage storage
usecase usecase
usecase/ "usecase/"
@enduml
| false | true | false | false | usecase |
bedc82e6c301427e37727c445510dd4adcf474c5 | 640f51d038b77215c0f3cfcc36c100a5c507bb83 | /docs/umldg/UI.puml | 90b959d27f1b2ef5ac40ec828a7fc67969ce3677 | [] | no_license | AY2122S1-CS2113T-F12-2/tp | cd6d1a8357501a775a196c61d7819c864ac3092a | 3c506b80030d7891626be2a8a7c499419bd1abf6 | refs/heads/master | 2023-09-04T06:12:50.670923 | 2021-11-08T13:05:54 | 2021-11-08T13:05:54 | 410,188,692 | 0 | 5 | null | 2021-11-08T13:05:55 | 2021-09-25T05:52:40 | Java | UTF-8 | PlantUML | false | false | 781 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam shadowing false
hide circle
hide empty members
together {
package "Command" {
abstract class "{abstract} \n Command" as Command #Orange {
workoutMode: int {static}
}
class CommandResult #Orange {
+feedbackToUser: String
+itemList: ArrayList
+map: Map<String, ArrayList>
+isTable: boolean
}
}
package "Ui" {
class Ui #White ##Black {
+printWelcomeMessage():void() {static}
+showResultToUser(result: CommandResult):void()
+printErrorMessage(e: GetJackDException):void()
-printText(message: String)"void()
-printList(itemList: ArrayList):void()
-printMap(map: Map<String, ArrayList>):void()
-printExerciseTable(map: Map<String, ArrayList>):void()
}
}
Ui ..> Command : formats <
Ui .right.> CommandResult : displays >
@enduml | false | true | false | false | class |
7d38bbf72ff1bc026ac792b289fd19058063c70e | e781b0dfd0a193fa229c81dd816f8977529e9c47 | /docs/source/diagrams/checkpoints.puml | 2be0251ebe3983a806d204f538d84052ef5e97e6 | [
"Apache-2.0"
] | permissive | ddntechssi/indy-plenum | b8a2ac597b8249994fa0b9e0aa3bb7965c02a693 | 16868467e1340a5557f7d610370dce5a59c6097b | refs/heads/master | 2020-04-30T04:35:54.054594 | 2019-03-19T18:41:28 | 2019-03-19T18:41:28 | 176,614,246 | 1 | 0 | Apache-2.0 | 2019-03-19T23:27:13 | 2019-03-19T23:27:13 | null | UTF-8 | PlantUML | false | false | 12,699 | puml | @startuml
!pragma teoz true
hide footbox
participant "Node1:R" as Node1
participant "Node2:R" as Node2
participant "Node3:R" as Node3
participant "Node4:R" as Node4
note over Node1, Node4
Replica processes 3PC message only if its pp_seq_no is between replica's watermarks, i.e. higher than lower
watermark and not greater than higher watermark. Otherwise replica stashes 3PC message as laying outside
watermarks. After start or after view change replica's watermarks are set to (0, LOG_SIZE) <i>(LOG_SIZE = 300
<i>in this example).</i> Every CHK_FREQ ordered 3PC batches <i>(CHK_FREQ = 100 in this example)</i> replicas in protocol
instance send CHECKPOINT messages to each other with checkpoint digest - summary digest of 3PC batches
ordered in scope of this checkpoint. Each replica match digest in its own checkpoint with digests in
CHECKPOINT messages received from other replicas. If digests are same, replica stabilizes checkpoint.
On checkpoint stabilization replica shifts watermarks ahead of this checkpoint and then processes stashed
3PC messages which fit between new watermarks.
end note
Node1 -> Node1: Set watermarks to\n(0, 300)
& Node2 -> Node2: Set watermarks to\n(0, 300)
& Node3 -> Node3: Set watermarks to\n(0, 300)
& Node4 -> Node4: Set watermarks to\n(0, 300)
Node1 -> Node1: Order 3PCBatch(pp_seq_no=1)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=1)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=1)
& Node4 -> Node4: Order 3PCBatch(pp_seq_no=1)
Node1 -> Node1: Create CheckpointState(1 - 100)
& Node2 -> Node2: Create CheckpointState(1 - 100)
& Node3 -> Node3: Create CheckpointState(1 - 100)
& Node4 -> Node4: Create CheckpointState(1 - 100)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=1)\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=1)\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=1)\nto CheckpointState(1 - 100)
& Node4 -> Node4: Add 3PCBatch(pp_seq_no=1)\nto CheckpointState(1 - 100)
note right of Node4
To track completeness of checkpoints and perform checkpoint-based synchronization
with other replicas, replica internally uses <b>Checkpoint States</b>: one per each
checkpoint being tracked.
<b>Each checkpoint state contains:
- seq_no_start <i>(pp_seq_no of <b>first</b> 3PC batch <b>added</b> to checkpoint),
- seq_no_end <i>(pp_seq_no of <b>last</b> 3PC batch <b>that can be added</b> to checkpoint),
- seq_no <i>(pp_seq_no of <b>last</b> 3PC batch <b>added</b> to checkpoint <b>so far</b>),
- digests <i>(digests of 3PC batches added to checkpoint),
- digest <i>(checkpoint digest calculated by replica),
- received_digests <i>(checkpoint digests received from other replicas),
- is_stable <i>(flag indicating whether checkpoint is stable).
When a 3PC batch is ordered, replica adds it to checkpoint state whose
[seq_no_start, seq_no_end] range includes pp_seq_no of this 3PC batch. If such
checkpoint state does not exist yet then replica creates checkpoint state with:
- seq_no_start = pp_seq_no,
- seq_no_end = ceil(pp_seq_no / CHK_FREQ) * CHK_FREQ,
- seq_no = None,
- digests = [],
- digest = None,
- received_digests = {},
- is_stable = False,
and then adds 3PC batch to created checkpoint state.
Adding of 3PC batch to checkpoint state is performed in following way:
- <b>seq_no</b> of checkpoint state is set to <b>pp_seq_no</b> of 3PC batch,
- <b>digest</b> of 3PC batch is appended to <b>digests</b> of checkpoint state
end note
Node1 -> Node1: Order 3PCBatch(pp_seq_no=2)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=2)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=2)
& Node4 -> Node4: Order 3PCBatch(pp_seq_no=2)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=2)\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=2)\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=2)\nto CheckpointState(1 - 100)
& Node4 -> Node4: Add 3PCBatch(pp_seq_no=2)\nto CheckpointState(1 - 100)
Node1 -> Node1: Order 3PCBatch(pp_seq_no=3)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=3)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=3)
& Node4 -> Node4: Order 3PCBatch(pp_seq_no=3)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=3)\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=3)\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=3)\nto CheckpointState(1 - 100)
& Node4 -> Node4: Add 3PCBatch(pp_seq_no=3)\nto CheckpointState(1 - 100)
note over Node1, Node4
after some time...
end note
Node1 -> Node1: Order 3PCBatch(pp_seq_no=99)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=99)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=99)
& Node4 -> Node4: Order 3PCBatch(pp_seq_no=99)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=99)\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=99)\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=99)\nto CheckpointState(1 - 100)
& Node4 -> Node4: Add 3PCBatch(pp_seq_no=99)\nto CheckpointState(1 - 100)
Node1 -> Node1: Order 3PCBatch(pp_seq_no=100)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=100)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=100)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=100)\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=100)\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=100)\nto CheckpointState(1 - 100)
note right of Node4
After last suitable 3PC batch has been added to checkpoint state (i.e. when seq_no
of checkpoint state reaches its end_seq_no):
- If checkpoint state contains CHK_FREQ digests of 3PC batches then:
-- replica finalizes checkpoint state,
-- replica informs other replicas in protocol instance about finalized
checkpoint using CHECKPOINT messages,
-- if there are stashed CHECKPOINT messages corresponding to finalized
checkpoint <i>(i.e. with current view_no, same seq_no_start and same
<i>seq_no_end)</i>, replica processes them.
- Else checkpoint state remains not finalized.
end note
Node1 -> Node1: Finalize CheckpointState(1 - 100)
& Node2 -> Node2: Finalize CheckpointState(1 - 100)
& Node3 -> Node3: Finalize CheckpointState(1 - 100)
note right of Node4
<b>Replica finalizes checkpoint state in following way:
- checkpoint <b>digest</b> is calculated as digest of all 3PC batches digests
in checkpoint,
- <b>digests</b> of individual 3PC batches are removed.
end note
Node1 ->> Node2: CHECKPOINT(1 - 100)
Node1 ->> Node3: CHECKPOINT(1 - 100)
Node1 ->> Node4: CHECKPOINT(1 - 100)
Node2 ->> Node1: CHECKPOINT(1 - 100)
Node2 ->> Node3: CHECKPOINT(1 - 100)
Node2 ->> Node4: CHECKPOINT(1 - 100)
Node3 ->> Node1: CHECKPOINT(1 - 100)
Node3 ->> Node2: CHECKPOINT(1 - 100)
Node3 ->> Node4: CHECKPOINT(1 - 100)
note right of Node4
<b>CHECKPOINT contains:
- view_no,
- seq_no_start,
- seq_no_end,
- digest.
end note
note right of Node4
<b>When replica receives CHECKPOINT message, it handles it in following way:
- If CHECKPOINT message relates to past view then replica discards
CHECKPOINT message.
- Else if replica has stabilized corresponding checkpoint then replica discards
CHECKPOINT message.
- Else if replica has corresponding checkpoint state and it has been finalized
then replica processes CHECKPOINT message.
- Else replica stashes CHECKPOINT message.
end note
Node4 -> Node4: Stash CHECKPOINTs(1 - 100)
note right of Node4
<b>Replica processes CHECKPOINT message in following way:
- CHECKPOINT message is verified: its digest <b>must be same</b> as digest of
corresponding own checkpoint. If verification failed then processing is
aborted and CHECKPOINT message is discarded.
- Entry with message sender as key and message digest as value is added
to received_digests of corresponding checkpoint state.
- If replica has gathered n-f-1 digests from other replicas for this checkpoint
then replica do following steps:
-- stabilizes this checkpoint,
-- shifts watermarks ahead of stabilized checkpoint,
-- processes stashed 3PC messages which fit between new watermarks.
end note
Node1 -> Node1: Verify CHECKPOINTs(1 - 100)
& Node2 -> Node2: Verify CHECKPOINTs(1 - 100)
& Node3 -> Node3: Verify CHECKPOINTs(1 - 100)
Node1 -> Node1: Add digests from other replicas\nto CheckpointState(1 - 100)
& Node2 -> Node2: Add digests from other replicas\nto CheckpointState(1 - 100)
& Node3 -> Node3: Add digests from other replicas\nto CheckpointState(1 - 100)
group On gathering\nn-f-1 digests\nfrom other replicas\n(2 in this example)
Node1 -> Node1: Stabilize\nCheckpointState(1 - 100)
Node1 -> Node1: Shift watermarks to\n(100, 400)
end group
& group On gathering\nn-f-1 digests\nfrom other replicas\n(2 in this example)
Node2 -> Node2: Stabilize\nCheckpointState(1 - 100)
Node2 -> Node2: Shift watermarks to\n(100, 400)
end group
& group On gathering\nn-f-1 digests\nfrom other replicas\n(2 in this example)
Node3 -> Node3: Stabilize\nCheckpointState(1 - 100)
Node3 -> Node3: Shift watermarks to\n(100, 400)
end group
note right of Node4
<b>Replica stabilizes checkpoint in following way:
- is_stable flag of checkpoint state is set to True.
- Previous checkpoint states are removed, if any.
- Stashed CHECKPOINT messages with
(view_no, seq_no_end) <= (current view_no, stabilized checkpoint seq_no_end)
are removed, if any.
- Garbage collection is performed up to
(current view_no, stabilized checkpoint seq_no_end).
<b>Garbage collection</b> removes messages up to
(current view_no, stabilized checkpoint seq_no_end) from following replica's
collections:
- sentPrePrepares,
- prePrepares,
- prepares,
- commits,
- batches,
- requested_pre_prepares,
- requested_prepares,
- requested_commits,
- pre_prepares_stashed_for_incorrect_time.
Also garbage collection does following:
- removes requests related to removed PRE-PREPARES from
Replica.requestQueues and frees them in Node.requests,
- removes 3PC-keys related to views before previous one from Replica.ordered,
- removes BLS signatures related to removed 3PC batches.
end note
Node1 -> Node1: Order 3PCBatch(pp_seq_no=101)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=101)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=101)
Node1 -> Node1: Create CheckpointState(101 - 200)
& Node2 -> Node2: Create CheckpointState(101 - 200)
& Node3 -> Node3: Create CheckpointState(101 - 200)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=101)\nto CheckpointState(101 - 200)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=101)\nto CheckpointState(101 - 200)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=101)\nto CheckpointState(101 - 200)
Node4 -> Node4: Order 3PCBatch(pp_seq_no=100)
Node4 -> Node4: Add 3PCBatch(pp_seq_no=100)\nto CheckpointState(1 - 100)
Node4 -> Node4: Finalize CheckpointState(1 - 100)
Node4 ->> Node1: CHECKPOINT(1 - 100)
Node4 ->> Node2: CHECKPOINT(1 - 100)
Node4 ->> Node3: CHECKPOINT(1 - 100)
group Process stashed CHECKPOINTs(1 - 100)
Node4 -> Node4: Verify CHECKPOINTs(1 - 100)
Node4 -> Node4: Add digests from other replicas\nto CheckpointState(1 - 100)
group On gathering\nn-f-1 digests\nfrom other replicas\n(2 in this example)
Node4 -> Node4: Stabilize\nCheckpointState(1 - 100)
Node4 -> Node4: Shift watermarks to\n(100, 400)
end group
end group
Node1 -> Node1: Discard CHECKPOINT(1 - 100)\nas already stable
& Node2 -> Node2: Discard CHECKPOINT(1 - 100)\nas already stable
& Node3 -> Node3: Discard CHECKPOINT(1 - 100)\nas already stable
Node4 -> Node4: Order 3PCBatch(pp_seq_no=101)
Node4 -> Node4: Create CheckpointState(101 - 200)
Node4 -> Node4: Add 3PCBatch(pp_seq_no=101)\nto CheckpointState(101 - 200)
Node1 -> Node1: Order 3PCBatch(pp_seq_no=102)
& Node2 -> Node2: Order 3PCBatch(pp_seq_no=102)
& Node3 -> Node3: Order 3PCBatch(pp_seq_no=102)
& Node4 -> Node4: Order 3PCBatch(pp_seq_no=102)
Node1 -> Node1: Add 3PCBatch(pp_seq_no=102)\nto CheckpointState(101 - 200)
& Node2 -> Node2: Add 3PCBatch(pp_seq_no=102)\nto CheckpointState(101 - 200)
& Node3 -> Node3: Add 3PCBatch(pp_seq_no=102)\nto CheckpointState(101 - 200)
& Node4 -> Node4: Add 3PCBatch(pp_seq_no=102)\nto CheckpointState(101 - 200)
@enduml
| false | true | false | false | sequence |
2992bbfd97f4b0b18c78be019703190ca22a9ad7 | 7264799fb65ec2de0fa0a505bbd481b3203540f1 | /bn-apps/ledger-sync/design/ledger-sync-service.puml | 4090fdd34b64a6182e658b3fc6f20f685dfb4871 | [
"Apache-2.0"
] | permissive | corda/corda-solutions | 4ec2407313febc25d9b3b8de2f147dea08260491 | fdc9d37a3d63acaa11fc836269305a5c31a4be6a | refs/heads/master | 2023-08-15T11:37:24.567399 | 2020-11-20T17:45:38 | 2020-11-20T17:45:38 | 136,237,634 | 34 | 51 | null | 2023-07-25T15:26:52 | 2018-06-05T21:36:35 | Kotlin | UTF-8 | PlantUML | false | false | 1,290 | puml | @startuml
== Get Memberships Flow ==
Initiator -> "Business Network Operator": Get Members
"Business Network Operator" --> Initiator: Set of BN members
== Evaluate Ledger Consistency Flow ==
loop for all node ∈ BN members
Initiator -> Initiator: Retrieve and hash transaction IDs\n\
of transactions with //Counterparty//
Initiator -> Counterparty: Compound hash of transactions
Counterparty -> Counterparty: Retrieve, hash transaction IDs of transactions\n\
with //Initiator// and compare with hash received
Counterparty --> Initiator: Do hashes match?
end
== Request Ledger Sync Flow ==
loop for all node ∈ BN Members
alt hash_match == false
Initiator -> Counterparty: Set of IDs of transactions with //Counterparty//
Counterparty --> Initiator: Set of findings, indicating missing transaction\n\
both on the //Inititator// and //Counterparty// side
end
end
== Transaction Recovery Flow ==
loop for all finding ∈ findings
alt contains recoverable transactions
Initiator -> Counterparty: Set of IDs of recoverable transactions with //Counterparty//
loop for all id ∈ relevant_transaction_ids
Counterparty --> Initiator: Transaction
end
end
end
@enduml | false | true | true | false | sequence |
13565c69d35b636e4d5c8159379ff32362994b2c | e3ebf221091ee30de418c963f078ccdd732eaa8c | /docs/diagrams/sequence_read_inbox.puml | 6da370016da984a7b9a09f34b2413a7a78b4e8bd | [
"Apache-2.0"
] | permissive | valb3r/datasafe | 97d9826bb2bc6a478abc56ad30848fcaad8f259a | 1b91e90128e2411339a9b904bb92144879b155bb | refs/heads/develop | 2020-05-31T16:55:05.487855 | 2019-06-05T13:00:08 | 2019-06-05T13:00:08 | 190,393,370 | 0 | 1 | Apache-2.0 | 2019-10-07T09:51:59 | 2019-06-05T12:48:13 | Java | UTF-8 | PlantUML | false | false | 899 | puml | @startuml
actor User
User->"Lookup server (default) / Interface" as ls : Get my inbox file list with **<&key>login/password**
box "Internal flow within lookup server"
ls->"Public key Service" as lss : get User public metadata from Lookup DFS
lss->"Lookup DFS Service" as DFS : Read public key store
DFS->lss : User **<&key>public key**
lss->DFS : Read public store for User using **<&key>public key**
DFS->lss : User inbox location and access key **s3:bucket : <&key>access**
end box
lss->ls : User inbox path **s3:bucket** and **<&key>access** credentials
ls->"Storage Service" as ss : access inbox **s3:bucket** storage using **<&key>access** credentials with **<&key>password**
ss->"Storage adapter" as sa : read keystore
sa->ss : user keystore
ss->ss : Decrypt **keystore** using **<&key>password**
ss->sa : List all inbox files
ss->ls : Inbox file list
ls->User : List of files in inbox
@enduml | false | true | false | false | usecase |
cba20f5a0d5c7bf745649d953cb3210e0d8648a1 | fb663195ffb81afe748ed5770b88158fd2bc863a | /doc/relations.puml | 7b30fbce57363aabd7b110b0050f18d2243afeff | [] | no_license | diegoami/JS_FE_musicblogs | f37507fe04fec9564da4d8af5a2797b2c5766981 | 3c96576c16a399b165237edc6718c7d7277c71e1 | refs/heads/master | 2023-01-20T03:45:51.601067 | 2020-07-05T02:37:32 | 2020-07-05T02:37:32 | 124,129,901 | 0 | 0 | null | 2023-01-04T00:42:55 | 2018-03-06T19:46:28 | JavaScript | UTF-8 | PlantUML | false | false | 1,125 | puml | In this
@startuml
Author --> Youtube : Find interesting song
Author --> Internet : Find lyrics of song
Author --> Blogspot : Create post containing song title, embedded youtube frame and song lyrics
@enduml
@startuml
update_posts.py --> Blogspot : Retrieve youtube ids and blog posts
update_posts.py --> Mongo_DB : Save youtube ids and blog posts
update_posts.py --> Amara.org : Retrieve lyrics for youtube ids
update_posts.py --> Mongo_DB : Save lyrics for youtube ids
update_posts.py --> Mongo_DB : Retrieve youtube ids
update_posts.py --> Youtube_API : Check what youtube videos are no longer accessible
update_posts.py --> Mongo_DB : Invalidate and delete videos unaccessible on youtube
update_posts.py --> Blogspot : Revert post with removed videos to draft
@enduml
@startuml
update_files.js --> Mongo_DB : Retrieve all posts ( + youtube ids, lyrics)
update_files.js --> Europoplyrics : Send exports of posts in json format
Europoplyrics --> Europoplyrics : load exports of posts in json format ( including youtube ids)
Europoplyrics --> Europoplyrics : shows interactively youtube videos and lyrics
@enduml
| false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.