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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d6f48cbc1cd3678929e91905d65cebc9fcd63836 | 221c5f448e92489ed23eba7d57e6b7f170456f8c | /diagrams/skeleton_usecases/SequenceDiagram_UseCases_PandaJumpsInLine.puml | 60a13c8024fa3a2b9212421f781e4eb81380eaeb | [] | no_license | bokovhu/software-project-laboratory-assignment | 04d4dfd5057ee946dcb9e84eb2829460af6f6b1b | 562730be5e4aa8dd1be9fd007618a2a4c28e7d6d | refs/heads/master | 2020-04-24T10:19:42.655964 | 2019-05-15T12:49:02 | 2019-05-15T12:49:02 | 171,890,819 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 724 | puml | @startuml
title Panda jumps in line
participant "w : JumpyWave" as w
participant "p1: SleepyPanda" as p1
participant "p2: JumpyPanda" as p2
participant "standingOn: Tile" as standingOn
participant "p3: CowardPanda" as p3
note over w
Jelen esetben a hullám egy olyan pandát
ugraszt meg (p2), amelyet egy SleepyPanda vezet (p1)
és amely egy CowardPandát vezet (p3)
end note
[->w: hit(p2)
activate w
w->p2 ++: jump()
p2->p2 ++ : stopLeading()
p2 -> p1 ++: setGuidedAnimal(null)
p1-->p2 --
p2 -> p3 ++: stopLeading()
p3--> p2--
p2->standingOn ++ : damage()
standingOn-->p2 --
note over standingOn
A damage() hatására a
csempe élete 1-gyel csökken
end note
p2-->p2 --
p2-->w --
[<-- w
deactivate w
@enduml | false | true | true | false | sequence |
02829e06d7ac38202617df626f1c2f5e9895167a | 4493a027962d95858f779cae6180cc621fe9cd2e | /checkout/domain/placeorder/states/transitions.puml | 4bca327a07d5f849c1c6c01dbb8754a7a8de9124 | [
"MIT"
] | permissive | i-love-flamingo/flamingo-commerce | 0a2364547e1f3c109e52ef73f15430f0656346bd | 2ce6a27cac0b227e28d5057716e69ba61dcab9ff | refs/heads/master | 2023-08-22T02:09:47.539982 | 2023-08-21T15:39:19 | 2023-08-21T15:39:19 | 179,104,176 | 462 | 76 | MIT | 2023-09-08T16:28:55 | 2019-04-02T15:11:57 | Go | UTF-8 | PlantUML | false | false | 2,020 | puml | @startuml
scale max 1024 width
hide empty description
title
= PlaceOrder state transitions
---
//top: internal state//
//bottom: exposed GraphQL state//
end title
state New: Commerce_Checkout_PlaceOrderState_State_Wait
state PrepareCart: Commerce_Checkout_PlaceOrderState_State_Wait
state ValidateCart: Commerce_Checkout_PlaceOrderState_State_Wait
state CreatePayment: Commerce_Checkout_PlaceOrderState_State_Wait
state CompleteCart: Commerce_Checkout_PlaceOrderState_State_Wait
state PlaceOrder: Commerce_Checkout_PlaceOrderState_State_Wait
state ValidatePayment: Commerce_Checkout_PlaceOrderState_State_Wait
state ValidatePaymentSelection: Commerce_Checkout_PlaceOrderState_State_Wait
state Failed: Commerce_Checkout_PlaceOrderState_State_Failed
state Success: Commerce_Checkout_PlaceOrderState_State_Success
state Validate {
state PostRedirect: Commerce_Checkout_PlaceOrderState_State_PostRedirect
--
state ShowWalletPayment: Commerce_Checkout_PlaceOrderState_State_ShowWalletPayment
--
state Redirect: Commerce_Checkout_PlaceOrderState_State_Redirect
--
state ShowHTML: Commerce_Checkout_PlaceOrderState_State_ShowHTML
--
state ShowIframe: Commerce_Checkout_PlaceOrderState_State_ShowIframe
--
state WaitForCustomer: Commerce_Checkout_PlaceOrderState_State_WaitForCustomer
--
state CompletePayment: Commerce_Checkout_PlaceOrderState_State_Wait
}
note top of Validate
Loops with ValidatePayment
until failed or success is reached
end note
[*] --> New
New -r-> PrepareCart
PrepareCart -d-> ValidateCart
PrepareCart -d-> Failed
ValidateCart -d-> ValidatePaymentSelection
ValidateCart -r-> Failed
ValidatePaymentSelection -d-> CreatePayment
ValidatePaymentSelection -r-> Failed
CreatePayment -d-> CompleteCart
CreatePayment -r-> Failed
CompleteCart -d-> PlaceOrder
CompleteCart -r-> Failed
PlaceOrder -d-> ValidatePayment
PlaceOrder -r-> Failed
ValidatePayment -r-> Validate
Validate -l-> ValidatePayment
Validate -u---> Failed
Validate -r-> Success
Failed --> [*]
Success -> [*]
@enduml
| false | true | false | false | state |
eca13c6973338521a08605c770ab3b3cb9795bae | 03402e58b19ad0fafda9468edaf5d8e8f82afd9c | /docs/antiphon.plantuml | 983c29d854eb2e4b8ed3878c1d0620bd8e6d788c | [] | no_license | Sylvain-Delafoy/antiphon | a09b733771afcfc48774a29e5c1ddad53f3d6e7f | 3598aa7625508e7af44c594961cf51e595a2d972 | refs/heads/master | 2020-04-05T20:32:34.814788 | 2018-11-15T12:41:57 | 2018-11-19T14:44:06 | 157,184,970 | 0 | 0 | null | 2018-11-19T14:44:07 | 2018-11-12T09:04:19 | TypeScript | UTF-8 | PlantUML | false | false | 765 | plantuml | @startuml confidentialité
package individuals{
class Individual{
name:String
surname:String
}
}
package skills {
class Skill{
name:String
}
enum Level{
UNKNOWN
BYNAME
SEEN
TRIED
PROJECT
MISSION
GREAT
}
class Wish{
asTutor:boolean
}
enum Format{
MAGISTRAL
SMALL_GROUP
ONE_ON_ONE
}
}
Skill "*" --> "*" Individual
(Skill, Individual) .. Level
Skill "*" --> "*" Individual
(Skill, Individual) .. Wish
Format "1" <-right- Wish
package authent{
class Credentials{
email: String
password: String
}
}
Credentials -right-> Individual: profile
@enduml | false | true | true | false | sequence |
531dd40909c932e0d21505fa739554990c66938a | 10603b701206cf2545d5ea3c8468c78d1be3735e | /architectures/diagrams/afterDownloadingIndexHtmlAnyHollowversePage.puml | d4e6c97c675e22fe845ebf7cdba2374489878f60 | [
"Unlicense"
] | permissive | hollowverse-archive/architecture | 8151e299057f353d07a88ef83805061ff7d731b7 | ce495edb8f6a39b3fed4a83de68cfb6ccbe7455f | refs/heads/master | 2022-01-08T01:21:13.801244 | 2018-08-04T10:23:57 | 2018-08-04T10:23:57 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 435 | puml | @startuml
participant Browser as browser
participant "hollowverse.com" as hollowverseCom
participant Splunk as sp
participant "Google Analytics" as ga
activate browser
browser -> hollowverseCom: Request CSS\nand JS files
activate hollowverseCom
hollowverseCom -> browser: Return CSS\nand JS files
deactivate hollowverseCom
browser -> sp: Log events\nto Splunk
browser -> ga: Log events\nto Google Analytics
deactivate browser
@enduml
| false | true | false | false | sequence |
ca0d320b5b725c165dee68f9c3eaf73b15518e1d | c071afa8c9ef0c26eae424fb721f292f903d7289 | /gfx/uml/DatabaseConnectionAdminMethods.plantuml | 749a13c11277e19885ea776ddac259886f2ea993 | [] | no_license | Konafets/thesis | 4628b7e675164690e4b1a8345eecd11c20d9cbfc | 94a27a586356d3b7356d0690cf4ed5dd6a0dc6b7 | refs/heads/master | 2016-09-06T18:47:47.614390 | 2014-05-26T17:51:30 | 2014-05-26T17:51:30 | 18,177,420 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 339 | plantuml | @startuml
set namespaceSeparator none
hide empty members
hide empty methods
class TYPO3.CMS.Core.Database.DatabaseConnection {
+admin_get_dbs(): array
+admin_get_tables(): array
+admin_get_fields($tableName): array
+admin_get_keys($tableName): array
+admin_get_charsets(): array
+admin_query($query): mysqli_result object
}
@enduml
| false | true | false | false | class |
8c800c882e190310a455a36a0608449e22ed688c | 72a5a01392ec431ac14c565adcfbab9b99df2607 | /docs/specs/service-framework/SyncherAPI.puml | f1b1c67c5d0fe518da4b86229be35570f9bcb7ab | [
"Apache-2.0"
] | permissive | jboulmal/dev-service-framework | c3abeb11d4ad24f3a5f233dda09654e277d59095 | c5ec618614d31c6dbb31539c0b59c7e0c3e7bf95 | refs/heads/master | 2021-01-21T03:37:55.073575 | 2016-08-26T10:45:33 | 2016-08-26T10:45:33 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,871 | puml | @startuml
interface SyncSubscription {
url: HypertyURL
}
interface SyncStatus {
status: on | paused | waiting
pause(): void
resume(): void
stop(): void
}
class Syncher {
owner: HypertyURL
__
constructor(owner: HypertyURL, bus: MiniBus, config: Config)
create(schema: SchemaURL, observers?: [HypertyURL], initialData?: JSON): Promise<DataObjectReporter>
subscribe(schema: SchemaURL, url: ObjectURL): Promise<DataObjectObserver>
read(url: ObjectURL): Promise<JSON>
__ event handlers __
onNotification(callback: (event: CreateEvent | DeleteEvent) => void): void
}
class DataObject {
url: ObjectURL
data: JSON
schema: SchemaURL
addChild(children: string, initialData: JSON): Promise<DataObjectChild>
__ event handlers __
onChange(filter: string, callback: (event: ChangeEvent) => void): void
onAddChil(callback: (event: CreateEvent) => void): void
}
class DataObjectChild {
childId: URL
data: JSON
__ event handlers __
onResponse(callback: (event: ReponseEvent) => void): void
onChange(callback: (event: ChangeEvent) => void): void
}
class DataObjectReporter {
inviteObservers(observers: [HypertyURL]): void
__ event handlers __
onSubscription(callback: (event: SubscribeEvent | UnSubscribeEvent) => void): void
onResponse(callback: (event: ReponseEvent) => void): void
onRead(callback: (event: ReponseEvent) => void): void
}
class DataObjectObserver {
owner: HypertyURL
}
interface Event {
identity: ?Identity.Identity
url: URL
type: create | delete | subscribe | unsubscribe | response | change
}
interface CreateEvent {
from: HypertyURL
value: JSON
schema?: SchemaURL
ack(type): void
}
interface DeleteEvent {
object: DataObjectObserver
}
interface SubscribeEvent {
accept(): SyncSubscription
reject(reason): void
}
interface UnSubscribeEvent {
object: SyncSubscription
}
interface ResponseEvent {
code: int
source?: HypertyURL
}
interface ChangeEvent {
cType: update | add | delete
oType: object | array
field: string /*separated dot path*/
data?: value | [value]
}
interface ReadEvent {
accept(): void
reject(reason): void
}
CreateEvent --|> Event
DeleteEvent --|> Event
SubscribeEvent --|> Event
UnSubscribeEvent --|> Event
ResponseEvent --|> Event
ChangeEvent --|> Event
ReadEvent --|> Event
SyncSubscription --|> SyncStatus
DataObject --|> SyncStatus
DataObject *--"*" DataObjectChild:children
DataObjectObserver ---|> DataObject
DataObjectReporter ---|> DataObject
DataObjectReporter *--"*" SyncSubscription:subscriptions
Syncher *--"*" DataObjectReporter:reporters
Syncher *--"*" DataObjectObserver:observers
DataObjectChild -[hidden]down- DeleteEvent
DataObjectChild -[hidden]down- CreateEvent
DataObjectChild -[hidden]down- SubscribeEvent
DataObjectChild -[hidden]down- UnSubscribeEvent
DataObjectChild -[hidden]down- ResponseEvent
@enduml
| false | true | false | false | class |
2839c5e7fd3381028799820511003cd8d38b93df | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii06/doc/plantuml/ua/khpi/oop/malokhvii06/package.puml | 5e40917d81b6073171a672d84c07f89ad3588ee2 | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
namespace ua.khpi.oop.malokhvii06 {
class Application {
-Application()
{static} +main(String[]): void
}
}
@enduml
| false | true | false | false | class |
768dcf5a84f233a5502f420c0002c10e327ab5d1 | b2be1f2c659ff90e5be7a97f52150c3f278e4c70 | /behavioral_patterns/observer/observer.puml | 4f0f5446883caca54a9a9616576ce037fd3d644c | [] | no_license | sirejik/software-design-patterns | a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc | 67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58 | refs/heads/master | 2023-01-05T09:55:51.669200 | 2020-11-05T17:02:20 | 2020-11-05T17:02:20 | 298,362,438 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 279 | puml | @startuml
interface Subject {
attach()
notify()
}
interface Observer {
update()
}
Subject -> Observer
class ConcreteSubject {
}
Subject <|-- ConcreteSubject
class ConcreteObserver {
}
Observer <|-- ConcreteObserver
ConcreteSubject o- ConcreteObserver
@enduml
| false | true | false | false | class |
b6259319af5535a1217884c8b868dd93209ef920 | c5ffaaa249837c517061968c20270f2a87780afd | /Diagrams/exercise-2.plantuml | 2301ed8590e4893e087a2bb727d4e0946b7a5a6d | [
"CC-BY-SA-3.0",
"MIT"
] | permissive | FrederikRothe/BDSA_Assignment4 | 08ed625d211d862716c9ee43aa22bd70cb1bf6c1 | a4279f1167077aa410817d42546354df0be29c78 | refs/heads/main | 2023-08-21T17:24:22.983104 | 2021-10-11T19:01:21 | 2021-10-11T19:01:21 | 412,414,131 | 0 | 0 | MIT | 2021-10-11T19:01:22 | 2021-10-01T09:58:56 | C# | UTF-8 | PlantUML | false | false | 974 | plantuml | @startuml
enum State {
New
Active
Resolved
Closed
Removed
}
class Task {
Id : int
Title : string
AssignedTo? : User
State : State
Description? : string
Tags : Tag[]
}
note left of Task::AssignedTo
Optional reference to User entity
end note
note left of Task::Tags
many-to-many reference to Tag entity
end note
class User {
Id : int
Name : string
Email : string
Tasks : Task[]
}
note left of User::Name
string(100)
end note
note left of User::Email
string(100), required, unique
end note
note left of User::Tasks
list of Task entities belonging to User
end note
class Tag {
Id : int
Name : string
Tasks : Task[]
}
note left of Tag::Name
string(50), required, unique
end note
note left of Tag::Tasks
many-to-many reference to Task entity
end note
User "1\nAssignedTo" -up-- "*\nTasks" Task
Tag "*\nTags" -down-- "*\nTasks" Task
State "1\nState" -left-- "*" Task
@enduml | false | true | false | false | state |
124dc847b96679a09d3685571ba4221b5dd0b1c2 | 190b5e4e1ade4d3bf4e168c93db037dd84dba802 | /ThingBook Domain Objects.puml | 5f9d4fa2ef699bcbc1aa10098412a4e79b290a85 | [] | no_license | kerry-t-johnson/thingbook-doc | 067e70587b3831320ece5fd1c7a920f292f9919b | 5f97b2381f31c9285e61c8839dbbefc3d2e392f3 | refs/heads/master | 2023-04-02T02:15:03.431817 | 2021-04-10T19:33:34 | 2021-04-10T19:33:34 | 356,671,959 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,394 | puml | @startuml "ThingBook Domain Objects Class Diagram"
package "Domain Layer" {
hide methods
class User <<domain object>> {
emailAddress
}
enum Role <<domain object>> {
Organization Manager
Data Manager
User Manager
}
class OrganizationRole <<domain object>> {
organizationUUID
roleUUID
}
enum OrganizationStatus <<domain object>> {
Pending
Verified
}
class Organization <<domain object>> {
name
domainName
sensorThingsAPI
}
class Observation <<domain object>>
class CompositeDataStream <<domain object>>
class DataType <<domain object>>
class DataSharingTemplate <<domain object>> {
name
uuid
version
manualApproval
}
class DataSharingAgreement <<domain object>> {
uuid
state
expirationDateTime
qos
producerUUID
consumerUUID
electronicSignature
}
enum DataSharingFragmentType <<domain object>> {
Authorization
Obligation
Prohibition
}
class DataSharingFragment <<domain object>> {
name
text
}
class DataStream <<domain object>> {
dataStreamURL
dataTypeUUID
}
}
User *-right- "0..*" OrganizationRole
User o-- Organization
OrganizationRole o-right- Role
Organization *-left- OrganizationStatus
OrganizationRole o-- Organization
CompositeDataStream --> Observation : produces
Organization "1" o-- "0..*" DataStream : owns
Organization o-- DataSharingTemplate
DataStream --> CompositeDataStream : contributes to
Organization "1" o-- "0..*" Organization : sub-organizations
Organization o-- DataSharingAgreement
DataSharingTemplate <- DataSharingAgreement : parent
DataSharingAgreement --> CompositeDataStream : governs
DataStream o-- "1" DataType
CompositeDataStream o- "1..*" DataType
DataSharingTemplate o-- "0..*" DataSharingFragment
DataSharingFragment *-down- DataSharingFragmentType
@enduml | false | true | false | false | sequence |
7c9a943a5fafc11db967e76aa25573ffa87a31b5 | 76e49e714b0d3f0bcfbd96331cbac979c415a5ac | /uml diagrams/classes.plantuml | 96e250344744280736905f10a8aba86418c57f10 | [] | no_license | Roggired/prog-lab2 | fa2593773ea4617125a9aea3c3005a310bc8eb3d | c46da8794c5cfd47e2fdcd49928dde1c9cc37f0f | refs/heads/master | 2020-08-06T21:32:21.386710 | 2019-10-21T13:21:48 | 2019-10-21T13:21:48 | 213,161,875 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,759 | plantuml | @startuml
top to bottom direction
skinparam headerFontSize 30
skinparam headerFontStyle bold
skinparam classAttributeIconSize 0
scale 1.0
package app {
class app.App {
.. Fields ..
.. Methods ..
.. Static ..
+ {static} main() : void
- {static} GREETINGS : String
- {static} STUDENT_NAME : String
}
}
package lab.eventSystem {
interface lab.eventSystem.IObserver {
.. Methods ..
+ {abstract} notify(Event) : void
}
class lab.eventSystem.Event {
}
class lab.eventSystem.EventSystem {
.. Fields ..
.. Methods ..
+newEvent() : void
+subscribe(IObserver) : void
+unsubscribe(IObserver) : void
.. Static ..
+ {static} getSingleton() : EventSystem
- {static} observers : List
- {static} singleton : EventSystem
}
}
package lab.participant {
class lab.participant.Participant {
.. Fields ..
-commonPhrases : List
-name : String
-specialPhrases : List
.. Methods ..
-getLastPhrase() : String
-getLastSpecialPhrase() : String
+getName() : String
-havePhrase() : Boolean
-removeLastPhrase() : void
+say(PrintStream) : void
+saySpecial(PrintStream) : void
+wasLastPhrase() : Boolean
}
}
lab.eventSystem.IObserver <|.. lab.battleService.BattleService
lab.labAcceptingService.LabAcceptingService.SpecialSayTask *-- "0..*" lab.participant.Participant
lab.labAcceptingService.LabAcceptingService.SpecialSayTask o-- "1..1" lab.participant.Participant
effects.IEffect <|.. effects.OneTurnEffect
lab.labAcceptingService.LabAcceptingService.SayTask *-- "0..*" lab.participant.Participant
lab.labAcceptingService.LabAcceptingService.SayTask o-- "1..1" lab.participant.Participant
lab.eventSystem.IObserver <|.. lab.labAcceptingService.LabAcceptingService
lab.eventSystem.EventSystem *-- "0..*" lab.eventSystem.IObserver
effects.IEffect <|.. effects.MultiTurnEffect
@enduml
| false | true | false | false | class |
d9d93fc70cd2774cf0443cb24d99e560b0dd37f9 | 8291de95cd16e25aa7f20bc5e30fcdbac31d7755 | /dokumentation/diagramm/angebot_merken_intern.puml | 24e2ec257291fee5c4b59eb13d8bd38b14d030c9 | [
"Apache-2.0"
] | permissive | acodingsquirrel/baufismart-vorgaenge-api | 59c97eed9be9e155963f7deec85288663cbc0f9a | c1e4e4e4c4e11b0fdbedd962b7797414786cb639 | refs/heads/master | 2022-08-01T03:57:16.451940 | 2020-04-30T14:37:19 | 2020-04-30T14:37:19 | 265,209,522 | 0 | 0 | Apache-2.0 | 2020-05-19T09:54:35 | 2020-05-19T09:54:34 | null | UTF-8 | PlantUML | false | false | 1,138 | puml | @startuml
hide footbox
title Angebot merken
box "Interne Aufrufe" #LightBlue
participant "Vorgänge API" as vorgaenge_api
participant "Core" as core
end box
actor Client as client
participant "ELI" as eli
box "Interne Aufrufe" #LightBlue
participant "Vorgänge API" as vorgaenge_api
participant "Core" as core
end box
client [#00AA00]-> eli: ermittle Angebote (POST, Anfrage: 'ErfassteDaten' )
activate eli
eli [#00AA00]--> client: Angebote
deactivate eli
client -> vorgaenge_api: erzeuge Vorgang
activate vorgaenge_api
vorgaenge_api -> core: erzeuge Vorgang
core --> vorgaenge_api: Vorgangsnummer
vorgaenge_api --> client: Vorgangsnummer
client -> vorgaenge_api: Erfasste Daten speichern (Vorgangsnummer)
client -> vorgaenge_api: merke Angebot (Vorgangsnummer,angebotsId,(optionale 'gemerkteAngebotsId'))
vorgaenge_api -> eli: lese Angebot (angebotsId)
activate eli
eli --> vorgaenge_api: Angebot
deactivate eli
vorgaenge_api -> core: speichere Angebot (Vorgangsnummer,Angebot, 'gemerkteAngebotsId')
core --> vorgaenge_api: gemerkteAngebotsId
deactivate vorgaenge_api
vorgaenge_api --> client: gemerkteAngebotsId
@enduml | false | true | true | false | usecase |
323e4688475ca64eb6beb53f84d670a45c8f1330 | feea725d8b6091ec803659cb1092516a15d6fd7e | /src/main/java/ex44/ex44.puml | 7549e6a4b5c8b80330d2290e7c48224aae2a1ce5 | [] | no_license | simonautran/autran-cop3330-assignment3 | 73e97e06262c3cbf04bd017dc9d86f94d210073e | 4ff24a05a61106681466da954b90e6271e0b9b8a | refs/heads/main | 2023-05-30T19:23:55.457315 | 2021-06-21T03:17:53 | 2021-06-21T03:17:53 | 378,757,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 198 | puml | @startuml
'https://plantuml.com/class-diagram
class ex44
{
Item: ObjectManger
readObject()
findObject()
}
class Object{
String name
double price
int quantity
}
ObjectManager->Object
@enduml
©
| false | true | true | false | class |
7129cb1df820dcd909ecc69b83ebb7925f5ad3dc | 70b52b6b0217b218c77a7ab5acbdf2fce264e89f | /src/main/java/cs/service/core/filter/filter.plantuml | 86bc1ffb4b59b44e37ad647767d8c2fdc434fcf0 | [] | no_license | 123cs/demo_java | b1f7befdd19640ccd241b85c5b297db02913588d | 209d9edeb6da39fe58e28190ad2327f7cb66645a | refs/heads/master | 2020-04-07T16:25:02.300852 | 2018-11-21T10:51:23 | 2018-11-21T10:51:23 | 158,528,295 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 455 | plantuml | @startuml
title __FILTER's Class Diagram__\n
package cs.service.core {
package cs.service.core.filter {
class LoggingFilter {
+ init()
+ doFilter()
+ destroy()
}
}
}
LoggingFilter -up-|> Filter
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 |
1064099de44fe9b41113953d850a9a90e53251c5 | 81283d050eda4df193232063405becf128a5fde4 | /application/uml/KartuPenyuluhan.puml | d12dfa185c9c6d0a2587585348ef2f29fc6eae16 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | azharsiddiq36/madrep-web-services | 056d9fa6fe7c19410c4c2cac3c8e241411580105 | b3a90f6ca1072be085dd33fe17af3bd93ea20c0f | refs/heads/master | 2020-07-31T21:04:17.906954 | 2019-09-25T04:10:11 | 2019-09-25T04:10:11 | 210,753,198 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 578 | puml | @startuml
actor PembimbingKemasyarakatan
boundary laporan
control BimbinganController
entity Model_Napi
PembimbingKemasyarakatan->laporan:Klik Cetak Surat
laporan->BimbinganController : bukti_laporan()
BimbinganController->laporan : redirect()
laporan->PembimbingKemasyarakatan : redirect()
PembimbingKemasyarakatan->laporan : Pilih Aksi
laporan->BimbinganController : getNapi(id_napi)
BimbinganController->Model_Napi : get_one(id)
Model_Napi->BimbinganController :redirect()
BimbinganController -> laporan : redirect()
laporan ->PembimbingKemasyarakatan : redirect()
@enduml | false | true | false | false | usecase |
10a39f6f4d1d5839bd04356cca13e88e4d2a03b0 | 3cdb6adfdaed54bdf50c6adf89ed9d1653d637a3 | /app/src/main/java/com/shuyun/androidnotes/components/lifecycle/lifecycle_viewmodel.puml | c3c0745e9fee755e015569f76bc182e5554431c5 | [] | no_license | Shuyun6/AndroidNotes | c3b26a48239a9f2397fdf9d057d7d9dd27df2417 | 5573b4749f7ecce77997eb8166a4d651b93fdfe4 | refs/heads/master | 2020-03-19T11:18:36.156844 | 2020-03-09T15:06:15 | 2020-03-10T15:07:34 | 136,442,024 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,507 | puml | @startuml
abstract class ViewModel{
#onCleared() : void
}
class AndroidViewModel{
- application : Application
+ AndroidViewModel(application : Application)
+ getApplication() : <T extends Application>
}
interface ViewModelStoreOwner{
+ getViewModelStore() : ViewModelStore
}
class ViewModelStore{
- mMap : HashMap<String, ViewModel>
put(key : String, viewModel : ViewModel) : void
get(key : String) : ViewModel
+ clear() : void
}
class ViewModelProvider{
- DEFAULT_KEY : String
- mFactory : Factory
- mViewModelStore : ViewModelStore
+ ViewModelProvider(owner : ViewModelStoreOwner, factory : Factory)
+ ViewModelProvider(store : ViewModelStore, factory : Factory)
+ get(modelClass : Class<T>) : <T extends ViewModel>
+ get(key : String, modelClass : Class<T>) : <T extends ViewModel>
}
interface Factory{
create(modelClass : Class<T>) : <T extends ViewModel>
}
class NewInstanceFactory{
create(modelClass : Class<T>) : <T extends ViewModel>
}
class AndroidViewModelFactory{
- sInstance : AndroidViewModelFactory
- application : Application
+ getInstance(application : Application) : AndroidViewModelFactory
+ AndroidViewModelFactory(application : Application)
+ create(application : Application) : <T extends ViewModel>
}
'/Relationship
ViewModel <|-- AndroidViewModel
ViewModel <- ViewModelStore
ViewModelProvider --> ViewModelStore
ViewModelProvider +--> Factory
ViewModelProvider .> ViewModelStoreOwner
Factory <|.. NewInstanceFactory
NewInstanceFactory <|.. AndroidViewModelFactory
@enduml | false | true | false | false | class |
d47d1a54a998e4edfe15477c61e2db2eb7a6ffe5 | db1bf3c38ac47b341d5f21608eee68575939515b | /program_Structure.plantuml | 6fa7d2371451f9045184e866bcaf09748cc10498 | [] | no_license | TheElk205/RotorTestingBench | 6937e599e429991c63d527090da800f38969bd92 | a6bb14616b01285af6148686221e613bba7d3db2 | refs/heads/master | 2021-01-10T23:33:17.948955 | 2016-11-10T09:49:02 | 2016-11-10T09:49:02 | 70,594,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,230 | plantuml | @startuml
package "Python" as mainPack{
node "Serial Communication" as serCom
node "Controls" as controls
node "Other control (console)" as otherControls
package "Measurement Values processing" {
node "Value Mapper" as mapper
node "values collector" as valuesCol
node "Measurement Values Processor" as valuesProc
}
package "Graphical Components" {
node "Graphical controls" as graphicControls
node "GUI" as graphics
}
node "Main Program" as main
}
package "Arduino" as arduino {
node "Program" as arduinoMain
}
serCom --> valuesProc : "1 Reads values"
valuesProc --> mapper : "2 Maps Values"
mapper --> valuesProc : "3 Returns mapped values"
valuesProc --> valuesCol : "4 Collect values"
valuesCol --> valuesProc : "5 Return collection"
valuesProc --> main
main --> graphics
graphicControls --> controls
otherControls --> controls
controls --> main
main --> serCom
graphics --> graphicControls
graphicControls --> graphics
serCom --> arduinoMain
note right of mapper
Maps values to a specific function
e.g. Analog read produces 0-1023 --> Mapped to newton
end note
note right of valuesCol
For example if you only want to display
the mean of the las 100 measurements
end note
@enduml
| false | true | false | false | sequence |
dc70d52f78f7d7ffbfbbe2029abcecc4374215ea | fc8788351f4847614e198624c3f1cb3352803fde | /src/main/java/org/example/ex46/ex46UML.puml | 9fc9da67e1b303ed1daae7540843e73ef3a32f77 | [] | no_license | itsSPECTOR/spector-cop3330-assignment3 | 88df1eb4d250d89055bc6bb60c3b98ffa20a8449 | 8f89b5dc4e0df8dbb45887912c4443f474c54fbe | refs/heads/master | 2023-08-15T03:55:32.625798 | 2021-10-09T23:32:49 | 2021-10-09T23:32:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 828 | puml | @startuml
'https://plantuml.com/class-diagram
AppMain -> inputFile
inputFile -> fileParser
fileParser -> printResult
printResult --> printBadger
printResult --> printMushroom
printResult --> printSnake
printResult -> success
abstract fileParser{
File namesFile = new.txt
Scanner txtReader
}
abstract printResult
{
int i,j,K
while (txtReader.hasNextLine())
if(badger)... i++;
if(mushroom)... j++;
if(snake)... k++;
}
Class printBadger{
int i;
for()
System.out.format(...);
}
Class printMushroom{
int j;
for()
System.out.format(...);
}
Class printSnake{
int k;
for()
System.out.format(...);
}
abstract inputFile{
File new input.txt;
}
class success{
Junit5 Success;
}
class AppMain {
<list> words;
int i,j,k;
String temp;
}
@enduml | false | true | false | false | activity |
f265cdbcab40fe78d23c7081226131a84e3e2236 | 8bf0cb01418f5d23c00ef592d00edbbdf1acdd0f | /UML/classes-diagram.puml | 60106256efb8afe0ff561037f58d0d21af76b03e | [] | no_license | colisbree/test | 1bea64455f30e8a0fd0db146f44a55b90578b4e9 | c1d8376fa0fd85af5f8cbb66d6877f657b5e4c4f | refs/heads/master | 2023-04-04T14:09:34.295146 | 2021-04-17T15:34:37 | 2021-04-17T15:34:37 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,203 | puml | @startuml
package "BusinessRule" #FFF {
package "Entity" #EEEEEE {
class User {
{field} id: int
{field} firstName: string
{field} lastName: string
{field} email: string
{field} password: string
{field} plainPassword: string
{field} RegisteredAt: DateTimeInterface
}
class JobSeeker{
{field} gradeLevel: int
{field} activity: String
{field} presentation: String
{field} phone: String
{field} available: bool
{field} availableFrom: DateTimeInterface
{field} minSalary: int
{field} maxSalary: int
{field} location: String
{field} remote: bool
{field} remoteOnly: bool
{field} id: int
{field} id: int
}
class Recruiter
class Offer{
{field} id: int
{field} name: string
{field} compagnyDescription: string
{field} jobDescription: string
{field} missions: string
{field} tasks: string
{field} profile: string
{field} softSkills: string
{field} minSalary: int
{field} maxSalary: int
{field} location: string
{field} remote: bool
{field} publishedAt: DateTimeInterface
{field} deletedAt: DateTimeInterface
}
class Application{
{field} id: int
{field} sentAt: DateTimeInterface
{field} message: string
{field} state: string
{field} reasonForRefusal: ?null
}
class Interest
class BusinessSector
class Job
class Skill
class WorkExperience
class EducationalBackground
class Media
class locale
class LocaleLevel
class ContractType
class Notification
class NotificationModel
User <|-- JobSeeker
User <|-- Recruiter
User "One" --o "Many" Notification : to
NotificationModel "One" --o "Many" Notification : to
Recruiter "One" --o "Many" Offer : to
JobSeeker "One" --o "Many" Application : to
Offer "One" --* "Many" Application : to
Offer "Many" *-- "One" Job : to
Offer "Many" *-- "Many" Skill : to
Offer "Many" *-- "One" ContractType : to
Offer "One" o-- "Many" LocaleLevel : to
JobSeeker "One" --* "Many" Interest : to
Offer "One" --* "Many" Interest : to
Job "Many" *-- "One" BusinessSector : to
JobSeeker "Many" *-- "One" Job : to
JobSeeker "Many" *-- "Many" Skill : to
JobSeeker "Many" *-- "Many" ContractType : to
JobSeeker "One" o-- "Many" WorkExperience : to
JobSeeker "One" o-- "Many" EducationalBackground : to
JobSeeker "One" o-- "Many" Media : to
JobSeeker "One" o-- "Many" LocaleLevel : to
locale "One" --* "Many" LocaleLevel : to
}
' package "Use Case" #EEEEEE {
' class AcceptApplication
' class CloseApplication
' }
}
@enduml | false | true | false | false | class |
6d29f511491d0c4f0de3f25e06c073e806ebb725 | 3ca3a945db859a15f2f772f67c9d743564676a1d | /UML/UML Diagram.puml | 0ee03be9c0608b0518a2671a81051273bc39ad09 | [] | no_license | pl224701/Nelson-cop3330-assignment4 | c33d6c9c8564a995ba8b35f0f8bbf741963d75ae | 5da01567c6df7f4da94423bacda69d21447b2f14 | refs/heads/master | 2023-08-28T11:35:05.702362 | 2021-11-01T23:20:56 | 2021-11-01T23:20:56 | 423,525,333 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,185 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
@startuml
class App
{
fxmlloader: FXMLLoader
scene: Scene
public static void main(String[] args)
public void start(Stage stage)
}
class list
{
public static ArrayList<toDoList> lists
class toDoList()
Title: String
Item: String[]
Due_Date: String[]
Description: String[]
Completed: boolean[]
}
class new_toDoList
{
List: toDoList
Title: String
Add()
}
class remove_toDoList
{
List_number: int
remove()
}
class add_item
{
List_number: int
Item_name: String
Item_description: String
Item_due_date: String
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
add()
}
class remove_item
{
List_number: int
Item_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
remove()
}
class edit_title
{
List_number: int
New_title: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
edit()
}
class edit_description
{
List_number: int
Item_number: int
New_description: String
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
edit()
}
class edit_toDoDate
{
List_number: int
Item_number: int
New_due_date: String
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
edit()
}
class complete
{
List_number: int
Item_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
List: toDoList
completed()
}
class sortby
{
List_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
Temp_item: String
Temp_description: String
Temp_due_date: String
Temp_boolean: String
List: toDoList
duedate()
}
class display
{
List_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
item_display()
}
class completed_display
{
List_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
display()
}
class incompleted_display
{
List_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
display()
}
class SingleSave
{
List_number: int
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
File outfile
output()
}
class MultipleSave
{
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
File outfile
output()
}
class load_single
{
Path: String
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
Next_line: String
i: int
List: toDoList
load()
}
class load_multiple
{
Path: String
Title_copy: String
Items_copy: String[]
Description_copy: String[]
Due_dates_copy: String[]
Completed_copy: boolean[]
Next_line: String
i: int
List: toDoList
load()
}
list o-- new_toDoList
list o-- remove_toDoList
list o-- add_item
list o-- remove_item
list o-- edit_title
list o-- edit_description
list o-- edit_toDoDate
list o-- complete
list o-- sortby
list o-- display
list o-- completed_display
list o-- incompleted_display
list o-- SingleSave
list o-- MultipleSave
list o-- load_single
list o-- load_multiple
@enduml
| false | true | false | false | class |
d08b9ce75b4b317847251bfbe3824e244678db90 | 504e3ec1cb6d482b3e80444a307007ba71a24dea | /es3/rmitter/model.puml | 98954c5a95ec31ab3461c6f675a91831fe6b8740 | [] | no_license | marioscrock/ingsoft-prova-finale-19 | ba0215b2be22524e338465e23ced683eaae47653 | f54561bd0195e3f7975be99d25621af5360e707d | refs/heads/master | 2021-06-28T02:10:48.600081 | 2019-10-10T17:05:01 | 2019-10-10T17:05:01 | 173,075,460 | 28 | 5 | null | 2020-10-13T12:21:11 | 2019-02-28T08:47:31 | Java | UTF-8 | PlantUML | false | false | 1,179 | puml | @startuml
interface Serializable
package rmi.rmitter.model {
class Database <<Singleton>> {
{static} - instance: Database
- usersByName: Map<String, User>
- usersByToken: Map<String, User>
- hashtags: Map<String, Hashtag>
+ <<sync>> getLoggedUser(String token): User
+ <<sync>> getOrCreateHashtag(String ht): Hashtag
+ <<sync>> login(String username): String
+ <<sync>> logout(String token)
}
class Post {
- content: String
- poster: User
- taggedUsers: List<User>
- hashtags: List<Hashtag>
+ <<constructor>> Post(User poster, String content)
+ getContent(): String
+ getPoster(): String
+ getTaggedUsers(): List<User>
+ getHashtags(): List<Hashtag>
}
class User {
- username: String
- followers: List<User>
- numberOfPosts: int
+ <<constructor>> User(String username)
+ getUsername(): String
+ getPostCount(): int
+ getNumberOfFollowers(): int
+ follow(User user)
+ mention(Post post)
+ followeePosted(Post post)
+ post(String content): Post
}
class Hashtag {
- tag:String
+ <<constructor>> Hashtag(String tag)
+ usedIn(Post post)
}
Serializable <|... Post
Serializable <|... User
Serializable <|... Hashtag
Database --> "many" User
Database --> "many" Hashtag
}
@enduml | false | true | false | false | sequence |
396e3609c65aaf9f645853f8f63174895ff14f6f | 9eaf719cae54e37f59b4d7d3acfeb8475d8a3723 | /docs/UML/SequenceDiagrams/GetPayInfo.puml | 87707fc7a9581a030b0d7968018e947de8d98afe | [] | no_license | Belapko-Aleksey/PAS | 7d8fa2cb56dbd4fd831802672a0e07d96c5e820e | bf0d811cbc2b552b38c514a1f8f4f169fe7bdff4 | refs/heads/main | 2023-02-04T07:29:46.370053 | 2020-12-17T07:34:30 | 2020-12-17T07:34:30 | 316,526,503 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,046 | puml | ```plantuml
@startuml GetPayInfo
hide footbox
actor User
User -> "Payment page : UI" as UI: GetPayScript
activate UI
UI -> PayController: << POST >>
activate PayController
PayController -> PaymentsService: get(email,link)
activate PaymentsService
deactivate PayController
PaymentsService -> PaymentsService: checkExists
activate PaymentsService
deactivate PaymentsService
alt exist == false
PaymentsService --> PayController: NotFound
activate PayController
PayController --> UI : NotFound
deactivate PayController
UI --> User: Error(NotFound)
else exist == true
database Database
PaymentsService -> PaymentsService: GetPayment
activate PaymentsService
PaymentsService -> Database: getPayment
activate Database
PaymentsService <-- Database: PaymentInstance
deactivate Database
deactivate PaymentsService
PaymentsService --> PayController: returnPaymentInstance
deactivate PaymentsService
activate PayController
PayController --> UI : PaymentInfo
deactivate PayController
UI --> User: Success(Details)
deactivate UI
end
@enduml
``` | false | true | false | false | usecase |
5885907d195888507e06ea95af9ceca9d370ae4e | 5635c597a38479879c55c4594c8b09877ef1102b | /src/main/java/org/hfeng/misc/hfdp/ch10/state/winner/gumball-winner-state.puml | 96a8d204568a597d8aa6ed5be5bd8282b0cda35c | [] | no_license | harrifeng/java-in-action | 6c4d49f51634e5397606690710331438e4835a9f | e9b88ecf2fd2033e1848234c770fb3967fb1ec9d | refs/heads/master | 2020-11-26T18:31:08.066713 | 2015-05-19T01:04:17 | 2015-05-19T01:04:17 | 23,460,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 484 | puml | @startuml
scale 350 width
[*] --> NoQuarter
HasQuarter --> NoQuarter : eject quarter
HasQuarter --> GumballSold : turns crank
NoQuarter --> HasQuarter : insert quarter
GumballSold --> NoQuarter : dispense gumball and gumballs > 0
GumballSold --> OutOfGumballs : dispense gumball and gumballs = 0
HasQuarter --> Winner: turns crank, we have a winner
Winner --> NoQuarter: dispense 2 gumballs and gumballs > 0
Winner --> OutOfGumballs: dispense 2 gumballs and gumballs = 0
@enduml
| false | true | false | false | sequence |
7c38e76e1d23242d804c1b3839af34eecc10f887 | e8e3c479fdc72120280486222e36fbd721c3e2fa | /Project/uml.puml | 3bb61c26739c069348fffbedfbd6cf0e6369d165 | [] | no_license | Tiagocl/FEUP-LPOO | 7010545a9baed3a1f4390b1ee755e3d400dbcb82 | 14c6b3f1c1f9d696425162e9745b9c00afab06da | refs/heads/master | 2023-04-09T21:49:50.175452 | 2021-04-21T14:32:13 | 2021-04-21T14:32:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,747 | puml | @startuml Pokemon
package data {
package elements {
class Element
class CollidingElement
}
package options {
class BattleOptionsModel
class FightOptionsModel
class Option
class OptionsMenuModel
}
package pokemon {
class Pokemon
abstract class PokemonExperience
class PokemonMove
class PokemonSpecies
class PokemonStats
class PokemonType
}
class BattleModel
class Grass
class Obstacle
class Player
class PokemonTile
class Position
class Rect
class Tile
class WorldModel
}
package gui {
package renderers {
package bar {
abstract class BarRenderer
class ExperienceBarRenderer
class HealthBarRenderer
}
package menu {
class BattleMenuRenderer
class BattleOptionsMenuRenderer
class FightOptionsMenuRenderer
abstract class OptionsMenuRenderer
}
package "pokemon " {
class PokemonRenderer
class PokemonInfoRenderer
}
package text {
class CharRenderer
class TextRenderer
}
class BackgroundRenderer
class PlayerRenderer
interface Renderer
}
class BattleView
class GameView
class Sprite
class Image
class WorldView
}
package rules {
package commands {
package optionsmenu {
class OptionsMenuDownCommand
class OptionsMenuGoBackCommand
class OptionsMenuLeftCommand
class OptionsMenuRightCommand
class OptionsMenuUpCommand
}
package player {
class PlayerMoveDownCommand
class PlayerMoveLeftCommand
class PlayerMoveRightCommand
class PlayerMoveUpCommand
}
class ChoseOptionCommand
interface Command
class DoNothingCommand
class QuitCommand
class UsePokemonMoveCommand
}
class BattleController
class GameController
class OptionsMenuController
class WorldController
}
class Game
Game *-- GameView
Game *-- GameController
GameController *-- GameView
BattleModel *-- Pokemon
BattleModel *-- OptionsMenuModel
BattleController *-- BattleView
BattleController *-- BattleModel
BattleController *-- OptionsMenuController
BattleView *-- BattleModel
BattleView *-- BackgroundRenderer
BattleView *-- PokemonRenderer
BattleView *-- PokemonInfoRenderer
BattleView *-- BattleMenuRenderer
WorldModel *-- Player
WorldModel *-- CollidingElement
WorldModel *-- Tile
WorldController *-- WorldView
WorldController *-- WorldModel
WorldView *-- PlayerRenderer
WorldView *-- BackgroundRenderer
WorldView *-- WorldModel
Element <|-- CollidingElement
Element *-- Position
CollidingElement <|-- Player
CollidingElement <|-- Obstacle
CollidingElement *-- Rect
Player *-- Pokemon
Pokemon *-- PokemonSpecies
Pokemon *-- PokemonStats
Pokemon *-- PokemonMove
PokemonMove *-- PokemonType
PokemonSpecies *-- PokemonType
OptionsMenuModel *-- Option
OptionsMenuModel <|-- BattleOptionsModel
OptionsMenuModel <|-- FightOptionsModel
Command <|-- DoNothingCommand
Command <|-- PlayerMoveDownCommand
Command <|-- PlayerMoveLeftCommand
Command <|-- PlayerMoveRightCommand
Command <|-- PlayerMoveUpCommand
Command <|-- UsePokemonMoveCommand
Command <|-- OptionsMenuDownCommand
Command <|-- OptionsMenuGoBackCommand
Command <|-- OptionsMenuLeftCommand
Command <|-- OptionsMenuRightCommand
Command <|-- OptionsMenuUpCommand
Command <|-- QuitCommand
Sprite *-- Image
Renderer <|-- BarRenderer
Renderer <|-- BackgroundRenderer
Renderer <|-- BattleMenuRenderer
Renderer <|-- OptionsMenuRenderer
Renderer <|-- PlayerRenderer
Renderer <|-- PokemonInfoRenderer
Renderer <|-- PokemonRenderer
Renderer <|-- CharRenderer
Renderer <|-- TextRenderer
Renderer <|-- TileRenderer
BarRenderer *-- Position
BarRenderer *-- Sprite
BarRenderer <|-- ExperienceBarRenderer
BarRenderer <|-- HealthBarRenderer
BackgroundRenderer *-- Sprite
BackgroundRenderer <|-- BattleOptionsMenuRenderer
BackgroundRenderer <|-- FightOptionsMenuRenderer
BattleMenuRenderer *-- Sprite
BattleMenuRenderer *-- OptionsMenuRenderer
PlayerRenderer *-- Sprite
PlayerRenderer *-- Player
PokemonInfoRenderer *-- Position
PokemonInfoRenderer *-- Sprite
PokemonInfoRenderer *-- TextRenderer
PokemonInfoRenderer *-- ExperienceBarRenderer
PokemonInfoRenderer *-- HealthBarRenderer
PokemonRenderer *-- Pokemon
PokemonRenderer *-- Sprite
CharRenderer *-- Position
CharRenderer *-- Sprite
TextRenderer *-- CharRenderer
TileRenderer *-- Tile
TileRenderer *-- Sprite
@enduml | false | true | false | false | class |
7c831685c00fd8d88a3b7fd390d16e1bcae5a275 | c4fd73298b35f23314a840c38aa313ddaad22b06 | /ProjectWineFinal/src/Dao/Dao.plantuml | 51ed23b1fb518f49bd3da4a6bf9b8c4e44f1dd41 | [] | no_license | NikolaPetko6b/ProjectWine | ce57dfd90f5c3dff775a5f7fdf54d0de7358280b | 40d911838744ce401416db0eadc633d7edb0e853 | refs/heads/master | 2023-02-26T19:49:43.310773 | 2021-01-24T20:25:09 | 2021-01-24T20:25:09 | 299,954,310 | 0 | 0 | null | 2021-01-24T18:22:59 | 2020-09-30T14:54:13 | Java | UTF-8 | PlantUML | false | false | 2,630 | plantuml | @startuml
title __DAO's Class Diagram__\n
namespace Dao {
class Dao.AES {
{static} - key : byte[]
{static} - secretKey : SecretKeySpec
{static} + decrypt()
{static} + encrypt()
{static} + setKey()
}
}
namespace Dao {
class Dao.BottleTypeDao {
+ AddBottleType()
+ getBottleType()
}
}
namespace Dao {
class Dao.BottlesDao {
+ AddBottle()
+ get187Bottles()
+ get200Bottles()
+ get375Bottles()
+ get750Bottles()
+ getBottles()
+ getBottlesMaxID()
}
}
namespace Dao {
class Dao.CurrentStockDao {
+ AddRecord()
+ DeleteRecord()
+ cur187Bottles()
+ cur200Bottles()
+ cur375Bottles()
+ cur750Bottles()
+ curRedGrape()
+ curWhiteGrape()
+ getLatestRecordID()
+ getRecordByID()
+ getRecords()
}
}
namespace Dao {
class Dao.GrapeDao {
+ AddGrape()
+ getGrape()
+ getMaxID()
+ getRedGrape()
+ getWhiteGrape()
}
}
namespace Dao {
class Dao.GrapeTypeDao {
+ AddGrapeType()
+ getGrapeType()
}
}
namespace Dao {
class Dao.HibernateUtil {
{static} + sessionFactory : SessionFactory
{static} + getSessionFactory()
}
}
namespace Dao {
class Dao.NotificationsDao {
+ AddNotification()
+ DeleteNotification()
+ UpdateNotification()
+ getMaxID()
+ getNotifications()
}
}
namespace Dao {
class Dao.PrivilegeTypeDao {
+ AddPrivilege()
+ getPrivilegeType()
}
}
namespace Dao {
class Dao.UsersDao {
{static} + loggedid : int
+ AddUser()
+ DeleteUser()
+ UpdateUser()
+ getLoggedid()
+ getMaxID()
+ getUserByUsername()
+ getUsers()
+ setLoggedid()
}
}
namespace Dao {
class Dao.WarehouseDao {
+ AddWarehouse()
+ getWarehouses()
}
}
namespace Dao {
class Dao.WineDao {
+ AddWine()
+ getMaxID()
+ getWine()
}
}
namespace Dao {
class Dao.WineTypeDao {
+ AddWineType()
+ DeleteWineType()
+ UpdateWineType()
+ getMaxID()
+ getWineType()
+ getWineTypeByUserID()
}
}
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 |
19402da89ed026d284a65964a2c24dd17b7dda8f | a525c5d70008e14878bace86221603ff59bebeb2 | /documentation/plantuml/bdm.plantuml | 2ed06b146a48da905764a595052d2f9b53940eb3 | [] | no_license | florentsarat/processResourceDemo | 0248c72fd6a58497b5986c69f4fcb867a6ba62da | 923b2a65a9dc774bf092b3c31ef691d5bc9435e0 | refs/heads/master | 2023-04-26T07:13:47.095427 | 2021-05-20T11:55:26 | 2021-05-20T11:55:26 | 369,190,643 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 271 | plantuml | @startuml
package com.company.model {
class BusinessObject {
+persistenceId : Long
+resource : String
}
}
legend top left
♦ Composition relation ♢ Aggregation relation * Multiple relation
endlegend
@enduml
| false | true | false | false | class |
9d6df69b9833a93845ae35e73c6e87a7801ede77 | 1c70d2377c157d5fbdc09fd1b632dc0c4bf995cc | /de.gematik.ti.openhealthcard.events/src/main/java/de/gematik/ti/openhealthcard/events/message/message.plantuml | 78dc53e0d2fff6cf9881cec95afc60dc9d27afe3 | [
"Apache-2.0"
] | permissive | gematik/ref-OpenHealthCard-Events | 8bbe0eadbb401f4266728adfd09f4f6fe53a428c | 7e295edba16ded76504226edf8960d7875691b76 | refs/heads/master | 2022-02-03T17:08:51.607464 | 2022-01-07T07:35:58 | 2022-01-07T07:35:58 | 214,091,929 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,788 | plantuml | @startuml
title __MESSAGE's Class Diagram__\n
namespace de.gematik.ti.openhealthcard.events.message {
abstract class de.gematik.ti.openhealthcard.events.message.AbstractOpenHealthCardEvent {
- message : String
- sourceClass : String
+ AbstractOpenHealthCardEvent()
+ AbstractOpenHealthCardEvent()
+ getMessage()
+ getSourceClass()
+ toString()
}
}
namespace de.gematik.ti.openhealthcard.events.message {
class de.gematik.ti.openhealthcard.events.message.ErrorEvent {
- throwable : Throwable
+ ErrorEvent()
+ ErrorEvent()
+ ErrorEvent()
+ ErrorEvent()
+ ErrorEvent()
+ ErrorEvent()
+ getThrowable()
+ toString()
}
}
namespace de.gematik.ti.openhealthcard.events.message {
class de.gematik.ti.openhealthcard.events.message.InfoEvent {
+ InfoEvent()
+ InfoEvent()
+ toString()
}
}
namespace de.gematik.ti.openhealthcard.events.message {
class de.gematik.ti.openhealthcard.events.message.WarnEvent {
+ WarnEvent()
+ WarnEvent()
+ toString()
}
}
de.gematik.ti.openhealthcard.events.message.ErrorEvent -up-|> de.gematik.ti.openhealthcard.events.message.AbstractOpenHealthCardEvent
de.gematik.ti.openhealthcard.events.message.InfoEvent -up-|> de.gematik.ti.openhealthcard.events.message.AbstractOpenHealthCardEvent
de.gematik.ti.openhealthcard.events.message.WarnEvent -up-|> de.gematik.ti.openhealthcard.events.message.AbstractOpenHealthCardEvent
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 |
9a5071bac369346966cc29b24e382500ea708fac | 703155f5c0b522c0f0ac8f76170a7cdd75cf45b8 | /liushoukun/restfulapi-tp5/Authentication.puml | 85c565f795812b45e7d7bcf9ace1e302a55c4c4e | [
"Apache-2.0"
] | permissive | zhangjiquan1/phpsourcecode | 057ed70bce9b000bfa8152bcb155ad38992b6471 | c0b5ffa7c79d4d522b1be1a7bf0afb3c1e6a6bff | refs/heads/master | 2023-01-02T10:30:31.706632 | 2020-10-25T06:20:49 | 2020-10-25T06:20:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 357 | puml | @startuml
Client -> AuthorizationServer:1.GET Authentication Token Request
AuthorizationServer --> Client:2.Return Token Response
Client -> ResourceServer:3. Api Request
ResourceServer --> Client:4. Return Data Response
Client -> AuthorizationServer:5. Refresh Authentication Token Request
AuthorizationServer --> Client:6. Return Token Response
@enduml | false | true | false | false | sequence |
91c2ec1b3b1d4ab048a6b2ffd76ef6ed6bbc4f9e | e34a2ed2af9aba5d0b4d576e9d0aeb7f24baeca3 | /trace/cwflow.puml | 443d5044d0d990ea358d713ab2316a6a79b04fb8 | [] | no_license | grze/archexamples | 704c20fac419574dbceeab4adb40ad86d83da455 | 8e470a48d814af456108aae86a6be08f52d160f9 | refs/heads/master | 2016-08-08T05:01:32.760462 | 2014-08-12T06:45:04 | 2014-08-12T06:45:04 | 19,866,489 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 374 | puml | @startuml
actor EC2Service
actor user
interface PutMetricData
boundary DataQueue
control QueueWorker
database Database
EC2Service --> PutMetricData : Put Instance Metrics
user --> PutMetricData : Put Data
PutMetricData --> DataQueue : Post Data for Processing
DataQueue --> QueueWorker : Periodic Drain of Data
QueueWorker --> Database : Store Processed Metrics
@enduml
| false | true | false | false | sequence |
2d1c9b7ad959831dc1763c3bc07f6d3a81f6d231 | 944cb71defe9b59265723b2d8bd984ee78a888d4 | /src/main/java/Sequence/SequenceStudentLogin.puml | 177aad0635075effdc652b51031b14956e0778b0 | [] | no_license | mmedici0/University | 830e084b04b263b7d2ef9219a7639499611ea5df | 0c9af9ce24b8dce8974d91f07de7703d265656a3 | refs/heads/master | 2023-07-24T02:29:02.795384 | 2021-08-31T17:58:22 | 2021-08-31T17:58:22 | 398,044,429 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 792 | puml | @startuml
actor User
boundary RestUI
participant JWTAuth
participant StudentController
participant StudentService
participant AccountRepository
database Database
group User/Student Login
User -> RestUI : POST /api/login/student/?username={username}&password={password}
RestUI -> StudentController : loginStudent(username, password)
StudentController -> StudentService :loginStudent(username, password)
StudentService -> AccountRepository : findByRoleAndUsernameAndPassword
AccountRepository -> Database : connection
Database -> AccountRepository : User
AccountRepository -> StudentService : User
StudentService -> JWTAuth : User
JWTAuth -> StudentService : JWT
StudentService -> StudentController : JWT
StudentController -> RestUI : JWT
RestUI -> User : 200 OK - HTML Response (User)
@enduml | false | true | false | false | usecase |
8a489e7c77df8ae3e9149193cd6a17d6529b6506 | ec45fae67e49ab617ad79b8c48fba85261e319c1 | /Doku/Klassendiagramme/Executer.puml | 68db7803b5b609f2087678fa9c9bc9ed122e3a16 | [] | no_license | nicorahm99/PIC-Simulator | 5d22af8719f7b71608db155ceeb49baebcf4c8a5 | 0e7fb5f10c9392dc3f7438007859dc0f9f670aaa | refs/heads/master | 2023-05-03T22:51:08.168289 | 2021-05-29T06:15:23 | 2021-05-29T06:15:23 | 257,316,241 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,295 | puml | @startuml
class Executer {
+ executeCommand(command:Command) : void
- addWF(isResultWrittenToW:bool, fileAddress:int) : int
- andWF(isResultWrittenToW:bool, fileAddress:int) : int
- clrF(fileAddress:int) : int
- clrW() : int
- comF(isResultWrittenToW:bool, fileAddress:int) : int
- decF(isResultWrittenToW:bool, fileAddress:int) : int
- decFsZ(isResultWrittenToW:bool, fileAddress:int) : int
- incF(isResultWrittenToW:bool, fileAddress:int) : int
- incFsZ(isResultWrittenToW:bool, fileAddress:int) : int
- iOrWF(isResultWrittenToW:bool, fileAddress:int) : int
- movF(isResultWrittenToW:bool, fileAddress:int) : int
- movWF(fileAddress:int) : int
- rlF(isResultWrittenToW:bool, fileAddress:int) : int
- rrF(isResultWrittenToW:bool, fileAddress:int) : int
- subWF(isResultWrittenToW:bool, fileAddress:int) : int
- swapF(isResultWrittenToW:bool, fileAddress:int) : int
- xOrWF(isResultWrittenToW:bool, fileAddress:int) : int
- bcF(fileAddress:int, bitAddress:int) : int
- bsF(fileAddress:int, bitAddress:int) : int
- btFsc(fileAddress:int, bitAddress:int) : int
- btFss(fileAddress:int, bitAddress:int) : int
- addLW(literal:int) : int
- andLW(literal:int) : int
- call(address:int) : int
- clrWdT() : int
- _goto(address:int) : int
- iOrLW(literal:int) : int
- movLW(literal:int) : int
- retfIE() : int
- retLW(literal:int) : int
- _return() : int
- sleep() : int
- subLW(literal:int) : int
- xOrLW(literal:int) : int
- setZeroFlagTo(value:int) : void
- setZeroFlagIfNeeded(result:int) : void
- setCarryFlagTo(value:int) : void
- setCarryFlagIfNeeded(result:int) : void
- setDigitCarryFlagIfNeeded(result:int) : void
- setCarryFlagsForSub(result:int, fourBitResult:int) : void
- setCarryFlag() : void
- setDigitCarryFlagTo(value:int) : void
- setDigitCarryFlag() : void
- writeResultToRightDestination(result:int, isResultWrittenToW:bool, fileAddress:int) : int
- getWReg() : int
- getFile(fileAddress:int) : int
- pushPcToStack() : void
- popStackToPc() : void
- isGreaterThan(lower:int, higher:int) : bool
- isLessThan(higher:int, lower:int) : bool
+ interruptOccured() : void
}
@enduml
| false | true | false | false | class |
0a168d5ab8349d2c3d5ab9da771c321b4f231b55 | 237de7ba3a5c942577b6c5bdebc77a6c223c330a | /Brawndo/src/main/Autoroute/Autoroute.plantuml | 6d3236ef569885087f56a3498fdcae2e12fb1319 | [] | no_license | FlorianPaumier/Uqac_POO_Avanced | 00a5b0b4d1fd7cfe7f44700299e13edbd2afdd21 | 3ee6d79c2439e4909d0a6e2856fc247140db431b | refs/heads/master | 2023-08-23T03:45:25.499048 | 2021-10-13T21:06:22 | 2021-10-13T21:06:22 | 407,205,303 | 0 | 0 | null | 2021-10-06T21:49:17 | 2021-09-16T14:52:45 | Java | UTF-8 | PlantUML | false | false | 1,981 | plantuml | @startuml
title __AUTOROUTE's Class Diagram__\n
namespace main {
namespace Autoroute {
class main.Autoroute.Autoroute {
- id : int
- perimeter : double
- rayon : int
- speed : double
- vehicles : ArrayList<Vehicle>
- vehiclesOut : ArrayList<Vehicle>
+ Autoroute()
+ addVehicle()
+ addVehiclesOut()
+ getAccess()
+ getId()
+ getPerimeter()
+ getRayon()
+ getSpeed()
+ getVehicles()
+ getVehiclesOut()
+ removeVehicle()
+ removeVehicleOut()
+ setAccess()
+ setId()
+ setPerimeter()
+ setRayon()
+ setSpeed()
+ setVehicles()
}
}
}
namespace main {
namespace Autoroute {
class main.Autoroute.AutorouteController {
~ autoroutes : ArrayList<Autoroute>
+ AutorouteController()
{static} + getGatePosition()
+ insertVehicle()
+ next()
- changeVehicle()
- checkAccident()
- checkIfVehiclesAreInSamePosition()
- getBigger()
}
}
}
namespace main {
namespace Autoroute {
class main.Autoroute.AutorouteFactory {
- count : int
- defaultRayon : int
+ AutorouteFactory()
+ generate()
+ getAcces()
+ getCount()
+ getDefaultRayon()
}
}
}
main.Autoroute.Autoroute o-- main.Acces.Acces : access
main.Autoroute.AutorouteController o-- main.Vehicule.VehicleController : vehicleController
main.Autoroute.AutorouteFactory .up.|> main.Interface.Factory
main.Autoroute.AutorouteFactory o-- main.Acces.Acces : acces
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 |
a7827d238d63f5a6261f86d2a74ca4f66696b80c | f6c2c37243727f10ca1c1acc9d70aaeb040e4610 | /doc/classes/Subject.plantuml | a84ab7e5d505746a30acec14455fa47031e8fbf8 | [] | no_license | Arcahub/librtk | 6078825bd3fc27cbea7942c8677f571c42716697 | 2ac876687493816fb894b5befeac86c761d2c611 | refs/heads/master | 2023-03-31T12:44:39.474022 | 2021-04-03T17:44:52 | 2021-04-03T17:44:52 | 337,531,888 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,304 | plantuml | @startuml Subject
class Subject {
+void next(T value)
+void error()
+void complete()
+void unsubscribe()
+Obersvable<T> asObservable()
---
#void Subscription *_subscribe(Subscriber<T>* subscriber)
---
-bool m_closed
-bool m_isStopped
-bool m_hasError
-std::vector<Observer<T>*> m_observers
}
note left of Subject::next
If subject not closed
Call next on every m_observers with value
end note
note left of Subject::error
If subject not closed
Call error on every m_observers
Close subject and clear m_observers
end note
note left of Subject::complete
If subject not closed
Call complete on every m_observers
Close subject and clear m_observers and set hasError
end note
note left of Subject::unsubscribe
Close subject and clear m_observers
end note
note left of Subject::asObservable
Return an Observable with the subejct as Source
end note
note right of Subject::_subscribe
If Subject hasError
Call error on subscriber and return empty Subscription
If Subject isClosed
Call complete on subscriber and return empty Subscription
Store subscriber in m_observers
Return Subscription with callback that will remove subscriber from m_observers
end note
@enduml | false | true | false | false | activity |
2a0e1abd4a0857fc0888e204ede95c2389191901 | b6b649ae1960bcc28c147b21bbe05d1756d051dc | /sec11/solution/lab01/sequence.plantuml | 700b019c26315430e25bda789630592fbf519583 | [] | no_license | striversity/glft | 9cc22fb2bf2e587d75e8e0651ba001e549821bf5 | 6c9bd3a40a2b19f081ee0b849be1d72fe3969a85 | refs/heads/master | 2021-12-13T23:13:50.136757 | 2021-12-12T16:29:11 | 2021-12-12T16:29:11 | 162,139,315 | 30 | 19 | null | 2023-09-04T07:40:24 | 2018-12-17T14:02:16 | Go | UTF-8 | PlantUML | false | false | 355 | plantuml | # Section 11 - Lab 1 - Remote Command Runner
@startuml
actor User
autonumber
User -> Client : starts Client to run ls cmd
Client -> Server : {Name:"ls", Args: ["-l", "/tmp"]}
Server -> Server : exec.Cmd(Name, Args...)
Client --> Server : cmd input
Server --> Client : cmd output
Server -> Server : wait for cmd
Server -> Client : close connection
@enduml | false | true | false | false | usecase |
8902d9ca521ad083c3512e963f3c4a09b068ba9a | 5b9092e6cb6760e2471483e438520451f408511e | /doc/4_sprint/diagrams/puml/class/ranged.puml | f55da96e55001ab3eecdaa21fdff5307013260ba | [] | no_license | Reynault/ACL_2019_Zelpop | ac8be33233a78ecb010ffc7c3135031dfece3dd6 | 0edbfabd698ac2ef2e16e5cf70f41d8f9a310219 | refs/heads/master | 2020-08-15T14:32:19.385568 | 2019-12-10T16:59:19 | 2019-12-10T16:59:19 | 215,357,337 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,015 | puml | @startuml
title Adding projectiles in the game
package entity{
package behavior{
class BehaveFactory{
+ getHeroBehavior(): Behavior
+ getSimpleBehavior(): Behavior
+ getGobelinBehavior(): Behavior
+ getProjectileBehavior(): Behavior
}
class Behavior{
}
BehaveFactory ..> Behavior: create
package check{
interface Check{
}
class CheckHero{
}
class CheckSimple{
}
class CheckProjectile{
}
CheckSimple .|> Check
CheckHero ..|> Check
CheckProjectile ..|> Check
}
package move{
interface Move{
}
class MoveGoblin{
}
class MoveHero{
}
class MoveProjectile{
}
class MoveRandom{
}
MoveHero .|> Move
MoveProjectile .|> Move
MoveRandom ..|> Move
MoveGoblin ..|> Move
package ia{
class PositionIA{
}
}
}
package attack{
abstract Attack{
}
class AttackHero{
}
class AttackSimple{
}
class AttackProjectile{
}
AttackHero --|> Attack
AttackSimple -|> Attack
AttackProjectile --|> Attack
}
}
abstract Entity{
}
class Projectile{
}
class Monster{
}
class Goblin{
}
class Ghost{
}
class Hero{
}
class EntityFactory{
+ getProjectile()
}
EntityFactory .> Entity: create
Projectile -|> Entity
Monster --|> Entity
Hero --|> Entity
Goblin --|> Entity
Ghost --|> Entity
}
class Maze{
}
Maze -Up-> "*" Entity: entities
Maze -Up-> "*" Entity: projectiles
@enduml | false | true | false | false | sequence |
a7103f7e45b7ba35e603c80998abcf15778ae1ce | d702b31e656edcb9944228c0309f153bdff29eec | /doc/plantuml/HCARDA/command/InternalAuthenticateCommand.plantuml | 3ebd66d7c3dfc7c3f33ac58018c23786ad49c0eb | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardAccess | 4f3957bfe40c56ffbf82782528a6e543ea00e9e3 | eb9a12f7eea309bb5b23269de9d8fa924f91fe4f | refs/heads/master | 2022-02-14T18:25:41.769547 | 2022-01-07T07:24:17 | 2022-01-07T07:24:17 | 213,916,430 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,444 | plantuml | @startuml
package de.gematik.ti.healthcardaccess {
interface IHealthCardCommand {
{abstract} + executeOn()
}
}
package de.gematik.ti.healthcardaccess {
abstract class AbstractHealthCardCommand {
{static} - LOG : Logger
{static} # NE_MAX_EXTENDED_LENGTH : int
{static} # NE_MAX_SHORT_LENGTH : int
{static} # EXPECT_ALL : int
# cla : int
# ins : int
# p1 : int
# p2 : int
# data : byte[]
# ne : int
# AbstractHealthCardCommand()
# AbstractHealthCardCommand()
{abstract} + getTechnicalResponseApdus()
- inferResponseStatusFromResponseCode()
+ executeOn()
# sendApdu()
- getCommandApdu()
}
}
package de.gematik.ti.healthcardaccess {
package de.gematik.ti.healthcardaccess.commands {
class InternalAuthenticateCommand {
{static} - CLA : int
{static} - INS : int
{static} - ALGORITHM_INFORMATION_PRESENT : int
{static} - KEY_REFERENCE_PRESENT_ON_CARD : int
{static} - technicalResponseApdus : Map<Integer, ResponseStatus>
+ getTechnicalResponseApdus()
+ InternalAuthenticateCommand()
}
}
}
AbstractHealthCardCommand -up-|> IHealthCardCommand
InternalAuthenticateCommand -up-|> AbstractHealthCardCommand
@enduml | false | true | false | false | class |
ac1c47d02f01aee872a7a1daa95a6a9b4b7ebd18 | ae14295da4e60d85e841a0466f577090d8fbd301 | /uml/Main.puml | a428ba435128d558774f7f9a6a727912c09250f5 | [] | no_license | canadianbees/alzenor-COP3330-assignment4 | b78442e8fed6849fb32b174fb45deed6dba60cf3 | 532258d87db795b0bac44611038bd726a5408337 | refs/heads/master | 2023-08-26T06:30:59.319512 | 2021-11-02T00:17:58 | 2021-11-02T00:17:58 | 423,566,740 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,124 | puml | @startuml
'https://plantuml.com/class-diagram
class Main extends Application
class FXMLController implements Initializable
class Lists
interface Initializable
class Application
class Task
FXMLController <|- Lists
FXMLController <|- Task
class Main
{
+start(Stage window) throws IOException
+main(String []args)
}
class FXMLController
{
+public Button addLi;
+public TextField listField;
+public MenuItem removList;
+public MenuItem saveList;
+public MenuItem loadList;
+public MenuItem saveAll;
+public MenuItem loadMulti;
+public Button newTask;
+public TextField descriptionField;
+public TextField dueDateField;
+public TextField completeField;
+public MenuItem remTask;
+public ListView<HashMap<Lists,Task>> list;
+public TableView<Task> tableView;
+public TableColumn<Task,String> descriptCol;
+public TableColumn<Task,String> dueDateCol;
+public TableColumn<Task,String> CheckCol;
+public void initialize(URL url, ResourceBundle rb)
+public void changeDescript(TableColumn.CellEditEvent editedCell)
+public void changeDate(TableColumn.CellEditEvent editedCell)
+public void changeComp(TableColumn.CellEditEvent editedCell)
+public void addTaskButton()
+public void removeTaskButton()
+public void displayComp()
+public void displayIncomp()
+public void addListButton()
+public void removeListButton()
+public void saveListButton()
+public void loadListButton()
+public void saveAllButton()
+public void loadMultiButton()
}
class Task
{
+private CheckBox completed;
+private final SimpleStringProperty description;
+private final SimpleStringProperty dueDate;
+public String getCompleted()
+public CheckBox getCompleted()
+public void setCompleted(CheckBox completed)
+public String getDescription()
+public SimpleStringProperty descriptionProperty()
+public void setDescription(String description)
+public SimpleStringProperty getDueDate()
+public void setDueDate(String dueDate)
}
class Lists
{
+private SimpleStringProperty nameList;
+public String getNameList()
+public SimpleStringProperty nameListProperty()
+public void setNameList(String nameList)
+public Lists(String nameList)
}
@enduml | false | true | false | false | class |
27b60a3808644b236745b6f5c81721b133cd3e27 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/CollabAnalytics.puml | d7b352289b44cdd3f9151d6793a51ca32c32178f | [] | 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 | 344 | puml | @startuml
class CollabAnalytics <<static>> {
+ {static} SendUserAction(category:string, action:string) : void
+ {static} <<readonly>> historyCategoryString : string = "History"
}
class CollabUserActionAnalyticsEvent <<struct>> {
+ category : string
+ action : string
}
CollabAnalytics +-- CollabUserActionAnalyticsEvent
@enduml
| false | true | false | false | class |
2831d8ff4076adff1b1351be75ffc6e2a77bfb57 | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/cardview/cardview.plantuml | be9c442d9d17740b2feb78b28d859a0d17ba65af | [] | no_license | h2312/Do-an-TTLTA-03-TIN230DV01-0100 | a0792724add3844de35d48a2bd87d3eeb8de8a93 | e9f01e84b45042bd6192333842fb80feabb74707 | refs/heads/master | 2022-06-30T21:56:05.032422 | 2020-04-25T10:33:44 | 2020-04-25T10:33:44 | 258,747,594 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,632 | plantuml | @startuml
title __CARDVIEW's Class Diagram__\n
package android.support.v7.cardview {
class R {
- R()
}
}
package android.support.v7.cardview {
class attr {
{static} + cardBackgroundColor : int
{static} + cardCornerRadius : int
{static} + cardElevation : int
{static} + cardMaxElevation : int
{static} + cardPreventCornerOverlap : int
{static} + cardUseCompatPadding : int
{static} + cardViewStyle : int
{static} + contentPadding : int
{static} + contentPaddingBottom : int
{static} + contentPaddingLeft : int
{static} + contentPaddingRight : int
{static} + contentPaddingTop : int
- attr()
}
}
package android.support.v7.cardview {
class color {
{static} + cardview_dark_background : int
{static} + cardview_light_background : int
{static} + cardview_shadow_end_color : int
{static} + cardview_shadow_start_color : int
- color()
}
}
package android.support.v7.cardview {
class dimen {
{static} + cardview_compat_inset_shadow : int
{static} + cardview_default_elevation : int
{static} + cardview_default_radius : int
- dimen()
}
}
package android.support.v7.cardview {
class style {
{static} + Base_CardView : int
{static} + CardView : int
{static} + CardView_Dark : int
{static} + CardView_Light : int
- style()
}
}
package android.support.v7.cardview {
class styleable {
{static} + CardView : int[]
{static} + CardView_android_minWidth : int
{static} + CardView_android_minHeight : int
{static} + CardView_cardBackgroundColor : int
{static} + CardView_cardCornerRadius : int
{static} + CardView_cardElevation : int
{static} + CardView_cardMaxElevation : int
{static} + CardView_cardPreventCornerOverlap : int
{static} + CardView_cardUseCompatPadding : int
{static} + CardView_contentPadding : int
{static} + CardView_contentPaddingBottom : int
{static} + CardView_contentPaddingLeft : int
{static} + CardView_contentPaddingRight : int
{static} + CardView_contentPaddingTop : int
- styleable()
}
}
R +-down- attr
R +-down- color
R +-down- dimen
R +-down- style
R +-down- styleable
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 |
2db78d6a03f1e3498ea06d1b143daf5147093f0d | ab34ffe4adbdc9e7e13cc3014498e7ad7d23b23d | /doc/design/back-end.plantuml | cb5bc6983a2921bc581506b102d96dd6ecec1cf2 | [] | no_license | daroGH/slowvid | 5955f8ddafc081e72207f898d1df4ee946dd730a | f749b14bd6d481e94f7f7a5554357c0d7091d676 | refs/heads/master | 2023-01-03T22:24:11.022835 | 2020-11-01T10:50:09 | 2020-11-01T10:50:09 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 929 | plantuml | @startuml
class App
package network {
class NetworkManager {
List<Socket> : activeClients
}
}
App o-- NetworkManager
package security_privacy {
class OTPManager {
string generateOTP()
}
class AuthTokenManager {
string generateAuthToken()
}
class EncryptKeyManager {
string generateEncryptKey()
}
}
App o-- OTPManager
App o-- AuthTokenManager
App o-- EncryptKeyManager
package user {
class User {
string id
List<PET> pets
}
class UserManager {
List<User> users
}
}
UserManager *-- "0..*" User
App o-- UserManager
package encounter {
class RiskAnalysisManager {
Distance : distanceThreshold
Duration : durationThreshold
void performRiskAnalysis(ClientManager clients)
}
class PET {
}
}
RiskAnalysisManager --> UserManager
App o-- RiskAnalysisManager
User *-- "0..*" PET
@enduml
| false | true | false | false | class |
54b22f9f276a3a0e635cd12b1c3635ac1aa4aa64 | dcad9c5857819ab62681f67dd157213cde758484 | /docs/dev/graphs/myrequests.puml | 6e3f79c874f72b5736e35e6dca48f4355769629a | [
"MIT",
"MIT-0"
] | permissive | martin-ueding/vigilant-crypto-snatch | edb51860dc8c099f76fd30d7cc1c65e8ab21059f | c64669ce62d5881748ed168326d74f727616f6c0 | refs/heads/master | 2023-07-27T08:47:59.721006 | 2023-07-15T19:40:35 | 2023-07-15T19:40:35 | 187,399,985 | 26 | 9 | null | 2023-07-15T19:40:37 | 2019-05-18T19:58:39 | Python | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
allowmixing
namespace myrequests {
component requests #lightskyblue
class MyRequests {
{static} perform_http_request()
}
MyRequests --> requests
}
@enduml | false | true | false | false | class |
719cea1fa1ce95acfd40c6b7eaeef77b1bcb7e9f | 714f9744f76cc2af51f47b4dbe9fd7b38e616ce4 | /doc/uml/refusjon.puml | 3c5e3da95600fc04841662190a30c1b5342307aa | [] | no_license | sopra-steria-norge/pharmacy.no | 3082b724b7c93b327a8ad884d9fee2ad40a92321 | b0d3e8ee3d6a358a96b6401bd23fc789ad865882 | refs/heads/master | 2021-07-18T19:51:32.802750 | 2017-10-24T22:10:24 | 2017-10-24T22:14:58 | null | 0 | 0 | null | null | null | null | ISO-8859-15 | PlantUML | false | false | 1,372 | puml | @startuml
skinparam ArrowColor #b1b1b0
skinparam BorderColor #b1b1b0
box "Apoteksystem" #ececec
participant Brukersystem #8ccbdb
end box
box "Bransjeløsningen" #ececec
participant Refusjon #319aad
database Refusjonstatus #319aad
database Mailserver #319aad
end box
box "Norsk Helsenett" #ececec
participant HELFO #ff8fa3
end box
== Send refusjonskrav ==
Brukersystem -> Refusjon ++: M18 Oppgjørskrav
Refusjon -> Mailserver ++: M18 Oppgjørskrav
Refusjon <-- Mailserver --
Mailserver -> HELFO: M18 Oppgjørskrav
Refusjon -> Refusjonstatus: Registrer refusjonskrav
Brukersystem <-- Refusjon --
== Motta status på refusjonskrav ==
HELFO -> Mailserver: M22 Oppgjørsresulat
activate Refusjon
Refusjon -> Mailserver: Hent mail
Refusjon -> Refusjonstatus: Oppdater status på refusjonskrav
deactivate Refusjon
Brukersystem -> Refusjon ++: Hent status på refusjonskrav
Refusjon <-- Refusjonstatus: Status på refusjonskrav
Brukersystem <-- Refusjon --: M22 Oppgjørsresultat
== Motta utbetalingsmelding ==
HELFO -> Mailserver: M23 Utbetaling
activate Refusjon
Refusjon -> Mailserver: Hent mail
Refusjon -> Refusjonstatus: Oppdater status på refusjonskrav
deactivate Refusjon
Brukersystem -> Refusjon ++: Hent status på refusjonskrav
Refusjon <-- Refusjonstatus: Status på refusjonskrav
Brukersystem <-- Refusjon --: M23 Utbetaling
@enduml | false | true | true | false | sequence |
a7df43205da6e865da8f11a08d3c04817c027536 | f055983d41ff8738a956dd84b791debc3dff1812 | /uml/qformat/qformat_class.puml | 2ed1f299a0352c9a31984e9b65f31f9e5e2ab215 | [
"MIT"
] | permissive | intel/cppnnml | 04d373d6d8d0c0adb9c349e7519d53aee88d189b | 5346642f71c00f58130670cef4e28668bdf31029 | refs/heads/master | 2023-05-31T09:36:25.277761 | 2023-01-07T00:47:12 | 2023-01-07T00:47:12 | 272,829,948 | 70 | 22 | MIT | 2021-04-01T19:50:04 | 2020-06-16T23:06:01 | C++ | UTF-8 | PlantUML | false | false | 2,354 | puml | /'
* Copyright (c) 2020 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*'/
@startuml qformat_class
title QValue
class QTypeChooser {
}
class FullWidthFieldTypeChooser {
}
class MultiplicationResultFullWidthFieldTypeChooser {
}
class DivisionResultFullWidthFieldTypeChooser {
}
class QValueRoundingPolicy {
{static} T round(const T& value)
}
class SignExtender {
{static} void signExtend(const T& value)
}
class ShiftPolicy {
{static} ResultType shfit(const SourceType& value)
}
class NoShiftPolicy {
{static} ResultType shfit(const SourceType& value)
}
class ShiftLeftPolicy {
{static} ResultType shfit(const SourceType& value)
}
class ShiftRightPolicy {
{static} ResultType shfit(const SourceType& value)
}
class QValue {
}
QValue -- QTypeChooser
QTypeChooser -- FullWidthFieldTypeChooser
QTypeChooser -- MultiplicationResultFullWidthFieldTypeChooser
QTypeChooser -- DivisionResultFullWidthFieldTypeChooser
MultiplicationResultFullWidthFieldTypeChooser -- FullWidthFieldTypeChooser
DivisionResultFullWidthFieldTypeChooser -- FullWidthFieldTypeChooser
QValue -- QValueRoundingPolicy
QValue -- SignExtender
QValue -- ShiftPolicy
ShiftPolicy -- NoShiftPolicy
ShiftPolicy -- ShiftLeftPolicy
ShiftPolicy -- ShiftRightPolicy
@enduml | false | true | false | false | class |
e38f397a380e38002a72fccad57bd5ea087a619a | a0759da97e19348ccfaef59e0228e10dd6c1187f | /src/main/java/ex41/ex41.puml | b351919a3eb691f8c34d6ee7d040fe37ac9c2c93 | [] | no_license | k-laughner/laughner-cop3330-assignment3 | 0c198626deeb977d386c930b67c2c636f3426b85 | 0d48cf0f1c7a8714655d3fb6e6bdeab098c76a54 | refs/heads/master | 2023-08-18T19:29:33.266353 | 2021-10-11T23:47:16 | 2021-10-11T23:47:16 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
'https://plantuml.com/class-diagram
class alphabetize {
+alphabetizeArrayList( ArrayList ) : ArrayList
}
class App {
+main( String[] args ) : void
+listToFile( ArrayList <String> ) : FileWriter
}
@enduml | false | true | false | false | class |
443af360d4bd7026de0e5b1cff13bd80e55e4ca0 | 1f401659cd1184107cf2817a313a6f0711e63844 | /doc/uml/object-structure.puml | cc0a9f1d3a1e260132aaf5043a1f3459f429f251 | [] | no_license | Dedda/bratwurst | 53b0229ce12f4d756bfb2d5c3b04c14814496299 | 1a83a1d04445db581d2ca8eaea0cf3256e18cfbd | refs/heads/master | 2022-02-27T01:50:54.372565 | 2022-02-13T01:45:02 | 2022-02-13T01:45:02 | 43,151,240 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 988 | puml | @startuml
interface BWInstruction {
+ run()
}
interface BWExpression {
+ getValue() : BWObject
+ getIntValue() : int
+ getValueType() : String
}
class BWClass {
- functions : AbstractFunction[]
+ BWObject : createInstance()
}
class BWFunction {
}
class BWVariable {
- value : BWObject
+ getValue() : BWObject
+ getIntValue() : int
}
abstract class AbstractFunction {
- name : String
- scope : String
+ createFunction() : BWFunction
+ createObjectFunction(BWObject) : BWObjectFunction
}
class BWObjectFunction {
- object : BWObject
}
class BWObject {
- bwClass : BWClass
- variables : BWVariable[]
- functions : BWFunction[]
+ callFunction(String) : BWObject
}
BWObject --> BWClass
BWObject --> BWObjectFunction
BWObject --> BWVariable
BWFunction --|> AbstractFunction
BWObjectFunction --|> BWFunction
BWExpression ..|> BWInstruction
AbstractFunction ..|> BWExpression
BWClass --> AbstractFunction
@enduml | false | true | false | false | class |
1f25170d7da7bfffaffd2266f8e0bd093761475f | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/action/state/State.puml | fe0880f7bf08632b0fd884e2a8207c075e272c51 | [] | no_license | 289562326/bigdata_mhm | 846af37dbc8a00580b3c0424f1cebc21d659c672 | 210636d2ea350c0228deccf1485d3d1a6eb4a39c | refs/heads/master | 2022-07-10T14:41:56.081002 | 2021-04-29T11:33:58 | 2021-04-29T11:33:58 | 190,759,465 | 0 | 0 | null | 2022-06-17T03:33:35 | 2019-06-07T14:42:09 | Java | UTF-8 | PlantUML | false | false | 374 | puml | @startuml
IState <|.. StartState
IState <|.. StopState
StateContext o-- IState
interface IState{
+action(StateContext stateContext)
}
class StartState {
+action(StateContext stateContext)
}
class StopState {
+action(StateContext stateContext)
}
class StateContext {
-IState state
+StateContext()
+getState()
+setState(IState istate);
}
@enduml | false | true | false | false | class |
47b3012f8025939e176d8942b7e23fc2876628b0 | 946a6220ac789dcbc3930afb17abb3160e573392 | /src/main/java/ex42/ex42-diagram.puml | a816b2d06887143ec8c4b363ba2afca1114c7b6c | [] | no_license | LuisFigueroa1/figueroa-cop3330-assignment3 | 9ab1d842f6a5a7c524210ffe120b2bef8657e919 | 099c1a83df9fcb328f60405e3d69023c65c965b2 | refs/heads/master | 2023-08-18T07:40:14.466540 | 2021-10-12T02:40:51 | 2021-10-12T02:40:51 | 416,157,675 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | puml | @startuml
class App42
{
+public void formattedResults(exercise42: String)
+public static void main(args: String[])
}
main->formattedResults
formattedResults->main
@enduml | false | true | false | false | class |
e93d049e4fa5c0f427ffcbf41ee840891f7f965c | f4cdd5f5b4bf31ae281288e25b37bc771575823d | /images/04/create_contentInstances.puml | 2570d118ade269bfdec0335b026e250e30e6c080 | [
"BSD-3-Clause"
] | permissive | ankraft/onem2m-jupyter-notebooks | 9af20d3c8e802c71133a78837696efcc20ccb8ed | 6481b757e7fc6ff718ae7a30ed0bc4256e8abf67 | refs/heads/master | 2023-08-17T15:32:45.684608 | 2023-08-07T12:32:16 | 2023-08-07T12:32:16 | 174,227,639 | 5 | 3 | BSD-3-Clause | 2023-08-30T00:06:12 | 2019-03-06T21:59:19 | Python | UTF-8 | PlantUML | false | false | 715 | puml | @startuml
hide footbox
!theme plain
skinparam backgroundcolor transparent
' Turquoise #668c97
' Orange #F6921E
participant "Notebook\nAE" as AE
box "CSE & Hosted Resources" #f8f8f8
participant "CSE" as CSE
participant "StreetLight-AE-1\nLight-Container-1" as container1 #F6921E
participant "StreetLight-AE-2\nLight-Container-2" as container2 #F6921E
end box
AE -> CSE ++: CREATE <contentInstances>\ncse-in/Lights-Group/fopt
CSE -> container1 ++: CREATE <contentInstance>\ncse-in/StreetLight-AE-1/Light-Container-1
CSE <- container1 --: Response
CSE -> container2 ++: CREATE <contentInstance>\ncse-in/StreetLight-AE-2/Light-Container-2
CSE <- container2 --: Response
AE <- CSE --: Response (Aggregated)
@enduml | false | true | false | false | sequence |
9eb62034203b4f1c9de4339343be8639c5344687 | c488ccf558bea0b7096330ce529d84fc7e591b62 | /Docs/3-POST_auth_user.plantuml | ce9f7352912ea601446479d45e77627cb759c5aa | [] | no_license | doctorlev/api-toughy | 58f955e016985d83c5a8ecbbd9d6f9c756be7c5c | ceb9d229c4cc41f272c079783304c48cbbf562b2 | refs/heads/master | 2021-05-08T03:27:58.117121 | 2017-10-31T03:12:50 | 2017-10-31T03:12:50 | 108,208,760 | 0 | 0 | null | 2017-10-25T02:32:22 | 2017-10-25T02:22:55 | null | UTF-8 | PlantUML | false | false | 504 | plantuml | @startuml
title "POST - authenticate user and get token"
actor client
boundary "httpAPI"
database Redis
client -> httpAPI : To check existing User \n POST $BASE/auth {usr:usr; pwd:pwd}
httpAPI -> Redis : GET "user:usr"
note over Redis: "Usr exists"
Redis -> httpAPI : "pwd"
note over httpAPI : compare with input "pwd"
note over httpAPI: generate Token
httpAPI -> Redis: SET "s:<uuid>" "usr"
note over Redis: created "<uuid>" "usr"
Redis -> httpAPI : "OK"
httpAPI-> client : {Token:<uuid>}
@enduml
| false | true | false | false | sequence |
fc15a1e9ddceed546cde2adfd4427013350cc849 | c45ce074df6e9c8bb54ce906f387a4ec1730b2d6 | /diagrams/design/patterns/secuence/adapter.puml | 1e218123e29401cab33e0a1789c7f102c54f9f36 | [] | no_license | eromero-kreatech/clean-code | 82a4a62ae6d76985bc77e7a16f5d9890c41b652f | e5a29e0dacead4f25005e67163ffb57fbc4d2d44 | refs/heads/master | 2023-06-26T21:50:19.104747 | 2021-07-24T00:51:11 | 2021-07-24T00:51:11 | 388,963,257 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 723 | puml | @startuml "Adapter Pattern"
actor Client
Client -> Controller: api.service(requestObject)
Controller -> Adapter: adapter.requestObjectToBussinesObject(requestObject)
Adapter -> BussinessObject: new BussinesObject
Adapter -> Adapter: bussinesObject.setProperties(requestObject.properties)
Adapter -> Controller: bussinessObject
Controller -> BussinesService: businessService.call(businessObject)
BussinesService -> Controller: businessResponse
Controller -> Adapter: adapter.responseBussinesToUserResponse(businessResponse)
Adapter -> UserResponse: new UserResponse
Adapter -> Adapter: userResponse.setProperties(businessResponse.properties)
Adapter -> Controller: userResponse
Controller -> Client: userResponse
@enduml | false | true | false | false | usecase |
3ed74da6c073ea4313aa3e05925dfd86263c1f30 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1140423/sprint3/initial_design.puml | 799398e68c4fdab944878865238601cbf7a313df | [] | 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 | 702 | puml | @startuml doc-files/initial_design.png
participant "User" as User
participant "RangedSortDialog" as UI
participant "SortController" as Controller
User->UI : Starts the process of sorting a range of selected cells.
UI->Controller: getSelectedColumns()
UI->Controller: getSortTypes()
UI->User: Prompts for information (column, type, and order)
User->UI: Inserts column, type, and order.
UI->Controller: sortRangeOfCells(column, type, order)
Controller->Controller: getSelectedCells()
Controller->Controller: getSortStrategy(type)
Controller->SortService: sortRangeOfCells(cells, column, strategy, order)
Controller->UI: Applies all the sort changes.
UI->User: Presents the changes to the user.
@enduml | false | true | false | false | sequence |
07e73d911a0f1d94585f2a7d83fd200b7029bf64 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Application-Orchestrator/Physical.puml | 5855d244f64b3debac437be24f80900a6543aeb4 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 428 | puml | @startuml
package "Application Orchestrator" #lightblue {
interface CLI
interface Web
interface REST
folder analyzer #ffffff {
component sailsjs
component sails.io
}
folder bin #ffffff {
component app
}
folder "app-orchestrator" #ffffff {
component micro
}
}
CLI -- app
app -- REST
Web -- sailsjs
Web -- REST
REST -- sailsjs
Web -- sails.io
REST -- micro
@enduml
| false | true | false | false | class |
d45f192a1af842148975d04e427f04696b78e963 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-class-korrespondansepart.iuml | abefc750bdfdbc50e09a60c432bf24e4c39a5cec | [] | 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 | 188 | iuml | @startuml
class Arkivstruktur.Korrespondansepart {
+systemID : SystemID [0..1]
+korrespondanseparttype : Korrespondanseparttype
+virksomhetsspesifikkeMetadata : any [0..1]
}
@enduml
| false | true | false | false | class |
5b2d8e06e34a57b764f19514c132443c2ee5a993 | 537654c9b992b5d1e78441d5e99944c66c3f60bd | /doc/sasino.puml | 840e1a41003c3e274bcb11abad45db0dc21ae437 | [] | no_license | yuutoabe/webjava-2 | 1667c82dfa2b9a9023e9a26b1f6ed187716cddde | a7d7bdc33549bb18bbdbf94d3be255faa6edd8f6 | refs/heads/master | 2020-04-17T10:42:12.778151 | 2019-02-22T14:03:25 | 2019-02-22T14:03:25 | 166,510,658 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 658 | puml | @startuml
abstract Game
class BlackJack
class HighAndLow
abstract Actor
class BlackJackActor
class Player
class Dealer
class HighAndLowActor
class GameController
class HighAndLowController
class BlackJackSession
class HighAndLowSession
class Deck
class Card
Game <|-- BlackJack
Game <|-- HighAndLow
Actor <|-- BlackJackActor
Actor <|-- HighAndLowActor
BlackJackActor <|-- Player
BlackJackActor <|-- Dealer
Deck <-- Card
GameController <-- BlackJack
HighAndLowController <-- HighAndLow
BlackJack <-- Actor
HighAndLow <-- Actor
GameController <-- BlackJackSession
HighAndLowController <-- HighAndLowSession
Actor <-- Deck
@enduml | false | true | false | false | sequence |
7036296c19d68e7783c225929a3c5430afa5bce9 | 7e1dafb1a7d1cd7d9e68aea17bb8690de40ead92 | /marketstrategies.puml | 17a5a200f7571ec7211a952f66f14cfc13c40876 | [] | no_license | HSilatani/SuperMario | d5c31284f4cd6159b9e7240e661411addc59217f | d1018a04051d3b0dfc7a4faee61436661314a897 | refs/heads/master | 2018-07-10T10:14:27.953544 | 2018-06-06T06:16:10 | 2018-06-06T06:16:10 | 112,534,479 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 462 | puml | @startuml
class MarketStrategySystem
MarketStrategySystem --> marketStrategyManager : A link
note on link #red: note that is red
class marketStrategyManager
class marketManager
marketStrategyManager --> marketManager
class TrackerStrategy
marketManager --> TrackerStrategy
class marketStrategyOpenOnLow
marketManager --> marketStrategyOpenOnLow
class positionManager
marketStrategyManager --> positionManager
class position
positionManager --> position
@enduml | false | true | false | false | sequence |
af0e5944fb0af776a1d9d7fbf3dee1dc3438e15c | 06e93d722a18add11c25541a4e525b9f4b9ab83d | /implementation/ast_nodes.puml | 88367c9ffb7a591c13ede5efa8dd8ded8b3227d5 | [] | no_license | eroatta/thesis | a00ee3c69966b9794ca69147881b94909a306851 | bd191d1691dea9ba433772fabf9b9726bc1b7237 | refs/heads/master | 2021-09-18T00:11:01.309241 | 2021-08-22T18:54:47 | 2021-08-22T18:54:47 | 91,565,606 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 355 | puml | @startuml ast_nodes
package ast {
interface Node {
+ Pos()
+ End()
}
interface Expr {
# exprNode()
}
Expr --|> Node
interface Stmt {
# stmtNode()
}
Stmt --|> Node
interface Decl {
# declNode()
}
Decl --|> Node
}
package token {
class Pos
}
Node -- Pos
@enduml
| false | true | false | false | class |
4f7971e35757ebe3d78a26adddac402cfdf4c93a | 57af2f1f7ba82bcc5f6e652d3a305d93d727be2c | /moose-wiki/Developers/img/fame/fame-meta-model.puml | 0c0ed98f21d395c774243ef782b2c3c733dda68e | [
"MIT"
] | permissive | reda-idtaleb/moosetechnology.github.io | a36b09f19c37ac43b4fa012a1b909ca37b4a6928 | b866efa65dbdf3ad5d23504391dee4684d42c5b1 | refs/heads/master | 2023-07-03T22:38:48.775864 | 2021-08-06T09:00:54 | 2021-08-06T09:00:54 | 388,830,027 | 0 | 0 | MIT | 2021-07-23T14:33:58 | 2021-07-23T14:33:57 | null | UTF-8 | PlantUML | false | false | 757 | puml | @startuml
Element <|-- Type
Type <|-- Class
Type <|-- Trait
Element <|-- Package
Element <|-- Property
Class <|-- Boolean
Class <|-- Number
Class <|-- String
Class <|-- Object
class Element {
fullname : String
name : String
}
class Class {
abstract : Boolean
root : Boolean
primitive : Boolean
}
class Trait {
root: Boolean
primitive : Boolean
}
class Property {
multivalued : Boolean
composite : Boolean
container : Boolean
derived : Boolean
}
Element --> Element
Type *--"0..*" Property
Type --"0..*" Trait
Type "0..*"--* Package
Class --> Class : superclass
Class --> Class : subclass
Package --"0..*" Property : extensions
Property --> Property : opposite
Property --> Object : defaultValue
@enduml | false | true | false | false | sequence |
4c77c29204fde859f560dde964c0bd74e3ceefe2 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Audio/AudioClipPropertiesDrawer.puml | 669e77cb129b8bf20533bdb2aea61d78dcac70c8 | [] | 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 | 582 | puml | @startuml
class AudioClipPropertiesDrawer {
+ <<override>> OnGUI(position:Rect, property:SerializedProperty, label:GUIContent) : void
}
class Styles <<static>> {
+ <<const>> VolumeControl : string = "AudioClipPropertiesDrawer.volume"
<<const>> k_Indent : string = " "
+ <<const>> valuesFormatter : string = "0.###"
+ {static} mixedPropertiesInfo : string
+ {static} audioSourceContribution : string
}
PropertyDrawer <|-- AudioClipPropertiesDrawer
AudioClipPropertiesDrawer o-> "s_MixInfoBuilder" StringBuilder
AudioClipPropertiesDrawer +-- Styles
@enduml
| false | true | false | false | class |
6bd6a7b15747fef0f6241c9f27c64ca9ebf09674 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/order/media/src/useCase11bChargeModify.puml | df4aecc615ad2f3d5aeea6d57a21937b553734d4 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,854 | puml | @startuml
hide footbox
participant Buyer
entity "Modify Product Order Item Completion Date" as MPO
entity "Product Order" as PO
entity "Product Order Item" as POI
entity Charge
autonumber
activate PO
activate POI
note over PO, POI: Product Order and Product Order Item in state: inProgress
Buyer -> MPO : POST modifyProductOrderItemCompletionDate request \n `expediteIndicator=true`
activate MPO
MPO -> MPO: validation
MPO -> MPO: assign id
MPO -> MPO: state: acknowledged
MPO --> Buyer: POST modifyProductOrderItemCompletionDate response
MPO -> POI: (causes state change)
POI -> POI: state: pending
POI -> Buyer: POST productOrderItemStateChangeEvent
POI -> PO: (causes state change)
PO -> PO: state: pending.assessingModification
PO -> Buyer: POST productOrderStateChangeEvent
note over POI, Charge: Modification charges identified
POI -> Charge: (causes creation)
activate Charge
Charge -> Charge: state: awaitingResponse
Charge -> Buyer: POST chargeCreateEvent
Charge -> MPO: (causes state change)
MPO -> MPO: state: inProgress.assessingCharge
MPO -> Buyer: POST modifyProductOrderItemCompletionDateStateChangeEvent
Buyer -> Charge: GET Charge request
...
note over Buyer: The Buyer decides to accept all charges
Buyer -> Charge: PATCH Charge (accept all charges)
Charge -> Charge: state: completed
Charge -> Buyer: POST chargeStateChangeEvent
Charge -> MPO: (causes state change)
deactivate Charge
MPO -> MPO: state: done
MPO -> Buyer: POST modifyProductOrderItemCompletionDateStateChangeEvent
MPO -> POI: (set `expediteIndicator=true`, `expediteIndicatorAccepted=true`)
deactivate MPO
POI -> POI: state: inProgress
POI -> Buyer: POST productOrderItemStateChangeEvent
POI -> PO: (causes state change)
PO -> PO: state: inProgress
PO -> Buyer: POST productOrderStateChangeEvent
note over PO, POI: The Seller continues processing
...
@enduml | false | true | false | false | sequence |
13f2281e97cde29e413db0c9cc841e83768fc48e | c2ef7c48e236c3d1780fdcac75abce25c672c652 | /src/main/resources/uml/FlyweightUml.puml | 4309efbb63760d4a8c7879b3c538caa786e109d0 | [] | no_license | ToryZhou/design-pattern | 8d63b720ef54c9633eb10122c4cbeae45ae7ea1c | c9bcd6ae5cfb398e86d3af9a6a704e70a604b5cd | refs/heads/master | 2022-09-10T09:57:10.616533 | 2022-08-22T02:48:42 | 2022-08-22T02:48:42 | 132,232,311 | 62 | 31 | null | 2022-08-22T02:48:43 | 2018-05-05T09:11:57 | Java | UTF-8 | PlantUML | false | false | 344 | puml | @startuml
title Flywight
abstract class Website{
+use()
}
class WebsiteFactory{
-hashtable: Hashtable
+getWebsiteCategory(): Website
+getWebsiteCount(): int
}
class ConcreteWebsite{
-name: String
+use()
}
class User{
-name: String
}
Website <|-- ConcreteWebsite
User <. Website
Website <-o WebsiteFactory
@enduml | false | true | false | false | class |
9bda39baa9f67c4bff173138cbdc23d9d16dd815 | 3b7a96322ab149e10e8a9d8e08898faabdb70bf8 | /designpattern/src/main/java/org/tombear/designpattern/visitor/design.puml | 606fe0708750da1337ea679b896c084ae8ceff1c | [] | no_license | zhangjihere/archetypedemo | a3034d405b8eb1c3f8d6cf33f7d4754e7a446b3f | 347b4b74a738c8d6e192efd69e06903d4f347273 | refs/heads/master | 2021-06-02T20:08:47.789812 | 2019-09-27T08:47:52 | 2019-09-27T08:47:52 | 96,620,231 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 823 | puml | @startuml
interface Visitor {
+{abstract} void visit(Customer)
+{abstract} void visit(Order)
+{abstract} void visit(Item)
}
interface Element {
+{abstract} void accept(Visitor)
}
class CustomerGroup{
- ArrayList<Customer> customers
+ void addCustomer(Customer)
}
class Customer{
- String name
- ArrayList<Order> orders
+ String getName()
+ addOrder(Order)
}
class Order{
- String name
- ArrayList<Item> items
+ String getName()
+ void addItem(Item)
}
class Item{
- String name
+ String getName()
}
class GeneralResult{
- int customerNo
- int orderNo
- int itemNo
~ void displayResult()
}
Element <|.. CustomerGroup
Element <|.. Customer
Element <|.. Order
Element <|.. Item
CustomerGroup o- Element
Visitor <|.. GeneralResult
Client --> CustomerGroup
Client --> Visitor
@enduml | false | true | false | false | class |
0c34b320885dfcc9e2195a08f163614474eae632 | 31fcfb2aaeb3e15bc6f0595db8b6cee7d7ee25e8 | /week2/dip.puml | 356954c5ab82cab2f4120ff5fae3470280b8b32d | [] | no_license | Common-zhou/architect | 1920ba4447db9a76b2a148b5ee2bf5f9777ad5dd | a80c5120d11c2bea3ef6e28d18d93ca0d4c78544 | refs/heads/master | 2023-03-20T03:12:08.771966 | 2020-09-18T15:56:50 | 2020-09-18T15:56:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 219 | puml | @startuml
header Dependency inversion pattern
class Controller
interface Service
class ServiceImpl
interface Dao
class DaoImpl
Controller .> Service
Service <|.. ServiceImpl
ServiceImpl .> Dao
Dao <|.. DaoImpl
@enduml | false | true | false | false | class |
9891925ed47b12aa75f31687351673354bf7a912 | 82dd7b778e320eb988c11cd8b598d1e7ecade126 | /src/util/util.plantuml | 6ed420efe4f7891c8b7072473f4e20c58e0e60d2 | [] | no_license | joram-sjamaar/ChatClient | e998e0092dd1cd0b6b5f45b4ee1d6767c7189685 | c8be32fbac4ce89883ebb45aca070e0cf97e51b4 | refs/heads/master | 2022-11-03T14:35:55.806756 | 2020-01-26T22:15:04 | 2020-01-26T22:15:04 | 223,383,408 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 449 | plantuml | @startuml
title __UTIL's Class Diagram__\n
namespace util {
class util.Encryption {
{static} + decrypt()
{static} + encrypt()
}
}
namespace util {
enum MessageType {
BROADCAST
PRIVATE
}
}
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 |
44b6f0fd027b654720867abb2efff3d2bc5b2717 | 59ed27413d7d43b933d32b3b60a320ff18bf1027 | /src/main/plantuml/homerolled-e2e-testing.puml | b271b1219e9efc8ac4160cbfa7eb3f4b7179e9c8 | [] | no_license | pfrank13/spring-boot-test | ec7ed093a578034472ea1fbb85f6756682435d99 | 59e04c11cf13690648f297b24453b2962c671683 | refs/heads/master | 2021-05-01T11:38:55.059903 | 2016-11-29T23:49:23 | 2016-11-29T23:49:23 | 73,313,131 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 909 | puml | @startuml
actor developer as d
participant JunitRule as j
participant JunitTest as jt
participant RestAssured as ra
participant SpringBootApp as sb
participant WireMock as wm
participant EmbeddedDb as edb
d -> j: mvn clean install
j -> wm: start server and get remote port
j <- wm: remote port
j -> sb: start spring boot against remote port \n and get spring boot port
sb -> sb: Configure RemoteClient\nfor remote port
sb -> edb: bootstrap with sql
edb -> sb: success?
sb -> j: SpringBoot port
j -> ra: Configure RestAssured\n for SpringBoot port
jt -> wm: mock get /remoteBar
wm -> jt: success?
jt -> ra: test for get /foo
ra -> sb: get /foo
sb -> wm: get /remoteBar
wm -> sb: mock response
sb -> edb: get ResultSet
edb -> sb: ResultSet response
sb -> ra: mapped response
ra -> jt: ValidatableResponse
jt -> ra: Validate (Status, Path etc)
ra -> jt: isValid
jt -> j: Cleanup
j -> d: pass/fail build
@enduml | false | true | false | false | usecase |
8f90d746658d0038976e439289cf3c63e1428fdb | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitRemoveShippingAddressIdAction.puml | a809cf1702d8c5cb68a538f471c902e929c46b3d | [] | 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 | 517 | 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 BusinessUnitRemoveShippingAddressIdAction [[BusinessUnitRemoveShippingAddressIdAction.svg]] extends BusinessUnitUpdateAction {
action: String
addressId: String
addressKey: String
}
interface BusinessUnitUpdateAction [[BusinessUnitUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
37f22c02bf16f3f1b526746083c1171f3ddd51e6 | eec795fe8c5846fabbe68b2aa68f87ca7f024ffc | /Diagrams/SequenceDiagrams/seq-prepare-1.1.1.b.plantuml | 4c7260a9d859d98ba073de55e43a2a7ffa362551 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | AlbogastAman/docs | 933dac710c40be2533bab257f3b13a505d3bdd45 | d179f6df93770e8c00bbe168b49f9ee5104faf3b | refs/heads/master | 2020-04-22T20:23:12.401158 | 2019-02-12T14:34:13 | 2019-02-12T14:34:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,374 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Georgi Georgiev <georgi.georgiev@modusbox.com>
* Miguel de Barros <miguel.debarros@modusbox.com>
--------------
******'/
@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 "topic-transfer-prepare" as TOPIC_TRANSFER_PREPARE
control "Prepare Event Handler" as PREP_HANDLER
collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION
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_TRANSFER_PREPARE
participant PREP_HANDLER
participant TOPIC_TRANSFER_POSITION
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_TRANSFER_PREPARE <- PREP_HANDLER: Consume Prepare event batch of messages for Payer
activate TOPIC_TRANSFER_PREPARE
deactivate TOPIC_TRANSFER_PREPARE
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/master/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_TRANSFER_POSITION: Route & Publish Position event for Payer
activate TOPIC_TRANSFER_POSITION
deactivate TOPIC_TRANSFER_POSITION
end
end
deactivate PREP_HANDLER
@enduml
| false | true | true | false | sequence |
740039fa10b64bd509fe09ce13554a66e51a3a8f | e1b45b9eeb1a861d5ad62da23fed49deb8497dd1 | /src/main/docUML/uml.puml | 095fa8e9cc58bd214fe22650d7cde4c99cda5844 | [] | no_license | Ramin-Erwyn/TD4_MAPC | 77fb15f70694219fc0ae1dd46414e3bf7f4f9f6b | f377cc0f5fcb1ac01fdfaf8c0575f93956e01c43 | refs/heads/master | 2023-01-08T07:37:10.561319 | 2020-11-10T16:36:26 | 2020-11-10T16:36:26 | 311,714,476 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,158 | puml | @startuml
package distributeur {
class Client{}
interface MachineEtat{
+ give(MachineEtat m, int n) : void
+ askCoffee(MachineEtat m) : void
+ askTee(MachineEtat m) : void
}
class Distributeur {
- somme : int
- State : DistributeurState
~ caisse() : integer
~ ajouterCaisse() : integer
~ diminuerCaisse() : void
~ reinitialisation() : void
~ setState() : void
~ give(integer n,i) : void
~ askCoffee() : void
~ askTee() : void
~ getRefund() : void
}
class DistributeurValide implements DistributeurState{
- {static} instance
+ getInstance() : DistributeurState
+ give(DistributeurState a, int i) : void
+ askCoffee(DistributeurState a) : void
+ askTee(DistributeurState a) : void
}
class DistributeurInvalide implements DistributeurState{
- {static} instance
+ getInstance() : DistributeurState
+ give(DistributeurState a, int i) : void
+ askCoffee(DistributeurState a) : void
+ askTee(DistributeurState a) : void
}
}
@enduml
| false | true | false | false | class |
ca4459edcdc4c4aa68ad95a11714c561bd8f7ae6 | 6e29d893e7deebb9339dd5515195d7e510aba402 | /Documentação/Sprint 3/UC09_Efectuar_Candidatura/SSD_v2.plantuml | 749110f90fe12b39592794273d568b698a233f5d | [] | no_license | blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2 | 3a257326461907780a503165042584c5b7a8e535 | 95c31675e9008e961f00b177d6814046a72b577c | refs/heads/main | 2023-03-18T20:54:48.147868 | 2021-03-21T20:10:16 | 2021-03-21T20:10:16 | 331,623,577 | 0 | 2 | null | 2021-03-21T20:10:17 | 2021-01-21T12:38:14 | Java | UTF-8 | PlantUML | false | false | 738 | plantuml | @startuml
title UC9 - Efectuar Candidatura
actor Freelancer
activate Freelancer
Freelancer -> Sistema : 1 - Inicia a Candidatura a um anúncio
activate Sistema
Sistema --> Freelancer : 2 - Solicita escolha de um anúncio elegível
deactivate Sistema
Freelancer -> Sistema : 3 - Seleciona anúncio para registar candidatura
activate Sistema
Sistema --> Freelancer : 4 - Solicita dados para a candidatura \n (i.e. valor pretendido, numerdo dias, texto apresentação (opcional), texto motivação (opcional) )
deactivate Sistema
Freelancer -> Sistema : 5 - Introduz os dados solicitados
activate Sistema
Sistema --> Freelancer : 6 - Regista a nova candidatura e informa sucesso da operação
deactivate Sistema
deactivate Freelancer
@enduml | false | true | true | false | usecase |
2e8df593f03a6233daf6d08cde9527a16c80f683 | 78cb633ff132632f816c0005be7210a70adaa6a1 | /diagrams/ex44_PlantUML.puml | 3327b5ce8363174836aafab658879946bf595432 | [] | no_license | Mauricio1629/rios-cop3330-assignment3 | d5dbfd04e7f9126829a5d642d4562237fa0dd04f | 1420e332692bda2ee72c029e97c16fce198fba1c | refs/heads/master | 2023-06-01T09:58:33.995043 | 2021-06-21T01:55:40 | 2021-06-21T01:55:40 | 378,778,994 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 877 | puml | @startuml
'https://plantuml.com/class-diagram
class Application {
productsList: List<Products>
search: String
output: String
+loadFiles()
+getSearch()
+matchSearch()
+printOutput()
}
class loadFiles{
input: file input
output: List<Products> productsList
}
class getSearch{
input: prompt user for input
output: String search
}
class matchSearch{
input: List<Products> productsList, String search
output: String output
}
class printOutput{
input: String output
output: void
}
class Products {
name: String
price: Double
quantity: Integer
+getName()
+setName()
+getPrice()
+setPrice()
+getQuantity()
+setQuantity()
+toString()
}
Application <|-- Products
Application <--loadFiles
Application <-- getSearch
Application <-- matchSearch
Application <-- printOutput
@enduml | false | true | false | false | class |
27674520f35bba09f6b5a0121b7f28e56863aa37 | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/asset.plantuml | 8a1615663371d9d3abb883a1d65e2cc8c2a4a29b | [
"Apache-2.0"
] | permissive | TOMP-WG/TOMP-API | 02bbd268c6ece21f7a5d28f4e42e1b456233e8e9 | 2aa6ae3d6b355a12a8936ff1069821bb7c89a743 | refs/heads/master | 2023-09-01T16:13:50.445300 | 2023-07-25T12:08:52 | 2023-07-25T12:08:52 | 189,022,994 | 80 | 34 | Apache-2.0 | 2023-08-22T12:36:34 | 2019-05-28T12:21:59 | null | UTF-8 | PlantUML | false | false | 189 | plantuml | @startuml
skinparam package {
BorderStyle dotted
}
frame "Asset" {
Asset }-up- AssetType
}
package "Travel right" {
Asset .right.> Leg
AssetType ..> Leg
Leg -up-> Booking
}
@enduml | false | true | false | false | class |
91717cdd0474294e31af025221aaabcef5fbf64e | f3c80a33fb02b8931bc5e05e44bca9f70ea5f077 | /upskill_Java1_LPJ_grupo1-main/Sprint/FicheirosProjeto/IT1/UC7_RegistarFreelancer/UC7_SSD.wsd | dd3c864bac4450e9e1938f62eded1f6cd3218d87 | [] | no_license | helfer1991/T4J-Platform-UpSkill | ae4728fa3ca37964e8083e2d2d3bafde4c894043 | 2c439b6196ff6d1eae0f0877a4caba60b89f728b | refs/heads/main | 2023-04-04T19:10:25.676176 | 2021-04-12T20:20:14 | 2021-04-12T20:20:14 | 357,322,435 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,046 | wsd | @startuml
autonumber
actor "Administrativo" as UNR
activate UNR
UNR -> ":Sistema" : registar freelancer
activate ":Sistema"
":Sistema" --> UNR : solicita dados do freelancer (o nome, o NIF, o endereço postal, um contacto telefónico e email)
deactivate ":Sistema"
UNR -> ":Sistema" : introduz os dados solicitados
loop
activate ":Sistema"
":Sistema" --> UNR : solicita habilitações académicas (grau, designação do curso, instituição que concedeu o grau e média do curso)
deactivate ":Sistema"
UNR -> ":Sistema" : introduz os dados solicitados
activate ":Sistema"
end loop
loop
":Sistema" --> UNR : solicita reconhecimentos de competências técnicas (data, competência técnica e grau de proficiência)
deactivate ":Sistema"
UNR -> ":Sistema" : introduz os dados solicitados
activate ":Sistema"
end loop
":Sistema" --> UNR : apresenta dados e solicita confirmação
deactivate ":Sistema"
UNR -> ":Sistema" : confirma
activate ":Sistema"
":Sistema" --> UNR : operação bem sucedida
deactivate ":Sistema"
deactivate UNR
@enduml
| false | true | true | false | usecase |
a539261f498042ca64433a644f6b3970acd42561 | f06026a2065ab92978d5550401ae6347bbcda5d4 | /exercise41/docs/uml.puml | f8622d2f1fd4b12924098e4d1ca00a53528f793c | [] | no_license | Dbug100/Murphy-a04 | b42e07e982a7e179c613b1e43507600bfe02d9ff | ed78d4b0a4c3a915d43f2e1e364a78be3e8e616e | refs/heads/main | 2023-08-31T18:21:35.130680 | 2021-10-20T02:57:05 | 2021-10-20T02:57:05 | 417,349,117 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 213 | puml | @startuml
class Solution41{
-ArrayList<String> names;
-NameSorter;
}
class NameSorter{
-vis NameSorter(Scanner, (arrayList)
-vis printNames(arrayList) : void
}
NameSorter --> Solution41
@enduml | false | true | false | false | class |
100901fa95f7df1b94c30d683c30fb961bb384de | 6c369b570f222c894964989ee63b706c69e8174d | /docs/dev/design_patterns/factory_method.puml | 8705e135460274922ac3b4a5354a468576838803 | [] | no_license | k2works/etude_for_rails | f74eae1844a9430d3c81047203ffc5d384e995ed | e728291c99ad4e34f144deedc44617bb796ac275 | refs/heads/master | 2021-01-20T01:46:29.373716 | 2018-04-26T08:53:20 | 2018-04-26T08:53:20 | 89,328,180 | 0 | 0 | null | 2017-06-08T02:25:58 | 2017-04-25T07:00:29 | HTML | UTF-8 | PlantUML | false | false | 267 | puml | @startuml
Product <|-- Product1
Product <|-- Product2
Product1 <--L ConcreteCreator1
Product2 <--L ConcreteCreator2
Creator <|-- ConcreteCreator1
Creator <|-- ConcreteCreator2
class Creator {
factory_method()
}
class ConcreteCreator1 {
factory_method()
}
@enduml
| false | true | false | false | class |
72a7c8fe02a6377d36eec6f19b98f51e72ea7d3b | da74b72e87d3426833fd89f69f90d92688451594 | /docs/uml/update object attributes.puml | 8c03667fd16146679ad52c8b723d159f47fbe396 | [
"MIT"
] | permissive | jkrus/0Chain-gosdk | b3c9865603c4887e00d21202bd89fe2b2e69fea9 | 7c126c5de14eba4e97795a609309272f9c6d85d1 | refs/heads/master | 2023-07-24T09:02:43.116593 | 2021-09-10T08:08:46 | 2021-09-10T08:08:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 912 | puml | @startuml
participant "<size:20><&terminal></size> ./zbox update-attributes" as cli
collections gosdk
collections blobber
cli -> gosdk: GetAllocation(allocID)
cli -> gosdk: GetFileMeta(remotePath)
cli -> gosdk: UpdateObjectAttributes(remotePath, attrs)
gosdk -> gosdk: check initialized allocation
gosdk -> gosdk: check valid path
gosdk -> gosdk: create attributes request
group for each blobber (blobber, bidx)
gosdk -> blobber: call http request to get object tree
gosdk -> blobber: call http request to update attribute
alt successful status code
gosdk -> gosdk: increase consensus and change attributesMask
end
end
gosdk -> gosdk: check threshold consensus
gosdk -> gosdk: create commit request
group for each bit 1 in the attributesMask
gosdk -> blobber: add commit request
end
group for each successful commit
gosdk -> gosdk: increase consensus
end
gosdk -> gosdk: check threshold consensus
@enduml
| false | true | false | false | sequence |
63acadb1a80f185db0cb4d49a40226cc33431ca9 | 28cc353b960282035a9d030fbc9a1e8ce8491876 | /document/diagrams/usercase/admin.puml | 31261abb7f6eace18e31afaacb58526cabfe59cd | [
"MIT"
] | permissive | hataketsu/PetStore4 | 39b107ab004d16c23076a4d5ab24b81c9bc0d8de | 479b0709e7d9f202b6fa90adf8a6c4a874681fa3 | refs/heads/master | 2020-03-19T17:09:25.162293 | 2019-12-26T16:26:31 | 2019-12-26T16:26:31 | 136,746,560 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 409 | puml | @startuml
Admin --> (Đăng nhập)
Admin --> (Quản lý sản phẩm)
Admin --> (Quản lý danh mục)
Admin --> (Quản lý người dùng)
Admin --> (Quản lý đơn hàng)
Admin --> (Quản lý quảng cáo)
Admin --> (Quản lý bài viết)
Admin --> (Quản lý mã giảm giá)
Admin --> (Quản lý mã cài đặt)
Admin --> (Đổi thông tin cá nhân)
Admin --> (Đổi mật khẩu)
@enduml | false | true | true | false | uml-unknown |
d2dd306a8e11a37d38c707645e8d662096b59671 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/UnityEditorInternals.puml | c84882119c2c1467f545157a36e1cdf264d82f88 | [] | 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 | 168 | puml | @startuml
class UnityEditorInternals <<static>> {
+ {static} DoObjectField(position:Rect, obj:Object, type:Type, controlId:int, allowScene:bool) : Object
}
@enduml
| false | true | false | false | class |
865db697437d0720879999448ce439b13673fa05 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Utilities/StyleManager.puml | 6d52c6cf9ea8bee02e372398655f5a7c828e6557 | [] | 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 | 444 | puml | @startuml
class StyleManager <<static>> {
{static} <<readonly>> k_ErrorCannotFindStyle : string
+ {static} UssStyleForType(type:Type) : GUIStyle
{static} CustomStyleForType(type:Type) : string
{static} IsStyleValid(ussStyle:string) : bool
{static} ClearCacheIfInvalid() : void
}
class "Dictionary`2"<T1,T2> {
}
StyleManager o-> "s_CustomStyles<Type,GUIStyle>" "Dictionary`2"
StyleManager --> "s_CurrentSkin" GUISkin
@enduml
| false | true | false | false | class |
9102f4975081ee89fafc96fa36e6ff77c485802f | 5398edf034a5d9d64269d88dd641766ffa1ecf04 | /app/src/main/java/com/example/cbsd_project/models/models.plantuml | c6660bd9d9bd57f053c0766eee17a2941916b6d9 | [] | no_license | salama135/friendly-chat | e967307eb46dc3145667c35366b6767cd1d5372f | a1c25b3cbaf80892739a4030570912becb181c3d | refs/heads/main | 2023-05-29T08:24:08.790230 | 2021-06-09T22:19:43 | 2021-06-09T22:19:43 | 371,679,284 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,853 | plantuml | @startuml
title __MODELS's Class Diagram__\n
namespace com.example.cbsd_project {
namespace models {
class com.example.cbsd_project.models.Message {
{static} + firebasePath : String
- content : String
- messageType : String
- messageViewType : String
- sender : String
+ Message()
+ Message()
+ getContent()
+ getMessageType()
+ getMessageViewType()
+ getSender()
+ setContent()
+ setMessageType()
+ setMessageViewType()
+ setSender()
}
}
}
namespace com.example.cbsd_project {
namespace models {
class com.example.cbsd_project.models.Participant {
{static} + firebaseCountName : String
{static} + firebasePath : String
- nickname : String
- participantType : String
- userID : String
+ Participant()
+ Participant()
+ getNickname()
+ getParticipantType()
+ getUserID()
+ setNickname()
+ setParticipantType()
+ setUserID()
}
}
}
namespace com.example.cbsd_project {
namespace models {
class com.example.cbsd_project.models.PinnedMessage {
{static} + firebaseCountName : String
{static} + firebasePath : String
- messageID : String
+ PinnedMessage()
+ PinnedMessage()
+ getMessageID()
+ setMessageID()
}
}
}
namespace com.example.cbsd_project {
namespace models {
class com.example.cbsd_project.models.Room {
{static} + firebasePath : String
{static} - currentRoom : Room
- name : String
- roomID : String
- roomType : String
+ Room()
+ Room()
{static} + getCurrentRoom()
+ getName()
+ getRoomID()
+ getRoomType()
{static} + setCurrentRoom()
+ setName()
+ setRoomID()
+ setRoomType()
}
}
}
namespace com.example.cbsd_project {
namespace models {
class com.example.cbsd_project.models.User {
{static} + firebasePath : String
{static} - currentUser : User
- email : String
- name : String
- userID : String
+ User()
+ User()
{static} + getCurrentUser()
+ getEmail()
+ getName()
+ getUserID()
{static} + setCurrentUser()
+ setEmail()
+ setName()
+ setUserID()
}
}
}
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 |
2ba8a5ee707c22b36ee46a44b99876ee94791c0a | 19f793bed6a7ddbe4f01616e2374a9ddc459e8b1 | /doc/创建型模式/抽象工厂模式-类图(5分).puml | f7f3a5ec2ca28abcba55426b65b2419c92e90824 | [] | no_license | 1wang1/design-patterns | 02a87e8c2f170f2a2de4993e8f11b9ef9a522627 | 5ebd98248ea5a035e19a843f823971676899a212 | refs/heads/master | 2022-12-19T04:30:30.790952 | 2020-09-27T11:42:41 | 2020-09-27T11:42:41 | 272,214,620 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 912 | puml | @startuml
abstract class AbstractFactory{
+ createProductA():ProductA
+ createProductB():ProductA
}
class ConcreteFactory1{
+ createProductA():ProductA
+ createProductB():ProductA
}
class ConcreteFactory2{
+ createProductA():ProductA
+ createProductB():ProductA
}
ConcreteFactory1 ..|>AbstractFactory
ConcreteFactory2 ..|>AbstractFactory
abstract class AbstractProductA{
+ use():void
}
class ConcreteProductA1{
+ use():void
}
class ConcreteProductA2{
+ use():void
}
ConcreteProductA1 ..|>AbstractProductA
ConcreteProductA2 ..|>AbstractProductA
abstract class AbstractProductB{
+ use():void
}
class ConcreteProductB1{
+ use():void
}
class ConcreteProductB2{
+ use():void
}
ConcreteProductB1 ..|>AbstractProductB
ConcreteProductB2 ..|>AbstractProductB
ConcreteFactory1 ..>ConcreteProductA1
ConcreteFactory1 ..>ConcreteProductB1
ConcreteFactory2 ..>ConcreteProductA2
ConcreteFactory2 ..>ConcreteProductB2
@enduml | false | true | false | false | class |
1117443c714cab5d0b451019e0921c9057a9311c | 4377d08019f74ce2ffb5283f76830b8ccf0a82d5 | /doc/packages.plantuml | 456cdce6dfa6b7f8a0149fef3aaa48856f66c6c9 | [] | no_license | tomasz-skowronski/ml-bouncing-racoon | 8aea1b950e82424b5a1e91781182bf5a6f42d46c | 4725f652c88ac87b196f320f7b2d1d0998a8bd99 | refs/heads/master | 2021-07-05T23:39:16.696015 | 2020-01-21T10:59:08 | 2020-01-21T11:56:58 | 235,533,790 | 0 | 0 | null | 2021-04-26T19:54:11 | 2020-01-22T08:55:47 | Java | UTF-8 | PlantUML | false | false | 359 | plantuml | @startuml
actor client
actor RTEV
package domain {
[provider]
[task]
[status]
}
domain .. [config]
[job] .. [config]
[job] --> task: clean up
client -> [api]
[api] -> [provider] : validate emails
[provider] --> RTEV: use
[provider] -> [task] : create
RTEV -> [task] : complete
[task] -> [status] : publish
[status] -> client : notify
@enduml | false | true | false | false | sequence |
209b5540e866e9b33ed4f41a1c4ff445ba4f208d | b07be2fd1f05f013b1e155e896008df155c64ea1 | /docs/start-task-sequence-diagram.puml | ed7ff80b9a552879b021baba0acf504ee0f0a62f | [
"Apache-2.0"
] | permissive | mverburg/toggl4taskwarrior | 4456e8bd87b395d665d8d977621695b4480ebc45 | adaad3cf4eea6533987d632ccdcd52eb5c935ff4 | refs/heads/master | 2023-07-06T11:11:30.618000 | 2021-08-06T13:16:05 | 2021-08-06T13:16:05 | 260,880,754 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 676 | puml |
@startuml start task
TaskWarrior -> TaskWarrior_Hook : on modify
alt if project does not exist in Toggl
TaskWarrior_Hook -> Toggl : POST api/v8/projects
note right : create new toggl project
end
TaskWarrior_Hook -> Toggl : GET api/v8/time_entries/current
note right : Get running time entry
alt if there is a running time entry
TaskWarrior_Hook -> Toggl : PUT api/v8/time_entries/{time_entry_id}/stop
end
TaskWarrior_Hook -> Toggl : POST api/v8/time_entries/start
note right : start a time entry
TaskWarrior_Hook --> TaskWarrior : return 0 (OK)
note right : result code = 0 (OK), ammend the modified \ntask with a note that the Toggl task has been started
@enduml | false | true | false | false | sequence |
8de0c885aa527665967b2a21065f16f72312c332 | 8eeaa622bd21c275f3c6995d3f1b3657b68b0618 | /src/Docs/_new/2-internals/1-core/10-erd/_puml/erd-shopware-core-checkout-order.puml | 7da4e9ad8125ccd77753bc4413dce9eed05d0425 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Gamingpc/platform | 79282f0e78f9346b4fa02a7907975890200d8ac8 | 47169962a2d7fa4b232ad63d3611ac392ba3ddf4 | refs/heads/6.0-dp | 2023-04-06T14:37:58.066081 | 2019-07-15T06:24:42 | 2019-07-15T06:24:42 | 188,271,256 | 3 | 2 | MIT | 2023-04-04T01:25:29 | 2019-05-23T16:35:37 | PHP | UTF-8 | PlantUML | false | false | 9,424 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreCheckoutOrderOrderDefinition, "order\n(Order root table)") {
primary_key(id) id
primary_key(versionId) version
autoIncrement int
orderNumber numberRange
not_null(billingAddressId) foreignKey
not_null(billingAddressVersionId) referenceVersion
not_null(currencyId) foreignKey
not_null(salesChannelId) foreignKey
not_null(orderDate) date
price cartPrice
amountTotal float
amountNet float
positionPrice float
taxStatus string
shippingCosts calculatedPrice
shippingTotal float
not_null(currencyFactor) float
deepLinkCode string
not_null(stateId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition, "order_address\n(Order address)") {
primary_key(id) id
primary_key(versionId) version
not_null(countryId) foreignKey
countryStateId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
not_null(street) string
not_null(zipcode) string
not_null(city) string
company string
department string
title string
vatId string
phoneNumber string
additionalAddressLine1 string
additionalAddressLine2 string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition, "order_customer\n(Order customer)") {
primary_key(id) id
primary_key(versionId) version
customerId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(email) string
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
title string
customerNumber string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition, "order_delivery\n(Delivery)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(shippingOrderAddressId) foreignKey
not_null(shippingOrderAddressVersionId) referenceVersion
not_null(shippingMethodId) foreignKey
not_null(stateId) foreignKey
trackingCode string
not_null(shippingDateEarliest) date
not_null(shippingDateLatest) date
shippingCosts calculatedPrice
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition, "order_delivery_position\n(Delivery position)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderDeliveryId) foreignKey
not_null(orderDeliveryVersionId) referenceVersion
not_null(orderLineItemId) foreignKey
not_null(orderLineItemVersionId) referenceVersion
price calculatedPrice
unitPrice float
totalPrice float
quantity int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition, "order_line_item\n(Order line item)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
parentId parentFk
not_null(parentVersionId) referenceVersion
coverId foreignKey
not_null(identifier) string
not_null(quantity) int
not_null(label) string
payload json
good bool
removable bool
stackable bool
not_null(price) calculatedPrice
not_null(priceDefinition) priceDefinition
unitPrice float
totalPrice float
description string
type string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition, "order_tag\n(M:N Mapping)") {
primary_key(orderId) foreignKey
primary_key(orderVersionId) referenceVersion
primary_key(tagId) foreignKey
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition, "order_transaction\n(Order transaction)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(paymentMethodId) foreignKey
not_null(amount) calculatedPrice
not_null(stateId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
ForeignTable(ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition, "state_machine_state") {
}
ForeignTable(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency") {
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreCheckoutDocumentDocumentDefinition, "document") {
}
ForeignTable(ShopwareCoreSystemCountryCountryDefinition, "country") {
}
ForeignTable(ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition, "country_state") {
}
ForeignTable(ShopwareCoreSystemSalutationSalutationDefinition, "salutation") {
}
ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") {
}
ForeignTable(ShopwareCoreCheckoutShippingShippingMethodDefinition, "shipping_method") {
}
ForeignTable(ShopwareCoreContentMediaMediaDefinition, "media") {
}
ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") {
}
ForeignTable(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method") {
}
' relationshipd
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
@enduml
| false | true | false | false | uml-unknown |
2fb4ecd746937ffc573ea9b88b11c5a3078c17f6 | a8a0cfec11df3e8ec16195d6b5a5123a414c2de1 | /architecture/aggregator-reducer-component-detail.puml | 8fd91d66e3616eac376f5ea76f5cf0e8dcc84a06 | [
"MIT"
] | permissive | helipilot50/real-time-reporting-aerospike-kafka | 22349b4dc0f428c9dcdbf927f1dfe91179928a62 | 8bb70180d9230f7741ef2eb7bf14b12398e810cf | refs/heads/master | 2023-01-09T02:06:13.989999 | 2021-05-11T12:12:06 | 2021-05-11T12:12:06 | 212,985,742 | 8 | 1 | MIT | 2023-01-07T13:33:13 | 2019-10-05T11:07:53 | JavaScript | UTF-8 | PlantUML | false | false | 285 | puml | @startuml
skinparam componentStyle uml2
package "Aggregator Reducer" {
component "Aerospike Node client" as asNodeCore
component "Kafka Node client" as asNodeKafka
component "Aggregator\nReducer" as aggReduce
aggReduce -d(0- asNodeCore
aggReduce -r(0- asNodeKafka
}
@enduml | false | true | false | false | component |
a08923bc00c097e3ff61c041004bf3d2d7a71019 | b0a840ee583d0f1dd05adb2bb6e08e4951083c3d | /images/ch17_datepicker/JQueryDatepicker.puml | cd0e4f9a7b49679614d4fc553336bd17be930ac3 | [] | no_license | selenium-webdriver-book/manuscript | 842ab108c9b3eb8127027c159b3318fd3fcdf59b | c8a8ced2b0ca495cacec6c909b3294ff3074e945 | refs/heads/master | 2021-01-12T14:00:07.309802 | 2017-04-23T15:17:59 | 2017-04-23T15:17:59 | 69,686,355 | 11 | 8 | null | 2017-04-23T15:17:59 | 2016-09-30T17:14:29 | Shell | UTF-8 | PlantUML | false | false | 1,488 | puml | @startuml
skinparam monochrome true
skinparam shadowing false
JQueryCalendar : Browser browser
JQueryCalendar : void show()
note bottom : The calendar is displayed\nafter calling show
JQueryMonthPicker : Browser browser
JQueryMonthPicker : void pickMonth(int month)
JQueryMonthPicker : void previousMonth()
JQueryMonthPicker : void nextMonth()
JQueryMonthPicker : int displayMonth()
note right : Used to pick\nmonth
JQueryYearPicker : Browser browser
JQueryYearPicker : JQueryMonthPicker monthPicker
JQueryYearPicker : void pickYear(int year)
JQueryYearPicker : void previousYear()
JQueryYearPicker : void nextYear()
JQueryYearPicker : int displayYear()
note bottom : Used to pick year\nIn nextYear(), it calls\nnextMonth() 12 times.\nIn previousYear(), it calls\npreviousMonth 12 times
JQueryDatepicker "1" *-- "1" JQueryCalendar : contains
JQueryDatepicker "1" *-- "1" JQueryYearPicker : contains
JQueryDatepicker "1" *-- "1" JQueryMonthPicker : contains
JQueryDatepicker "1" *-- "1" JQueryDayPicker : contains
JQueryYearPicker "1" *-- "1" JQueryMonthPicker : contains
JQueryDatepicker : Browser browser
JQueryDatepicker : JQueryMonthPicker yearPicker
JQueryDatepicker : JQueryMonthPicker monthPicker
JQueryDatepicker : JQueryDayPicker dayPicker
JQueryDatepicker : void pick(Month, int, int)
note right : Test script calls\npick(APRIL, 1, 2014)
JQueryDayPicker : Browser browser
JQueryDayPicker : void pickDay(int day)
note bottom : Used for pick the\nday of the month
@enduml
| false | true | false | false | class |
e8ca15af70268c047f2d707c63625eac5560c05e | 188aa3bd1c4fc0a88cab9726c2f2299f147e70d8 | /docs/UC_10/UC10_MD.puml | 43353326d29c657683ef6b87555b0b5822716597 | [] | no_license | botelho-io/lapr2-2020-g029 | c6a3c15bace1145c94c0495ac5f8ce54b7be478c | 1834bf842e5ae1f94d20ab61dad8e8124fc9f61b | refs/heads/master | 2023-08-17T00:53:42.364156 | 2020-06-14T22:29:10 | 2020-06-14T22:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,355 | puml | @startuml MD
skinparam classAttributeIconSize 0
hide methods
left to right direction
class TaskExecutionDetails {
- Date endDate
- Integer delayInDays
- String DescriptionQualityOfWork
}
class Organization {
- String name
}
class Task {
- String id
- String description
- Integer durationInHours
- Double costPerHourOfJuniorEur
- String category
}
class App {
}
class EmailScheduler {
}
class Freelancer {
- String id
- String name
- String levelOfExpertise
- String email
- String NIF
- String bankAccountIBAN
- String address
- String country
}
App "1" -- "*" Organization : has >
App "1" -- "1" EmailAPI : supports >
Organization "1" -- "*" Task : publishes >
EmailAPI "1" -- "*" Freelancer : e-mails >
TaskExecutionDetails "1" -- "1" Task : refers to>
App "1" -- "*" Freelancer : has >
App "1" -- "1" EmailScheduler : has >
EmailScheduler "1" -- "1" EmailAPI : uses >
@enduml | false | true | false | false | class |
feaac0f18dc97c038a976d5026c0a1727335a8d3 | 6f5b2694ac97556284d4eea8d6c7e99d15887f49 | /plantuml/order-flow.puml | a342442ec48b57a33a7a447b02126ea6fbd3234d | [] | no_license | letsdocoding/youtube-content-sources | bdb5981e32a6556bd3d14036f7ce3197b7a2b9bb | f0c2bfc7b14abc1adf33a5d9a09dce11abbb623d | refs/heads/main | 2023-08-28T00:32:21.052178 | 2021-10-03T23:41:55 | 2021-10-03T23:41:55 | 376,958,588 | 1 | 2 | null | 2021-10-03T23:41:16 | 2021-06-14T21:17:16 | Shell | UTF-8 | PlantUML | false | false | 1,610 | puml | @startuml my simple order request
header //LetDoCoding
footer Page %page% of %lastpage%
title "Orders Flow"
actor "Web User" as WebUser
participant "Front End" as Portal
participant Gateway
'participant "Identity\nServer" as IdentityServer #yellow
participant "Identity\nServer" as IdentityServer
participant "Rest Api" as RestApi
database OrdersDatabase
entity "External \nShipping Service" as ExternalShippingService
autonumber
WebUser -> Portal ++ : Orders Request
group Step: Authentication
Portal -> Gateway ++: GET /api/v1/orders\nBearer Token
Gateway -> IdentityServer ++: Authenticate Token
IdentityServer --> IdentityServer : Validate\nToken
IdentityServer -[#green]> Gateway : Success, Token Validated
else Authentication Failed
autonumber 5
IdentityServer -[#red]> Gateway -- : Request Failed
Gateway -[#red]> Portal : Authentication Failure
Portal -[#red]> WebUser : Login Again.
note right : Authentication has failed
end
autonumber 6
group Call Order API
Gateway -> RestApi ++ : GET api/v1/orders
RestApi --[#blue]> RestApi : Do Some\nProcessing
group Database Interaction
autonumber 8.1
RestApi -> OrdersDatabase ++: Query Orders
OrdersDatabase -> RestApi --: Orders
end
'loop
autonumber inc A
loop Find shipping status
'create ExternalShippingService
RestApi -> ExternalShippingService ++: Find Shipping Staus
ExternalShippingService -> RestApi -- : Return Shipping Status
end
autonumber 9
RestApi -> Portal --: Orders
end
Portal -> WebUser --: Response
@enduml
| false | true | false | false | sequence |
9b2fc2c4547e6679d1764081fda5deef18d60102 | 9fb5c199d8b2caa10a4712944e91670761bb5690 | /pisp/linking/participants.iuml | c88bc71b8ecc124bd671c977179ef24ae55f45bd | [
"Apache-2.0"
] | permissive | vessels-tech/mojaloop-pisp | 822aa1e4fe56126c397e00dc8f2e80d2a16fad40 | c0917b4ba72b1fed42eba390a677c046670476f1 | refs/heads/master | 2022-05-31T12:30:10.215424 | 2020-04-09T09:34:26 | 2020-04-09T09:34:26 | 250,414,218 | 0 | 0 | null | 2020-03-27T01:42:20 | 2020-03-27T01:42:20 | null | UTF-8 | PlantUML | false | false | 255 | iuml | box "Mobile device"
actor Alice
participant "PISP App" as App
end box
participant "PISP Server" as Server
box "Mojaloop"
participant ALS
participant Switch
participant "Central\nFIDO Server" as FIDO
end box
participant "DFSP A" as DFSP | false | true | false | false | sequence |
26060e9c0019a3648bec45c1746e56760212fdf9 | 7ec93871cc7d07c48beabb8dc7d920ff016028ea | /Lab3/ClassDiag1.puml | 6dc525de7acca8eb2da0ce7ba989bb603a5670cc | [] | no_license | t00208620/OOAD | f256c5bb192f79615de6e101098ba422e8883776 | 7ac859bf85eec097b08ea7428f8bb12091056899 | refs/heads/master | 2023-08-24T07:40:01.452351 | 2021-10-11T12:07:57 | 2021-10-11T12:07:57 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 349 | puml | @startuml
'https://plantuml.com/class-diagram
class Manager{
{static} String ManId
String Sname
String Fname
}
class Branch{
{static} String Bno
String Name
String TelNo
}
class Staff{
{static} String staffId
String Sname
String Fname
String TelNo
}
Manager o-- "Is a" staff
Branch }-- "manages" Manager
Staff }-- "allocated" Branch
@enduml | false | true | false | false | class |
bf46fec799fdcc41b89dbbf46b2fff5ba81d207b | 963174533b5554daf933ff415bbde06acbf574f3 | /diagrams/T1a.puml | 027175a7e464fcd0e5e733c0c3e0311506ba4f80 | [] | no_license | bhnatkowska/ClassDiagramComparison | bfcaf68ec2f10e46abb81d4461591b869a658248 | df2771990d1c9c577445f49e277c7b72c7cc0b0b | refs/heads/main | 2023-02-14T02:25:39.835157 | 2021-01-03T11:08:30 | 2021-01-03T11:08:30 | 326,383,253 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 354 | puml | @startuml
class ProductLine {
p_productDescription : String
pln_textDescription : String
pln_productLine : String
}
class Product {
p_quantityInStock : Integer
p_productCode : String
p_productName : String
p_productScale : String
p_productVendor : String
p_buyPrice : Real
p_MSRP : Real
}
Product "1..*" -- "1" ProductLine
@enduml
| false | true | false | false | class |
e64f3d5d6a0659cfc8734a42be6d0d022084a743 | 7c468a29a573cf41e9f2c9ad29eab9286cf75036 | /src/main/java/ex43/WebsiteGenerator.puml | 8a7e66196531139ce1f35dc45a36a2e3fe4eb455 | [] | no_license | Lino437/Gonzalez-cop3330-assignment3 | e8e738090103df284aae24c26e088ff709145c1e | f804d17918672785ea29c26df924f51624f1d935 | refs/heads/master | 2023-06-09T01:52:16.762281 | 2021-06-22T03:43:21 | 2021-06-22T03:43:21 | 378,556,313 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 266 | puml | @startuml
'https://plantuml.com/class-diagram
class App
class CreateSkeleton{
generateAllFolders()
generateFiles()
writeToFile()
}
class GenerateAllFolders{
generateFolder()
}
App o--> CreateSkeleton
CreateSkeleton o--> GenerateAllFolders
@enduml | false | true | false | false | class |
819e71cbd3b9170d37ada834babf79a5df5b404b | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch04/resources/그림4.4.puml | fcef10a3ef909374eb34332a255aed6cd15d45a4 | [
"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 | 483 | puml | @startuml
'skinparam linetype polyline
skinparam linetype ortho
abstract class Storage {
+ write()
}
class CompressedStorage extends Storage {}
class EncryptedStorage extends Storage {}
class CacheableStorage extends Storage {}
class CompressEncryptedStorage extends CompressedStorage, EncryptedStorage {}
class EncryptedCompressedStorage extends CompressedStorage, EncryptedStorage {}
class CacheableEncryptedStorage extends CacheableStorage, EncryptedStorage {}
@enduml
| false | true | false | false | class |
fa2ac3aa40ad30280cfec001017583df926365e1 | 91fceecc2c8cf6309741e0fb715cec95f8558ca8 | /assets/dp-proxy.plantuml | f0761314a658ac475128776b8f78282d751a09ad | [
"MIT"
] | permissive | ohm-softa/ohm-softa.github.io | dd8b3fbbcce62d3625603376f0771ab62557d76a | 7479445d2b5598a9aaaa4f37ffd76436fc81482e | refs/heads/master | 2023-07-20T07:43:25.665737 | 2023-07-12T08:10:32 | 2023-07-12T08:10:32 | 170,150,460 | 20 | 42 | MIT | 2023-06-24T15:22:55 | 2019-02-11T15:16:01 | HTML | UTF-8 | PlantUML | false | false | 570 | plantuml | @startuml
allow_mixing
'skinparam linetype ortho
actor Client
interface Subject {
+ request()
}
Client -right-> Subject
class RealSubject implements Subject {
+ request()
}
class Proxy implements Subject {
- realSubject: RealSubject
+ request()
}
Proxy --> RealSubject
note left of Proxy::request
realSubject.request()
endnote
@enduml
@startuml
actor Client
Client --> aProxy : request()
activate aProxy
aProxy --> aSubject : request()
activate aSubject
aSubject --> aProxy : return ...
deactivate aSubject
aProxy --> Client : return ...
@enduml
| false | true | false | false | sequence |
da67593bedc80463dfa920e48d38a3433279b82e | ec24af5b2f6563523f67d0eb3a64a902e6f5b5a3 | /sequence.plantuml | 971e05dd8977e5600dba31fd870f09413ced3622 | [] | no_license | cdol/cardgame | 99eeac51890dd706e189d97487788aac435837fb | 842fb38d27519dc0d84c073c0cd4fa7f71f0474f | refs/heads/master | 2022-12-16T15:49:00.897123 | 2020-08-09T15:34:15 | 2020-08-09T15:34:15 | 286,073,792 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,173 | plantuml | ' -private #protected ~package +public
' <|-- Extension *-- Composition o-- Aggregation
@startuml CardGame
skinparam style strictuml
skinparam ClassAttributeIconSize 0
skinparam DefaultFontName Arial
skinparam DefaultFontSize 16
skinparam DefaultFontStyle bold
skinparam ArrowThickness 2
skinparam ArrowColor #gray
hide empty members
class GameManager
{
-deck : Deck
-players : List<Player>
}
GameManager "1" *-- "2" Player : is played by >
GameManager "1" *-- "1" Deck : has >
GameManager "5" *-- "1" Player : deals cards >
GameManager "1" *-- "1" ColorScore : implements >
abstract class Ruleset
{
-decksize : static final int
-handsize : static final int
-minplayers : static final int
-maxplayers : static final int
+int[] score(Player)
}
class ColorScore
{
-decksize: 52
-handsize: 5
-minplayers: 2
-maxplayers: 10
+int[] score(Player)
}
ColorScore "1" --* "1" Ruleset : is >
class Deck
{
-cards : final List<Card>
}
Deck "1" *-- "52" Card : contains >
class Card
{
-suit : final char
-value : final int
}
class Player
{
-name : final string
-hand : List<Card>
}
@enduml | false | true | false | false | class |
8efd3566fc162c79890d87df7545613ae51ae885 | e78eefe45db0e2e25f2ca526f02ed1ac323c7fc2 | /.puml/volume/volume-create.puml | 1f2dbb1306407781120701d6882f84f0cef3991f | [
"Apache-2.0"
] | permissive | AVENTER-UG/rexray | a6b70d69ce41d0e94d7a1ba24643104a66ac7b8a | 85c0ae9a440ce7e4d229657ab9410911c925bb5f | refs/heads/master | 2023-07-17T01:46:33.325894 | 2021-08-31T14:41:22 | 2021-08-31T14:41:22 | 400,114,762 | 3 | 1 | Apache-2.0 | 2021-08-31T14:41:23 | 2021-08-26T09:35:10 | Go | UTF-8 | PlantUML | false | false | 2,978 | puml | @startuml
autonumber
"Docker CLI" -> "Docker API": Create container request --scaleio01
|||
"Docker API" -> "scaleio01.sock": Create volume request
|||
"scaleio01.sock" -> "libStorage Client": Create volume request --scaleio01
|||
"libStorage Client" -> "libStorage API": List services request
"libStorage Client" <-- "libStorage API": List services response
|||
"libStorage Client" -> "libStorage API": Get executor info request
"libStorage Client" <-- "libStorage API": Get executor info response
|||
"libStorage Client" -> "libStorage API": Download executor binary request
"libStorage Client" <-- "libStorage API": Download executor binary response
|||
"libStorage Client" -> "lsx-linux": Get instance ID request
note left
10. **Get instance ID request**
The instance ID is generated by the
libStorage executor on the local system --
that is the same system on which the
libStorage client process is executing
end note
"libStorage Client" <-- "lsx-linux": Get instance ID response
|||
"libStorage Client" -> "libStorage API": Inspect instance request
note right
12. **Inspect instance request**
The Instance ID is sent
via the HTTP header
"Libstorage-Instanceid"
end note
"libStorage Client" <-- "libStorage API": Inspect instance response
note right
13. **Inspect instance response**
The inspected instance
is written to the body
of the HTTP response
end note
|||
"libStorage Client" -> "libStorage API": Create volume request
note right
14. **Create volume request**
All future requests from the
libStorage Client to the libStorage
API will include the inspected
instance information in the header
"Libstorage-Instanceid"
end note
"libStorage Client" <-- "libStorage API": Create volume response
|||
"libStorage Client" -> "libStorage API": Attach volume request
"libStorage Client" <-- "libStorage API": Attach volume response
|||
"libStorage Client" -> "libStorage Client": Mount volume request
"libStorage Client" <-- "libStorage Client": Mount volume response
|||
"libStorage Client" -> "lsx-linux": Wait for volume request
"libStorage Client" <-- "lsx-linux": Wait for volume response
|||
"libStorage Client" -> "libStorage Client": Format volume request
"libStorage Client" <-- "libStorage Client": Format volume response
|||
"scaleio01.sock" <-- "libStorage Client": Create volume response --scaleio01
|||
"Docker API" <-- "scaleio01.sock": Create volume request
|||
"Docker CLI" <-- "Docker API": Create container request --scaleio01
box "node0 - Command Line" #LightBlue
participant "Docker CLI"
end box
box "node0 - Docker Service" #LightBlue
participant "Docker API"
end box
box "node0 - REX-Ray Service" #LightBlue
participant "scaleio01.sock"
participant "libStorage Client"
end box
box "node0 - libStorage Executor" #LightBlue
participant "lsx-linux"
end box
box "node1 - REX-Ray Service" #LightGreen
participant "libStorage API"
end box
@enduml
| false | true | false | false | sequence |
8bf5a4f7453ec18245ca6c585e7bbbe3a91b67f4 | ce412e7f609e2cebcc70d8205ad2bf1eee689127 | /app/src/main/java/e/group/login/login.plantuml | fb62ab67855d77c82cf9c72eafdcaf112453be53 | [] | no_license | SimonasBanys/Bike-share-F29SE-Mobile | bbf1022a1886f10693b59b031f570c9770a812d0 | 1478be4e10d8bdd94e54534a907f027e2e1c9be3 | refs/heads/master | 2021-10-24T21:03:29.282326 | 2019-03-28T22:10:42 | 2019-03-28T22:10:42 | 154,810,829 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,574 | plantuml | @startuml
title __LOGIN's Class Diagram__\n
package e.group.login {
class LoginActivity {
{static} - KEY_STATUS : String
{static} - KEY_MESSAGE : String
{static} - KEY_FIRST_NAME : String
{static} - KEY_LAST_NAME : String
{static} - KEY_USERNAME : String
{static} - KEY_PASSWORD : String
{static} - KEY_EMPTY : String
- etUsername : EditText
- etPassword : EditText
- username : String
- password : String
- pDialog : ProgressDialog
- login_url : String
# onCreate()
- loadDashboard()
- displayLoader()
- login()
- validateInputs()
}
}
package e.group.login {
class MapsActivity {
- mMap : GoogleMap
# onCreate()
+ onMapReady()
+ onMyLocationClick()
+ onMyLocationButtonClick()
}
}
package e.group.login {
class RegisterActivity {
{static} - KEY_STATUS : String
{static} - KEY_MESSAGE : String
{static} - KEY_FIRST_NAME : String
{static} - KEY_LAST_NAME : String
{static} - KEY_USERNAME : String
{static} - KEY_PASSWORD : String
{static} - KEY_EMAIL : String
{static} - KEY_DOB : String
{static} - KEY_EMPTY : String
- etUsername : EditText
- etPassword : EditText
- etConfirmPassword : EditText
- etFirstName : EditText
- etLastName : EditText
- etDoB : EditText
- etEmail : EditText
- username : String
- password : String
- confirmPassword : String
- firstName : String
- lastName : String
- DoB : String
- email : String
- pDialog : ProgressDialog
- register_url : String
# onCreate()
- displayLoader()
- loadDashboard()
- registerUser()
- validateInputs()
}
}
package e.group.login {
class SessionHandler {
{static} - PREF_NAME : String
{static} - KEY_USERNAME : String
{static} - KEY_EXPIRES : String
{static} - KEY_FIRST_NAME : String
{static} - KEY_LAST_NAME : String
{static} - KEY_EMPTY : String
- mContext : Context
- mEditor : Editor
- mPreferences : SharedPreferences
+ SessionHandler()
+ loginUser()
+ isLoggedIn()
+ getUserDetails()
+ logoutUser()
}
}
package e.group.login {
class User {
~ username : String
~ firstName : String
~ lastName : String
~ email : String
~ DoB : Date
+ setUsername()
+ setEmail()
+ setFirstName()
+ setLastName()
+ setDoB()
+ getUsername()
+ getFirstName()
+ getLastName()
+ getDoB()
+ getEmail()
}
}
LoginActivity -up-|> AppCompatActivity
LoginActivity o-- SessionHandler : session
HostCallbacks -up-|> FragmentHostCallback
MapsActivity -up-|> OnMapReadyCallback
MapsActivity -up-|> OnMyLocationButtonClickListener
MapsActivity -up-|> OnMyLocationClickListener
MapsActivity -up-|> FragmentActivity
HostCallbacks -up-|> FragmentHostCallback
RegisterActivity -up-|> AppCompatActivity
RegisterActivity o-- SessionHandler : session
HostCallbacks -up-|> FragmentHostCallback
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 |
1dbd289f97c4f09f8cdf14b82014234379328a25 | f7cbd1bbf9534a5bf2529f4a704adcec6b3aafa2 | /diagrams/Fluid.puml | 6fc915cdcd92fcdedd9be53a9f71b509c355d85f | [] | no_license | AY2122S1-CS2113T-F14-3/tp | cbe08bd0acafd839c68eb062c73f1425f5ed7b36 | 4dfe1a9649049d037aba9fe67908a82564f983ab | refs/heads/master | 2023-08-27T11:53:12.522530 | 2021-11-12T11:57:49 | 2021-11-12T11:57:49 | 412,351,373 | 0 | 6 | null | 2021-11-12T11:57:50 | 2021-10-01T06:15:19 | Java | UTF-8 | PlantUML | false | false | 678 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam classAttributeIconSize 0
hide circle
abstract class Tracker {
}
class Fluid {
#fluidArray: ArrayList<String>
#fluidNumber: int
#description: String
#calories: int
#volume: int
#date: String
#time: String
#totalCalories: int
#totalVolume: int
+generateFluidParameters(inputArguments: String): void
+addFluid(inputArguments: String): void
+deleteFluid(inputArguments: String): void
+listFluid(date: String): void
+getCalories(date: String): int
+getVolume(date: String): int
}
class FluidExceptions {
}
FluidExceptions --|> Fluid
Fluid --|> "<<extends>>" Tracker
@enduml | false | true | false | false | class |
15fc1afd9f69ba896a8fb156029fde63bb71a096 | 650a3622be0cb60f8e1a7a256a4c11541aebfb6d | /docs/puml/yacg_config_schema.puml | 9dd9c4f140b9de9c9490cfebd9956fec130715eb | [
"MIT"
] | permissive | OkieOth/yacg | 2b2524cb3d4915e4afe379d0781a2bb299dfde80 | 43b5034af1b28f29276bae69291d17b970f93dca | refs/heads/master | 2023-08-07T02:33:52.225606 | 2023-07-31T19:57:42 | 2023-07-31T19:57:42 | 236,339,419 | 51 | 8 | MIT | 2023-07-31T19:57:43 | 2020-01-26T16:24:08 | Python | UTF-8 | PlantUML | false | false | 2,747 | puml |
@startuml
hide empty methods
hide empty fields
class "**Job**" as Job {
StringType name
StringType description
Model[] models
Task[] tasks
}
note top: base object that describes a\ncomplete code generation process
class "**Model**" as Model {
StringType schema
StringType domain
BlackWhiteListEntry[] blackListed
BlackWhiteListEntry[] whiteListed
}
note top: A model that should be\nused
class "**Task**" as Task {
StringType name
StringType description
BlackWhiteListEntry[] blackListed
BlackWhiteListEntry[] whiteListed
SingleFileTask singleFileTask
MultiFileTask multiFileTask
}
note top: A task to run
class "**BlackWhiteListEntry**" as BlackWhiteListEntry {
StringType name
BlackWhiteListEntryTypeEnum type
}
note top: entry of a type back/white\nlist
enum "BlackWhiteListEntryTypeEnum" as BlackWhiteListEntryTypeEnum {
TYPE
TAG
CONTAINEDATTRIB
NOTCONTAINEDATTRIB
DOMAIN
TYPETYPE
}
class "**SingleFileTask**" as SingleFileTask {
StringType template
StringType destFile
TemplateParam[] templateParams
}
note top: parameter of a code generation\ntask that creates one file
class "**TemplateParam**" as TemplateParam {
StringType name
StringType value
StringType[] requiredDomains
StringType[] requiredTags
StringType[] requiredNames
}
note top: additional, template specific custom parameter\nfor codegen task
class "**MultiFileTask**" as MultiFileTask {
StringType template
StringType destDir
StringType destFilePrefix
StringType destFilePostfix
StringType destFileExt
BooleanType upperCaseStartedDestFileName
MultiFileTaskFileFilterTypeEnum fileFilterType
TemplateParam[] templateParams
BooleanType createOnlyIfNotExist
BooleanType createTmpFileIfAlreadyExist
}
note top: parameter of a code generation\ntask that creates one file\nper model type
enum "MultiFileTaskFileFilterTypeEnum" as MultiFileTaskFileFilterTypeEnum {
TYPE
OPENAPIOPERATIONID
}
Job "0" *-- "n" Model
Job "0" *-- "n" Task
Model "0" *-- "n" BlackWhiteListEntry
Model "0" *-- "n" BlackWhiteListEntry
Task "0" *-- "n" BlackWhiteListEntry
Task "0" *-- "n" BlackWhiteListEntry
Task *-- SingleFileTask
Task *-- MultiFileTask
SingleFileTask "0" *-- "n" TemplateParam
MultiFileTask "0" *-- "n" TemplateParam
footer \ngenerated with yacg (https://github.com/OkieOth/yacg),\n(template: plantUml.mako v1.1.0)\npowered by plantuml (https://plantuml.com/)
@enduml | false | true | false | false | class |
128805b7493012ca44dfa17348879e3c83dcca83 | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/logic/vote.puml | 656d0d9715a17125f8312ac385156593d0ab3a0f | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 738 | puml | @startuml
class Vote < logic > {
- self: this
- library
- modules
.. library ..
- logger
- schema
.. modules ..
- delegates
- rounds
.. prototype ..
+ schema: Vote
+ dbTable: votes
+ dbFields
--
+ Vote (logger, schema)
+ bind(delegates, rounds)
+ create(data, trs)
+ calculateFee(trs, sender)
+ verify(trs, sender, cb)
+ verifyVote(vote, cb)
+ checkConfirmedDelegates(trs, cb)
+ checkUnconfirmedDelegates(trs, cb)
+ process(trs, sender, cb)
+ getBytes(trs)
+ apply(trs, block, sender, cb)
+ undo(trs, block, sender, cb)
+ applyUnconfirmed(trs, sender, cb)
+ undoUnconfirmed(trs, sender, cb)
+ objectNormalize(trs)
+ dbRead(raw)
+ dbSave(trs)
+ ready(trs, sender)
}
@endtuml
| false | true | false | false | class |
1c418b43be2ad5c79cdac618d10fe006fe3e3efc | c56b2b0f69236c4208c31069c634165ec45816df | /design/puml/deployment.puml | 13ac30155ba3508a95b84a7ad6359b502ad4d495 | [
"Apache-2.0"
] | permissive | imazzine/cli | 7dc759f43e3894cd91d2167240c8d685de1ac590 | 2e199bbf54dc4ae53f89d212029bcb5ea9c71dce | refs/heads/master | 2023-01-11T07:24:01.915086 | 2021-02-26T08:49:43 | 2021-02-26T08:49:43 | 206,752,798 | 0 | 0 | Apache-2.0 | 2023-01-07T05:34:46 | 2019-09-06T08:47:56 | JavaScript | UTF-8 | PlantUML | false | false | 2,791 | puml | @startuml nodes_graph
title Nodes Graph
cloud "Internet" as Internet {
database "github.com" as VCServer
database "npmjs.com" as PackageServer
node "travis-ci.com" as CICDServer
actor "Producer" as Producer
actor "Consumer" as Consumer
interface "Ethernet" as Ethernet
VCServer -( Ethernet
CICDServer --( Ethernet
Ethernet )- PackageServer
Ethernet )-- Producer
Ethernet )-- Consumer
}
@enduml
@startuml services_graph
title Deployment Base Services Graph
node "github.com" as github {
database "Git Repository" as GitRepo [[https://github.com/imazzine/cli/tree/0.0.0]]
node "Git Server" as GitServer
GitRepo <- GitServer: store
}
interface "Webhooks" as Webhooks [[https://developer.github.com/webhooks/]]
interface "Rest API" as GitRestApi [[https://developer.github.com/v3/]]
GitServer -- Webhooks
GitServer -- GitRestApi
node "npmjs.com" as npmjs {
node "Npm Server" as NpmService
database "Npm Package" as NpmPackage [[https://www.npmjs.com/package/@imazzine/cli/v/0.0.0]]
NpmService -> NpmPackage: store
}
interface "Npm Interface" as NpmInterface [[https://docs.npmjs.com/]]
NpmService -- NpmInterface
node "travis-ci.com" as CiCdServer {
node "CI/CD Service" as CiCdService [[https://travis-ci.com/imazzine/cli]]
}
interface "Travis API" as CiCdInterface [[https://docs.travis-ci.com/user/languages/javascript-with-nodejs/]]
CiCdService -- CiCdInterface
Webhooks )-- CiCdService
GitRestApi )- CiCdService
CiCdService --( NpmInterface
node "Producer" as Producer {
node "GIT Client" as GitClient [[https://git-scm.com/downloads]]
interface "GIT CLI" as GitCli [[https://git-scm.com/book/en/v2/Getting-Started-The-Command-Line]]
GitClient -- GitCli
file "Source files" as Sources [[https://github.com/imazzine/cli/tree/0.0.0]]
file ".travis.yml" as CiCdConf [[https://github.com/imazzine/cli/blob/0.0.0/.travis.yml]]
file "package.json" as NpmConfig [[https://github.com/imazzine/cli/blob/0.0.0/package.json]]
GitRepo "0..*" o-- Sources
Sources *-- CiCdConf
Sources *-- NpmConfig
GitRestApi )-- GitClient
CiCdInterface )-- CiCdConf
NpmInterface )-- NpmConfig
}
node "Consumer" as Consumer {
node "NPM Client" as NpmClient [[https://www.npmjs.com/get-npm]]
interface "NPM CLI" as BIN [[https://docs.npmjs.com/cli-documentation/]]
NpmInterface )-- NpmClient
NpmClient -- BIN
file "Binaries" as Binaries
NpmPackage "0..*" o-- Binaries
NpmClient -> Binaries: install
}
@enduml | false | true | false | false | usecase |
5e0a1233830b14b1b225f20c1b6e970fd2091cdc | 55f01cb8735b333f17258180249dd6cc0784e7c2 | /design/resource_management_architecture.puml | 3e827da43722487490f523bf69b6bda67cd744f6 | [
"MIT"
] | permissive | icebreakersentertainment/ice_engine | 998b507ca9c01ac6d18b7f3e6071fd7469058dda | 52a8313bc266c053366bdf554b5dc27a54ddcb25 | refs/heads/master | 2022-11-01T15:30:42.471040 | 2021-01-28T20:36:52 | 2021-01-28T20:36:52 | 114,183,848 | 0 | 2 | MIT | 2022-10-08T17:29:17 | 2017-12-14T00:43:44 | C++ | UTF-8 | PlantUML | false | false | 2,929 | puml | @startuml
'class Image
'class Audio
'class Model
interface "IResourceLoader<T>" as IResourceLoader_t
{
+ std::unique_ptr<T> load(const std::string& name, const std::string& filename)
+ bool supported(const std::string& filename) const
}
interface "IResourceImporter<T>" as IResourceImporter_t
{
+ std::unique_ptr<T> import(const std::string& name, const std::string& filename)
+ bool supported(const std::string& filename) const
}
interface "IResourceLoader<Model>" as IResourceLoader_Image extends IResourceLoader_t
interface "IResourceLoader<Audio>" as IResourceLoader_Audio extends IResourceLoader_t
interface "IResourceLoader<Model>" as IResourceLoader_Model extends IResourceLoader_t
interface "IResourceImporter<Image>" as IResourceImporter_Image extends IResourceImporter_t
interface "IResourceImporter<Audio>" as IResourceImporter_Audio extends IResourceImporter_t
interface "IResourceImporter<Model>" as IResourceImporter_Model extends IResourceImporter_t
class "ResourceManager<T>" as ResourceManager_t
{
- std::unique_ptr<IResourceLoader<T>> loader_
' - IResourceImporter<T>* importer_
- std::unordered_map<std::string, std::unique_ptr<IResourceImporter<T>>> importers_
- std::unordered_map<std::string, std::unique_ptr<T>> map_
- mutable std::recursive_mutex mutex_
+ T* import(const std::string& name, const std::string& filename, const std::string& importer = "")
+ T* load(const std::string& name, const std::string& filename)
+ void destroy(const std::string& name)
+ void destroy(const T* resource)
+ void destroyAll()
+ bool exists(const std::string& name) const
+ T* get(const std::string& name) const
}
class "ResourceManager<Image>" as ResourceManager_Image extends ResourceManager_t
class "ResourceManager<Audio>" as ResourceManager_Audio extends ResourceManager_t
class "ResourceManager<Model>" as ResourceManager_Model extends ResourceManager_t
'class "EngineResourceCache<T>" as EngineResourceCache_t
'{
' - std::unordered_map<std::string, T> map_
' - std::mutex mutex_
'
' + void add(const std::string& name, const T& resource)
' + void remove(const std::string& name)
' + void removeAll()
' + bool exists(const std::string& name) const
' + const T& get(const std::string& name) const
' + const std::unordered_map<std::string, T>& map() const
'}
'class MeshHandle
class "EngineResourceManager<T>" as EngineResourceManager_t
{
- std::unordered_map<std::string, T> map_
- mutable std::recursive_mutex mutex_
+ const T& create(const std::string& name, const Args& ...)
+ void destroy(const std::string& name)
+ void destroy(const T& resource)
+ void destroyAll()
+ bool exists(const std::string& name) const
+ const T& get(const std::string& name) const
}
class "EngineResourceManager<MeshHandle>" as EngineResourceManager_MeshHandle extends EngineResourceManager_t
@enduml | false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.