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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9f56c783c912663c99a82bba35e2bfff896fca7f | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/annotations/annotations.plantuml | cd6ba02062da436ac1747e845005c8e02fcb9355 | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 425 | plantuml | @startuml
title __ANNOTATIONS's Class Diagram__\n
namespace com.vrush.microservices.financial {
namespace annotations {
interface com.vrush.microservices.financial.annotations.TrackMethod {
}
}
}
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 |
efe3adbf459d773aa4d49ad042733bb1cc996d67 | 4f3a2bdb7e3646cf00163b1706d807570b087c22 | /DDESequenceDiagram.puml | 45b8d83bf0a63f50386a6548dcb38332077d1181 | [] | no_license | fshamakhov/PlantUMLHitchhikersGuide | 5d7fe28f93e8d514e2407ab5a50b32d2048809ca | 7bd9f8cd6bd0061bee4449156b13b6eff91ee95e | refs/heads/main | 2023-01-29T08:43:24.827343 | 2020-12-11T08:36:48 | 2020-12-11T08:36:48 | 320,260,790 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 793 | puml | @startuml DDESequenceDiagram
autonumber
box "UnTrustedDomain" #Red
database UnTrustedKeyStore as UKS
control UnTrustedKeyManager as UKM
boundary KeyLoader as KL
end box
box "TrustedDomain" #Green
database PersistentStorage as KS
control KeyManager as KM
end box
group In the Beginning...
group RootKBPK
note over KM: A Unique random key is born
KS --> KS: Root KBPK exists
end
group Storage in UnTrustedDomain
KM --> KM: Create Class N KPBK
KS --> KM: RootKBPK
note over KM: Shorthand for create a KeyBlock with ClassKBPK N as key payload, and RootKBPK as KBPK
UKM --> UKS: KeyBlock[ClassKBPK N]RootKBPK
note over UKS: Process is repeated for ClassKBPK 1,2,3...N
end
end
@enduml | false | true | false | false | sequence |
92b52087f8235dee38449a715105b9fa1528e3f3 | c4437e6472f49d49e6bea760d9a95d51cdc3f66b | /uml/QuestionClass.puml | c581934b4aad9eb8c59a6633f967aff67a0b56c2 | [] | no_license | Skybluewater/QuestGeneratorWebsite | b741b49c7248402f3e2187230a04c66e9f1cb774 | 5c7f14dcf690647e6bd08546c5a85e19ca959d39 | refs/heads/master | 2021-08-06T20:24:46.761026 | 2020-12-11T09:12:33 | 2020-12-11T09:12:33 | 228,553,999 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,713 | puml | @startuml Question-class
package django.forms {
class Form
}
package django.db.models {
class Model
}
package forms {
class DSForm
class Form5
class Form10
class Form20
}
DSForm --|> Form
Form5 --|> Form
Form10 --|> Form
Form20 --|> Form
package models {
class Question
class User
class Answer
class WrongAnswer
class History
User --|> Model
Question -|> Model
Answer --|> Model
WrongAnswer --|> Model
History --|> Model
}
class User{
gender:choice
name:models.CharField
password:models.CharField
email:models.EmailField
c_time:models.DateField
+__str__():models.CharField
}
class Question{
question
answer_float
answer_fraction
question_if_pow
question_if_negative
question_operators_num
c_time
}
Answer "n"---"1" Question
Answer "n"---"1" User
WrongAnswer "n"---"1" Question
WrongAnswer "n"---"1" User
History "n"--"1" User
class History{
user:User
start_time:models.DateTimeField
end_time:models.DateTimeField
score:models.IntegerField
quantity:models.IntegerField
if_fra:models.BooleanField
+__set_end_time__()
}
class Answer{
question:Question
answer_id:History
}
class WrongAnswer{
question:Question
answer_id:History
answer_if_answered_again:BooleanField
type:BooleanField
}
class DSForm{
quantity
optr
operators
if_pow
if_neg
if_fra
pow_type
}
class Form5{
Kt1:forms.CharField
...
Kt5:forms.CharField
}
class Form10{
Kt1:forms.CharField
...
Kt10:forms.CharField
}
class Form20{
Kt1:forms.CharField
...
Kt20:forms.CharField
}
@enduml | false | true | false | false | class |
328e570ef86b2c2d9991c10ca5199128481217c6 | 5fbe17876b4703780a1a494a0f05f9e77d62b1a7 | /site/static/diagrams/high-density.puml | 1bdf64842c541b2e0c6606cf750df7fd5a5c841c | [
"Apache-2.0"
] | permissive | googleforgames/agones | 07c9cf659c760114031591e736ee33c10a449a78 | 4d116d7d43b9cd474b1ad98bae2d308341b9ccde | refs/heads/main | 2023-09-04T00:26:00.214269 | 2023-08-26T01:42:50 | 2023-08-26T01:42:50 | 113,473,682 | 3,524 | 727 | Apache-2.0 | 2023-09-14T18:51:19 | 2017-12-07T16:25:22 | Go | UTF-8 | PlantUML | false | false | 4,326 | puml | @startuml
participant Matchmaker
participant Agones
participant "Game Server\nProcess" as Binary
participant SDK
participant "GameServer\nResource" as GameServer
box "Game Server Pod"
participant Binary
participant SDK
end box
== GameServer Start ==
Agones -> GameServer: GameServer created through\na <i>Fleet</i> configuration
activate GameServer
GameServer -> Binary: Agones creates a Pod with the\nconfigured Game Server Container
activate Binary
activate SDK
Binary -> SDK: SDK.WatchGameServer()
note right
Use the SDK Watch function
to watch and react to allocation
events
end note
Binary -> SDK: SDK.Ready()
note right
Call <i>Ready()</i> when the
Game Server can take player
connections and is able to
be allocated.
end note
GameServer <-- SDK: Update to <i>Ready</i> State
== No allocated <i>GameServers</i> ==
Matchmaker -> Agones: Create: <i>GameServerAllocation</i>
note left
The <i>GameServerAllocation</i> is implemented to
optionally select an already allocated <i>GameServer</i>
with <i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "true"</i>
if one exists. At this stage, one does not, so
Agones will allocate a <i>Ready</i> <i>GameServer</i>.
end note
Agones -> GameServer: Finds a <i>Ready</i> <i>GameServer</i>.\n\nSets <i>status.state</i> to <i>Allocated</i> State\nand <i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "false"</i>\nand <i>metadata.annotations["agones.dev/last-allocated"] = current timestamp</i>
note left
By setting the label "agones.dev/sdk-gs-session-ready" to "false"
this remove the `GameServer` from possibly being
re-allocated until it knows it can handle another session.
end note
Matchmaker <-- Agones : <i>GameServerAllocation</i> is returned\nwith <i>GameServer</i> details\nincluding IP and port to connect to.
SDK --> Binary: Sends SDK.WatchGameServer()\nevent for Allocation.
note right
This initial allocation can be determined
as a change in <i>GameServer.status.state</i>
from <i>Ready</i> to <i>Allocated</i>
end note
Binary -> SDK: SDK.SetLabel("gs-session-ready", "true")
note right
Since this game process can handle <i>n</i>
concurrent sessions, set this label to match
optional allocation label selectors, so it can be
re-allocated.
(See example below for more details)
end note
SDK --> GameServer: Sets <i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "true"</i>
== Allocated <i>GameServers</i> with room for more sessions ==
Matchmaker -> Agones: Create: <i>GameServerAllocation</i>
note left
The <i>GameServerAllocation</i> will this time
find the Allocated <i>GameServer</i> with the label
<i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "true"</i>,
indicating that it can accept more
concurrent game sessions.
end note
Agones -> GameServer: Finds the Allocated <i>GameServer</i> with\n<i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "true"</i>.\n\nSets <i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "false"</i>\nand <i>metadata.annotations["agones.dev/last-allocated"] = current timestamp</i>.
note right
This is the a <i>GameServer</i> that has room
for another concurrent game session.
end note
Matchmaker <-- Agones: returns <i>Allocated GameServer</i> record
SDK --> Binary: Sends SDK.WatchGameServer()\nevent for Allocation.
note right
The game server process can watch for a change
in <i>metadata.annotations["agones.dev/last-allocated"]</i>
to determine there is an allocation event.
end note
alt <i>GameServer</i> can accept more concurrent sessions
Binary -> SDK: SDK.SetLabel("gs-session-ready", "true")
SDK --> GameServer: Sets <i>metadata.labels["agones.dev/sdk-gs-session-ready"] = "true"</i>.
end alt
note right
If the <i>GameServer</i> can accept more
concurrent sessions, reset the label
<i>"agones.dev/sdk-gs-session-ready"</i>
back to "true"
end note
== <i>GameServer</i> has completed <i>n</i> number of complete sessions ==
Binary -> SDK: SDK.Shutdown()
note left
The <i>GameServer</i> process tracks the number of sessions
that it hosts, and after <i>n</i> number, calls <i>Shutdown()</i>
to delete the <i>GameServer</i> resource and backing Pod.
end note
SDK --> GameServer: Update to <i>Shutdown</i> state.
Agones -> GameServer: Deletes GameServer resource and backing Pod.
destroy Binary
destroy SDK
destroy GameServer
@enduml
| false | true | false | false | sequence |
dfa4ec6a297d42b49a1bb0549e7f3d494de32cbf | 7c5d4cd214941e0ffb21a5ee53673702034d4811 | /src/main/java/ex44/ProductSearch.puml | 60b573acfde43605078eab1c7e45af90fb3995cc | [] | no_license | kingraham228/Ingraham-cop3330-assignment3 | b00bd18d9cf17ae4b3fa96fdb3470bb4b8c4faaa | 32e7eee3369de21d8843e66a60c66696b9fe42e9 | refs/heads/master | 2023-06-05T12:16:04.009246 | 2021-06-19T03:39:02 | 2021-06-19T03:39:02 | 377,287,406 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 379 | puml | @startuml
class App{
+print()
}
class Input{
+getProductName()
}
class Products{
-products: ArrayList
}
class Items{
#name: String
#price: String
#quantity: String
}
class JSONRecord{
-itemList: ArrayList
-promptAgain: boolean
+importJson()
+getItemList()
+searchList()
+isPromptAgain()
}
App o-- Input
App o-- JSONRecord
JSONRecord *-- Products
Products *-- Items
@enduml | false | true | false | false | class |
aed1903634cf6230dc5d1195f1416abd1aad747c | 615aa15c4eeebf0eff78c7f02e65ad7c7814babb | /docs/AppService/GetActiveServiceConsent/assets/GetActiveServiceConsent_Allow.puml | 927603edd751c5acaf75f5fc0272c7655bcb17fc | [] | permissive | smartdevicelink/sdl_hmi_integration_guidelines | 4c1413d80b3a07a0293a1a62ba02ce413820bfab | a89289d22a3fe75db6e5b45d39d158e5b282021f | refs/heads/master | 2022-10-31T16:50:47.768891 | 2022-10-26T15:27:10 | 2022-10-26T15:27:10 | 55,093,865 | 12 | 34 | BSD-3-Clause | 2022-10-25T21:08:55 | 2016-03-30T20:02:23 | null | UTF-8 | PlantUML | false | false | 768 | puml | @startuml
skinparam ParticipantPadding 36
skinparam defaultFontSize 10
participant MobileConsumer
participant ServiceProvider
participant Core
participant HMI
MobileConsumer -> Core : PerformAppServiceInteraction\n(requestServiceActive:true)
Core -> Core : Increase RPC Timeout
opt Consumer is not in foreground
Core -> HMI : AS.GetActiveServiceConsent\n("providerID")
HMI -> HMI : Prompt user to \nactivate service
HMI --> Core : AS.GetActiveServiceConsent\n(true)
end
Core -> Core : ActivateAppService("providerID")
Core -> ServiceProvider : PerformAppServiceInteraction()
ServiceProvider --> Core : PerformAppServiceInteraction\n(serviceSpecificResult:"result", SUCCESS)
Core --> MobileConsumer : PerformAppServiceInteraction\n("result", SUCCESS)
@enduml
| false | true | false | false | sequence |
0e6a232cf99e6aba6f1cfd804340e06f8c50d72d | bfe333973362802da041e14a279e527456c6657b | /units/src/unit_02/excercise_a/assets/classes-after-refaktoring.puml | 651f8f284b508fd8da9d3df8e10a3cddc96fc8db | [] | no_license | raveshs/java-tutorial | a035d270c95470ebbce2201735d8d21623ff54e4 | e79c32b092bc0d162125149205fda2ebaaebbb24 | refs/heads/master | 2020-08-04T07:48:27.775409 | 2019-09-30T19:25:19 | 2019-09-30T19:25:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 705 | puml | @startuml
abstract class Blume
Blume <|-- Rose
Blume <|-- Tulpe
Blume <|-- Nelke
class Blume {
// Blumensorte, explizit als Typ
protected enum Sorte
// Farbe, explizit als Typ
protected enum Farbe
// Instanzfelder
Sorte sorte
Farbe farbe
public String toString()
public void farbe()
public void identifizieren()
}
enum Sorte {
ROSE
TULPE
NELKE
public String toString()
}
enum Farbe {
ROT
GELB
BLAU
public String toString()
}
class Rose {
public void identifizieren()
public void wurzeln()
}
class Tulpe {
public void identifizieren()
public void zwiebeln()
}
class Nelke {
public void identifizieren()
public void stauden()
}
center footer excercise_a von unit_02 nach dem Refaktoring
@enduml | false | true | false | false | class |
70f1002d7432da92683a1b09242a78ce7db92159 | 636d88cc43ec1ba57c3699ed58d0cec51a1a3084 | /Term Project/Observer/Observer_Class_diagram.puml | d220536616886a6a7c55525426845d1c3f5592aa | [] | no_license | ahmedAlraimi/Tasarim | 088944d13cbdaeea4e0537f7035b1e7ad618c91c | c5a1ee24b3c57561cca80fd7a6e81359bde5b040 | refs/heads/master | 2020-04-26T15:33:28.741752 | 2019-07-10T13:09:39 | 2019-07-10T13:09:39 | 173,650,584 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 629 | puml | @startuml
skinparam classAttributeIconSize 0
interface SplSubject{
{method} + attach(observer)
{method} + detach(observer)
{method} + notify()
}
interface SplObserver{
{method} + update(subject)
}
class Event {
{field} - event_manager : String
{field} - observers : observer
{method} + attach(observer)
{method} + detach(observer)
{method} + changeEventManager(string)
{method} + notify()
}
class EventObserver {
{field} - changedEvents[]
{method} + update(subject)
{method} + getChangedEvents()
}
SplSubject <.. Event
SplObserver <- Event : uses
SplObserver <-- EventObserver : implements
@enduml | false | true | false | false | class |
806f4f3f386a62175e73775132b8792f2422deeb | 87014099f1f663b61e66f377f1a925d5b11ec8c4 | /uml-modelling/examples/process_diagram/example_process_diagram_data.puml | 22542611124a92f5bb33eb670e1b28a312bc1dd4 | [] | no_license | jdzool/data-dojos | 4097a7b4a614b6d7b37503059ca57bc97dbba044 | 40c74e0b103f2d34731d5037558b3772228cda76 | refs/heads/master | 2021-03-15T12:26:07.974168 | 2020-04-23T07:29:55 | 2020-04-23T07:29:55 | 246,850,389 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 812 | puml | @startuml
skinparam monochrome true
(*) --> "Data File Loaded"
if "Did column level data type assertion pass?" then
-down->[yes] "Create Ingestion Hive Table 1"
-down-> ===B1===
else
-right->[no] "Add errors to data types report"
end if
===B1=== -down-> if "Did basic business rules pass" then
-down->[yes] "Add Ingestion Hive Table 2"
-down-> ===B2===
else
-right->[no] "Add errors to basic business rules report"
end if
===B2=== -down-> if "Did conditional validation rules pass" then
-down->[yes] "Add Ingestion Hive Table 3"
-down-> "Data ready for analysis"
else
-right->[no] "Add errors to conditional validation rules report"
end if
@enduml | false | true | false | false | activity |
15e7777c8d4196bbefd5c04363d1c6cba2c60d5d | 23e8d0f4c4fbbe13714b46dd70ec35833cc3ccc6 | /src/common/models/domain.plantuml | 60c77f5f6c2ff6c3d421126e58e059f87692becd | [] | no_license | sytac/play | 0865803e35087cc26801c56258cfbf32c66ec725 | 9687396d842a0306f93c44b4188446048a38a085 | refs/heads/master | 2020-09-23T22:47:03.147557 | 2016-11-09T15:38:52 | 2016-11-09T15:38:52 | 67,133,688 | 1 | 1 | null | 2016-11-02T10:50:24 | 2016-09-01T13:30:06 | JavaScript | UTF-8 | PlantUML | false | false | 624 | plantuml | @startuml
class Option {
id: String
value: String
correct: Boolean
}
Question "1" -- "0..*" Option
class Question {
id: String
value: String
}
Quiz "1" -- "0..*" Question
class Quiz {
id: String
subject: String
}
QuizEntry "0..*" -- "1" Quiz
QuizEntry "1" -- "0..*" QuizEntryAnswer
class QuizEntry {
id: String
firstName: String
lastName: String
twitter: String
email: String
interests: [String]
startTime: Date
endTime: Date
}
QuizEntryAnswer "0..*" -- "1" Question
QuizEntryAnswer "0..*" -- "1" Option
class QuizEntryAnswer {
id: String
questionId: String
optionId: String
}
@enduml | false | true | false | false | class |
ac96cd0dd0d27b2513df071a04551737fdc1da3d | 7ab2a6fa9a2ecfa52462d10843098a98404e4a67 | /QuestMVVM/GestionDeTournoiFiles/Conception/CDL/CDL_TRNM.iuml | 64062de5b1e1b89c5bc410a0999f55e5273f254a | [] | no_license | jams4code/QuizzGameProjectJava | ab28129ebf8ae1eca90dfc8210e813b6d1b70ec9 | 32431822ea878b4198361efda322cabafd3fe463 | refs/heads/master | 2022-07-04T20:57:26.099245 | 2020-05-19T19:15:17 | 2020-05-19T19:15:17 | 261,175,850 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 536 | iuml | class Tournoi <<Entity>>{
- matchs : List<Match>
- players : List<Player>
- nom : String
- numMatchSelected : int
- notif : Notif
-selectedPlayer:Player
+ initPlayer()
+ getPlayersName():List<String>
+ selectedMatch():Match
+ select(index:int )
+ hasMatch(m:Match): boolean
+ nbMatchs():int
+ addMatch(m:Match): boolean
+ deleteMatch(m:Match): boolean
+ updateMatch(oldM:Match,newM:Match): boolean
+ notif(typeNotif:Notif )
+ getOpponent(p:Player )
+ unselect()
}
| false | true | false | false | class |
6b11046e5169c58215c09be232add503d7e67481 | bdd433c3af2f10384f0a4fb06a6354b51a70750e | /plantuml/Sequence Diagrams/Design/UC4.puml | b3258b2222c947e1b79cc25f117a4d693e3acc1f | [] | no_license | I4PRJ4/I4PRJ4-plantuml | d6188b60011e5a5f6f3cf7853393cba43996dfbf | 2b528f0a911917d5ee61a6d0051d46ea59282c5a | refs/heads/master | 2023-05-14T13:43:29.403199 | 2021-06-03T10:33:59 | 2021-06-03T10:33:59 | 348,710,373 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,605 | puml | @startuml
mainframe **sd** Use Case 4 - Godkend/Afvis tip
actor Moderator as mod
control ModeratorController as modcont
boundary NavigationBarView as navbar
boundary ModeratorViewIndex as modindex
boundary TipRepository as tipsrepo
database DatabaseContext as db
mod -> modcont: http GET Index(string, int)
Activate modcont
modcont -> tipsrepo: GetUnmoderatedTips()
Activate tipsrepo
tipsrepo -> db: LINQ Query
Activate db
db --> tipsrepo: IQueryable<Tip>
Deactivate db
tipsrepo --> modcont: List<Tip>
Deactivate tipsrepo
modcont -> modindex: UpdateView(List<Tip>)
Activate modindex
modindex --> modcont: View()
Deactivate modindex
modcont --> mod: http response
Deactivate modcont
mod --> modcont: http PUT VerifyTip(int)
Activate modcont
modcont -> tipsrepo: GetTip(int)
Activate tipsrepo
tipsrepo -> db: LINQ Query
Activate db
db --> tipsrepo: IQueryable<Tip>
Deactivate db
tipsrepo --> modcont: Tip
Deactivate tipsrepo
modcont -> modcont :Tip.isVerified = true
modcont -> tipsrepo: SaveChanges()
Activate tipsrepo
tipsrepo -> db: SaveChanges()
Activate db
db --> tipsrepo: OK
Deactivate db
tipsrepo --> modcont: OK
Deactivate tipsrepo
modcont -> tipsrepo: GetUnmoderatedTips()
Activate tipsrepo
tipsrepo -> db: LINQ Query
Activate db
db --> tipsrepo: IQueryable<Tip>
Deactivate db
tipsrepo --> modcont: List<Tip>
Deactivate tipsrepo
modcont -> modindex: UpdateView(List<Tip>)
Activate modindex
modindex --> modcont: View()
Deactivate modindex
modcont --> mod: http response
Deactivate modcont
@enduml
| false | true | false | false | usecase |
b6c5be410af701ad3558b7ec48a004acdf437449 | 1c2ffdfa1f2d5109bb4e1a2fb5e9e48c5cea8edd | /assets/CatenaBase.plantuml | ecb0c044b2ab207a0b77295e0c8cfd1e11411e32 | [
"MIT"
] | permissive | mcci-catena/Catena-Arduino-Platform | e4b940473831521d84d7f766965c49fcd1a5d247 | 2ce0ec05ac252edab2c5a60d7d0a9a894b30ad70 | refs/heads/master | 2023-08-31T18:10:49.000465 | 2023-06-26T11:01:17 | 2023-06-26T11:01:17 | 72,812,020 | 15 | 11 | MIT | 2023-09-07T12:00:23 | 2016-11-04T03:44:20 | C++ | UTF-8 | PlantUML | false | false | 7,855 | plantuml | @startuml
/'
Module: CatenaBase.plantuml
Function:
PlantUML reference source for README.md UML class diagram.
Copyright:
See accompanying LICENSE file
Author:
Terry Moore, MCCI Corporation November 2018
Notes:
PlantUML images in REAMDE.md are generated by pasting this file into
the server at http://www.plantuml.com/plantuml, and grabbing the
resulting URLs. That has to be done several times, with different
values edited into the variables below. The comments in README.md
will tell you what's needed.
'/
!$enableMembers = 0
!$enableStm32 = 1
!$enableSamd = 0
namespace McciCatena {
abstract class CatenaBase {
+struct EUI64_buffer_t;
+struct EUI64_string_t;
+struct UniqueID_buffer_t[];
+struct UniqueID_string_t[];
+enum OPERATING_FLAGS;
+enum PLATFORM_FLAGS;
+{static}uint32_t PlatformFlags_GetModNumber();
+{static}bool constexpr PlatformFlags+_IsModded();
+void SafePrintf();
+const EUI64_Buffer_t *GetSysEUI();
+{abstract}const CATENA_PLATFORM *GetPlatformForID();
+{abstract}void GetUniqueID();
+char *GetUniqueIDstring();
+const CATENA_PLATFORM *GetPlatform();
+uint32_t GetOperatingFlags();
+void SetOperatingFlags();
+uint32_t GetPlatformFlags();
+{abstract}void begin();
+{abstract}const char * CatenaName() const;
+{abstract}void Sleep();
+{abstract}cFram *getFram();
+void poll();
+void registerObject();
+addCommands();
+ProvisioningStyle GetProvisioningStyle();
+bool GetAbpProvisioningInfo();
+bool GetOtaaProvisioningInfo();
+void NetSaveSessionInfo();
+void NetSaveSessionState();
+bool NetGetSessionInfo();
+bool addLoRaWanCommands();
+{static}CatenaBase *pCatenaBase;
#{abstract}void registerCommands();
#{abstract}void getPlatformTable();
#{abstract}void getCpuIdPlatformTable();
#cSerialReady m_SerialReady;
#EUI64_buffer_t m_SysEUI;
#cPollingEngine m_PollingEnging;
#cStreamInlineCollector m_Collector;
#cCommandStream m_CommandStream;
-uint32_t m_OperatingFlags;
-const CATENA_PLATFORM *m_pPlatform;
-void savePlatform();
-void getPlatformForCpuId();
}
!if ($enableSamd == 1)
abstract class CatenaSamd21 {
+{abstract} bool begin();
+bool begin(uint32_t overrideMask);
+book begin(uint32_t uClearMask, uint32_t uSetMask);
+void GetUniqueID();
+void Sleep();
#{abstract}void registerCommands();
-CatenaRTC m_Rtc;
}
!endif
!if ($enableStm32 == 1)
abstract class CatenaStm32 {
+{abstract} bool begin();
+bool begin(uint32_t overrideMask);
+book begin(uint32_t uClearMask, uint32_t uSetMask);
+void GetUniqueID();
#{abstract}void registerCommands();
}
!endif
!if ($enableSamd == 1)
abstract class CatenaFeatherM0 {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
#{abstract}const ProvisioningInfo *GetProvisioningInfo();
#{abstract}const ProvisioningTable *GetLoRaWANkeys();
}
abstract class CatenaWingFram2k {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
+cFram *getFram();
+bool getBootCount(&bootCount);
#void registerCommands();
-cFram2k m_Fram;
-uint32_t m_BootCount;
}
!endif
!if ($enableStm32 == 1)
abstract class CatenaStm32L0 {
+bool begin();
+cFram *getFram();
+bool getBootCount(&bootCount);
+{abstract}float ReadVbat() const;
+{abstract}float ReadVbus() const;
+void Sleep();
#void registerCommands();
-cFram8k m_Fram;
-uint32_t m_BootCount;
-CatenaStm32L0Rtc m_Rtc;
}
abstract class Catena455x {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
+float ReadVbus() const;
}
abstract class Catena461x {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
+float ReadVbus() const;
}
abstract class Catena463x {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
+float ReadVbus() const;
}
abstract class Catena480x {
+enum ANALOG_PINS;
+enum DIGITAL_PINS;
+bool begin();
+float ReadVbat() const;
+float ReadVbus() const;
}
!endif
!if ($enableSamd == 1)
class Catena4410 {
+enum DIGITAL_PINS;
+const char *CatenaName() const;
#const ProvisioningTable *GetLoRaWANkeys();
#void getCpuIdPlatformTable();
-{static}const ProvisioningTable gk_LoRaWAN_Keys;
-{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[];
-{static}const size_t nvCpuIdToPlatform;
}
class Catena4420 {
+enum DIGITAL_PINS;
+const char *CatenaName() const;
#const ProvisioningTable *GetLoRaWANkeys();
#void getCpuIdPlatformTable();
-{static}const ProvisioningTable gk_LoRaWAN_Keys;
-{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[];
-{static}const size_t nvCpuIdToPlatform;
}
class Catena4450 {
+const char *CatenaName() const;
#void getPlatformTable();
#void getCpuIdPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
-{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[];
-{static}const size_t nvCpuIdToPlatform;
}
class Catena4460 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4470 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
!endif
!if ($enableStm32 == 1)
class Catena4551 {
+const char *CatenaName() const;
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4610 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4611 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4612 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4617 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4618 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4630 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4801 {
+const char *CatenaName() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
class Catena4802 {
+const char *CatenaName() const;
+float ReadVin() const;
#void getPlatformTable();
-{static}const CATENA_PLATFORM(* const vPlatforms[]);
-{static}const size_t nvPlatforms;
}
!endif
!if ($enableSamd == 1)
CatenaBase <|-- CatenaSamd21
!endif
!if ($enableStm32 == 1)
CatenaBase <|-- CatenaStm32
!endif
!if ($enableSamd == 1)
CatenaSamd21 <|-- CatenaFeatherM0
CatenaSamd21 <|-- CatenaWingFram2k
CatenaFeatherM0 <|-- Catena4410
CatenaFeatherM0 <|-- Catena4420
CatenaWingFram2k <|-- Catena4450
CatenaWingFram2k <|-- Catena4460
CatenaWingFram2k <|-- Catena4470
!endif
!if ($enableStm32 == 1)
CatenaStm32 <|-- CatenaStm32L0
CatenaStm32L0 <|-- Catena455x
CatenaStm32L0 <|-- Catena461x
CatenaStm32L0 <|-- Catena463x
CatenaStm32L0 <|-- Catena480x
Catena455x <|-- Catena4551
Catena461x <|-- Catena4610
Catena461x <|-- Catena4611
Catena461x <|-- Catena4612
Catena461x <|-- Catena4617
Catena461x <|-- Catena4618
Catena463x <|-- Catena4630
Catena480x <|-- Catena4801
Catena480x <|-- Catena4802
!endif
}
!if ($enableMembers == 0)
hide members
!endif
@enduml | false | true | false | false | class |
35e8ed1b964b2edb28eb4b3eadcc4ec82ac10a9a | c6dbd40f0b241b70ca907dad9553affb0d5686a4 | /diagrammer/klassediagram.plantuml | f22f2b60411b88dd31d5e3e382d4af5936899c5c | [] | no_license | mathiasgredal/Eksamen-Programmering | eaf400c3ed155b422b7a8a51dd8a3a4623621b31 | e18af4c9dc81279b580ec52fcf6071e76e47c2d1 | refs/heads/master | 2023-04-11T23:07:55.227398 | 2021-05-09T17:47:46 | 2021-05-09T17:47:46 | 354,081,654 | 0 | 1 | null | 2021-05-04T21:45:56 | 2021-04-02T17:02:22 | CMake | UTF-8 | PlantUML | false | false | 3,760 | plantuml | @startuml Klassediagram
enum SimType {
Dynamic
Static
Ghost
}
abstract class Shape {
+ NVGColor color
+ virtual void Draw(ctx, entity) const
+ virtual Manifold IsColliding(entityA, entityB, Shape* shapeB)
+ virtual Manifold IsColliding(entityA, entityB, Circle* shapeB)
+ virtual Manifold IsColliding(entityA, entityB, Rectangle* shapeB)
+ virtual Manifold IsColliding(entityA, entityB, Line* shapeB)
}
class Circle implements Shape {
+ Circle(_radius)
+ float radius
+ void Draw(ctx, entity) const override
+ Manifold IsColliding(entityA, entityB, Shape* shapeB) override
+ Manifold IsColliding(entityA, entityB, Circle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Line* shapeB) override
}
class Line implements Shape {
+ Line(_a, _b)
+ float a
+ float b
+ void Draw(ctx, entity) const override
+ Manifold IsColliding(entityA, entityB, Shape* shapeB) override
+ Manifold IsColliding(entityA, entityB, Circle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Line* shapeB) override
}
class Rectangle implements Shape {
+ Rectangle(_width, _height)
+ float width
+ float height
+ void Draw(ctx, entity) const override
+ Manifold IsColliding(entityA, entityB, Shape* shapeB) override
+ Manifold IsColliding(entityA, entityB, Circle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override
+ Manifold IsColliding(entityA, entityB, Line* shapeB) override
}
class Manifold {
+ Entity* entityA
+ Entity* entityB
+ Vec2d collisionPoint
+ Vec2d normal
+ float depth
+ bool isColliding
}
class Vec2d {
+ Vec2d()
+ Vec2d(float _x, float _y)
+ float Length() const
+ Vec2d Normalized() const
+ Vec2d Orthogonal() const
+ float Dot(const Vec2d& a, const Vec2d& b)
+ Vec2d &operator+=(const Vec2d& a)
+ Vec2d &operator-=(const Vec2d& a)
+ Vec2d operator*(float a) const
+ Vec2d operator/(float a) const
+ Vec2d operator+(const Vec2d& a) const
+ Vec2d operator-(const Vec2d& a) const
+ float x
+ float y
}
class Entity {
+ Entity(_pos, _shape)
+ Vec2d position
+ Vec2d velocity
+ Vec2d force
+ float rotation
+ float angularVelocity
+ float torque
+ float mass
+ float momentOfInertia
+ float restitution
+ float staticFriction
+ float dynamicFriction
+ std::shared_ptr<Shape> shape
+ SimType type
+ Manifold IsColliding(Entity* other)
}
class Scene {
+ Scene()
+ Scene(std::vector<Entity*> _entities)
+ void Add(Entity* entity)
+ void Step(float dT)
+ std::vector<Entity*> getEntities() const
- std::vector<Entity*> entities
- Vec2d gravity_coeff
}
class App {
+ App(backend, vsync)
+ ~App()
+ void run()
- void glfw_errorCallback(error, description)
- void glfw_windowResizeCallback(window, width, height)
- void createWindow(backend)
- void drawGUI()
- void drawVG()
- int getWindowHeight()
- int getWindowWidth()
- void onMousePress(window, button, state, modifiers)
- GLFWwindow* m_window
- string project_name
- int m_windowHeight
- int m_windowWidth
- float m_scale
- const ViewId m_viewId
- NVGcontext* m_ctx
- Scene m_level
- time_point<Clock> t_begin
- time_point<Clock> t_end
}
Scene -[hidden]> Entity
App *--|| Scene
Scene *--o{ Entity
Scene *--{ Vec2d
Entity *--|| Shape
Entity *--{ Vec2d
Entity *--|| SimType
Manifold o--{ Entity
Manifold *--{ Vec2d
@enduml | false | true | false | false | sequence |
a97812044e3157a6f6a26864b3647699562eddb5 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /.idea/docs/SprintB/US/US8/US8_MD.puml | 9cc7ae65e29f2271cf243b6a855fa401f6257ff5 | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 574 | puml | @startuml
hide methods
left to right direction
skinparam classAttributeIconSize 0
class Administrator {
-idEmployee
}
class ClinicalAnalysisLaboratory {
-idLaboratory
-name
-address
-phoneNumber
-tin
}
class TypeTest {
-type
}
class Category {
-id
-description
}
class Employee {
-name
-function
-phone
-email
}
class User {
-name
-email
-password
}
Administrator "1" -- "*" ClinicalAnalysisLaboratory : has registered >
Administrator "1" -- "1" TypeTest : choose >
TypeTest "1" -- "*" ClinicalAnalysisLaboratory : sends >
@enduml | false | true | false | false | class |
6bbd0f4abb8261148d3bb63719cb9157973c7ca6 | 2f155271d292d377036fa1f443bf6ad4635f3469 | /sequence_diagram/deleteEffect.puml | 03c093af1087f4809b0ee55280015d4901b4bf52 | [] | no_license | austudio-team/austudio-uml-graph | 1519a4589469e943a11d899d743d023b3f42b584 | e22788d17814ae3e61703e0daf414f60bab2b25c | refs/heads/master | 2021-03-03T09:13:02.261657 | 2020-03-29T17:54:45 | 2020-03-29T17:54:45 | 245,948,897 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 376 | puml | @startuml
actor User
User -> DropdownItem: handleRemoveEffect()
activate Dropdown
Dropdown -> AudioEffectAction: closeEffectPanel()
AudioEffectAction -> AudioEffectSaga: removeEffectSaga()
AudioEffectSaga -> EventEmitter: emit('EFFECT_DELETE_EFFECT');
EventEmitter -> AudioController: removeEffect();
Dropdown -> AudioEffectAction: removeEffect()
deactivate Dropdown
@enduml
| false | true | false | false | usecase |
96730db0e09e65e720af2a9f88ce0f09c6a7bf02 | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/Adaptateur/Customer/README.puml | 07205e27cd4af790bd35929315d9bf917c4e355a | [] | no_license | yvanross/LOG121-GOF-exemples | c80a4d1b29f0b953e4666e100a82d4fde1923bea | 7cff56d019b40901ed54b85a62d69317cf61da59 | refs/heads/master | 2023-05-04T07:39:48.742354 | 2021-05-21T13:43:50 | 2021-05-21T13:43:50 | 261,219,115 | 2 | 25 | null | 2021-01-25T22:44:14 | 2020-05-04T15:11:44 | Java | UTF-8 | PlantUML | false | false | 833 | puml |
@startuml Diagramme de classe
interface AddressIF {
getAddress1(): String
setAddress1(String address1): void
getAddress2(): String
setAddress2(String address2): void
getCity(): String
setCity(String city): void
getState(): String
setState(String state): void
getPostalCode() : String
setPostalCode(String postalCode): void
}
class Customer
Class CuttomerBillToAdapter implements AddressIF {
getAddress1(): String
setAddress1(String address1): void
getAddress2(): String
setAddress2(String address2): void
getCity(): String
setCity(String city): void
getState(): String
setState(String state): void
getPostalCode() : String
setPostalCode(String postalCode): void
}
CuttomerBillToAdapter -> Customer: adapt
@enduml | false | true | false | false | sequence |
37e2ee28b05b4fe1226a3150c22ff5c4300acf48 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/UseCases/Manage-Stack-Template/Destroy-Stack-Template.puml | 58e94b5156ba662063cb77f469e92e520504909c | [] | 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 | 281 | puml | @startuml
Actor "actorName" as A
box "Manage-Stack-Template" #lightblue
participant CLI as CLI
participant Web as Web
participant "c3" as S
A -> CLI : c3-template-destroy()
CLI -> S : template/destroy()
A -> Web : template/destroy()
Web -> S : template/destroy()
end box
@enduml
| false | true | false | false | sequence |
a5f69b63d42aceeacc84d81dd11f1b6b843aba8f | 3eee07d73747125843fdbd92ff680e90418a997f | /fixtures/diff/newModel_v1_state_aliyun.puml | eab18fd1f0295a5395ddc866327723e8cfff057d | [
"MIT"
] | permissive | notyy/TypeFlow | c3af91ec898b9ff96af4d288b0ababc89a68a186 | 6e5559f095ac749c5998ba87c9eff9c60432afb9 | refs/heads/master | 2021-07-30T01:31:21.012779 | 2021-07-28T03:27:21 | 2021-07-28T03:27:21 | 208,800,249 | 24 | 5 | MIT | 2020-06-24T04:22:24 | 2019-09-16T12:58:46 | Scala | UTF-8 | PlantUML | false | false | 1,423 | puml |
@startuml
skinparam class {
BackgroundColor<<CommandLineInputEndpoint>> BurlyWood
BackgroundColor<<CommandLineArgsInputEndpoint>> BurlyWood
BackgroundColor<<AliyunHttpInputEndpoint>> BurlyWood
BackgroundColor<<OutputEndpoint>> BurlyWood
BackgroundColor<<FileOutputEndpoint>> BurlyWood
BackgroundColor<<AliyunOSSOutputEndpoint>> BurlyWood
BackgroundColor<<PureFunction>> LightBlue
BackgroundColor<<AlternativePath>> Crimson
BackgroundColor<<Resource>> Brown
}
class NumInput <<AliyunHttpInputEndpoint>>
class Add2 <<PureFunction>>
class Add <<PureFunction>>
class Multi3 <<PureFunction>>
class Accumulate <<PureFunction>>
class LoadAccumulateValue <<AliyunOSSOutputEndpoint>>
class SaveAccumulateValue <<AliyunOSSOutputEndpoint>>
class AccumulateValueResource <<Resource>>
class Dispatch <<PureFunction>>
LoadAccumulateValue .. AccumulateValueResource
SaveAccumulateValue .. AccumulateValueResource
NumInput --> NI::Integer
NI::Integer --> Dispatch
Dispatch --> "1" DI::Integer
Dispatch --> "2" DI::Unit
DI::Unit --> LoadAccumulateValue
LoadAccumulateValue --> LAL::Integer
LAL::Integer --> "1" Accumulate
DI::Integer --> Add2
DI::Integer --> Multi3
Add2 --> A2::Integer
A2::Integer --> "2" Add
Multi3 --> M3::Integer
M3::Integer --> "1" Add
Add --> A::Integer
A::Integer --> "2" Accumulate
Accumulate --> AC::Integer
AC::Integer --> NumInput
AC::Integer --> SaveAccumulateValue
@enduml
| false | true | false | false | sequence |
37d4bf98aa524ff2f49845747ae31bfeba4c091c | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/ipc01_01/start_sharing/i130664/select_cells_and_share_ipc01_01.puml | 4d3d70b97b4868b1eb48db10d79743ab2eeeeb35 | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 759 | puml | @startuml doc-files/select_cells_and_share_ipc01_01.png
actor User
participant "StartSharingAction" as ssa
participant "ClientChooser" as cc
participant "StartSharingController" as ssc
participant "<<Service>>\nNetwork" as net
User -> User : select cells
User -> ssa : actionPerformed()
ssa -> cc : showDialog(lc);
cc -> ssc : lc=searchClients();
ssc -> net : retrieveClientInstance();
alt
User -> cc : changePort();
cc -> ssc : changePort(port);
ssc -> net : changePort(port);
end
User -> cc : selectClient(address);
cc -> ssc : establishConnection(address);
ssc -> net : establishConnection(addres);
User -> cc : send();
ssa -> ssa : getSelectedCells();
loop
ssa -> ssc : sendCell(Cell);
ssc -> net : sendData(T);
end
@enduml | false | true | false | false | usecase |
fb4e4d2b0f86a0a9a792e6b4c1f62ecd1d759a7e | 35d567e689aa9ea7027448ef44be0be480759654 | /docs/images/usecase/authorization.puml | dda27a3360093c2ba3b7823b10a6d167fec49647 | [] | no_license | Zercos/Coin | 8b8a151a0d1ceff036c7bf2be83a1aef3308e787 | 91059079a7779cb18daca9adcf729fc231939537 | refs/heads/master | 2023-08-07T02:42:03.663429 | 2023-05-07T09:41:24 | 2023-05-07T09:41:24 | 244,215,285 | 0 | 0 | null | 2023-07-25T21:42:02 | 2020-03-01T20:04:20 | Vue | UTF-8 | PlantUML | false | false | 290 | puml | @startuml "Login"
left to right direction
skinparam packageStyle rectangle
actor User
rectangle Application {
User --> (Log in)
(Change password) .> (Log in) : extends
(Registration) .up.> (Log in) : extends
(Confirm email address) .> (Change password) : include
}
@enduml | false | true | false | false | usecase |
475722df7aca8c03aa314aaab531b6531f294b47 | b774d5b532ef20e5c8476e35ea90da5e3f09287e | /src/com/github/tomap/uml/conception/sequenceDiagrams/addBinaryRelation_extends.puml | 4d0efdf64776c4c97ec2666d8a6dee9da17e94e2 | [] | no_license | Phalexei/Modeleur | ae94ab6c191a7999cf9deaee4dac8542eb6a52bb | f143c85930c3b668670087693ec807a9cd4bda81 | refs/heads/master | 2021-01-02T08:51:16.535103 | 2013-11-16T19:54:20 | 2013-11-16T19:54:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,301 | puml | @startuml
actor User as u
participant ListenerEditor as lde
participant ListenerDialogBinaryRelation as ldbr
participant A_ClassDiagram as Cd
participant "r : BinaryRelation" as r
participant "i : Implmentation" as i
participant "g : Generalization" as g
u -> lde: Add binary relation click
activate lde
lde -> ldbr: new ListenerDialogBinaryRelation()
activate ldbr
ldbr --> lde
deactivate ldbr
lde --> u: Add binary relation form
deactivate lde
u -> ldbr: String : relationType\nA_class : from, to
activate ldbr
u -> ldbr: click OK
alt relationType = Implementation
ldbr -> i: new Implementation(from, to)
activate i
i --> ldbr: i
deactivate i
ldbr -> Cd: addRelation(i)
activate Cd
Cd -> ldbr
deactivate Cd
else relationType = Generalization
ldbr -> g: new Generalization(from, to)
activate g
g --> ldbr: g
deactivate g
ldbr -> Cd: addRelation(g)
activate Cd
Cd -> ldbr
deactivate Cd
end
ldbr --> u: repainted view
deactivate ldbr
@enduml | false | true | false | false | usecase |
ecdc88c98778ef94f7cbae17ed26662813dfd2d1 | 81fd61d3a791f40c39c006459fc8c69f7b44c164 | /data-transfer-object/etc/data-transfer-object.urm.puml | 2c21dd21cfda19349a05f33e833fde234642fd8b | [
"MIT"
] | permissive | wzz820/java-design-patterns | f6a890491256a03d49820798a7382373306798b9 | 77c43b37d65a946a7034f5c0a476ab52ae5755e3 | refs/heads/master | 2022-12-21T14:48:39.038393 | 2019-09-04T06:48:05 | 2019-09-04T06:48:05 | 205,109,571 | 0 | 0 | MIT | 2022-12-16T07:15:19 | 2019-08-29T07:47:36 | Java | UTF-8 | PlantUML | false | false | 746 | puml | @startuml
package com.iluwatar.datatransfer {
class CustomerClientApp {
+ CustomerClientApp()
+ main(args : String[]) {static}
- printCustomerDetails(allCustomers : List<CustomerDto>) {static}
}
class CustomerDto {
- firstName : String
- id : String
- lastName : String
+ CustomerDto(id : String, firstName : String, lastName : String)
+ getFirstName() : String
+ getId() : String
+ getLastName() : String
}
class CustomerResource {
- customers : List<CustomerDto>
+ CustomerResource(customers : List<CustomerDto>)
+ delete(customerId : String)
+ getAllCustomers() : List<CustomerDto>
+ save(customer : CustomerDto)
}
}
CustomerResource --> "-customers" CustomerDto
@enduml | false | true | false | false | class |
55f63cd0edce0b290533d782ea954cf1ae51c11c | 48e47bd1dd034f591c9309a5db4c872533ea309a | /docs/crc.puml | 3f46fb76f8991b869fec5edfa200f2f85ff33280 | [
"MIT"
] | permissive | tleish/cap-expect | 711c1ede764b9656e3b934f2b1feda5dffffb9fc | 5f46077b7cc6940a2818f4aedac8b06a4513c3da | refs/heads/master | 2021-01-10T19:14:22.615585 | 2015-12-07T20:31:51 | 2015-12-07T20:31:51 | 41,962,189 | 2 | 0 | null | 2015-12-07T20:31:51 | 2015-09-05T13:38:10 | Ruby | UTF-8 | PlantUML | false | false | 1,650 | puml | @startuml
class MrCommand {
.. RESPONSIBILITIES ..
knows registered menu actions
}
MrCommand -> Command.MrList
MrCommand -> Command.MrDetails
MrCommand -> Command.MrShell
MrCommand -> Command.MrConsole
class Command.MrList {
.. RESPONSIBILITIES ..
writes project capfiles
}
Command.MrList -> MrCapfiles
class Command.MrDetails {
.. RESPONSIBILITIES ..
writes project capfile details
}
Command.MrDetails -> MrMenu
class Command.MrShell {
.. RESPONSIBILITIES ..
runs shell in host:directory
}
Command.MrShell -> MrMenu
Command.MrShell -> MrShellExpect
Command.MrShell -> MrExpect
class Command.MrConsole {
.. RESPONSIBILITIES ..
runs rails console to host:directory attribute
defaults rails console in safe mode
}
Command.MrConsole -> MrMenu
Command.MrConsole -> MrRailsConsoleExpect
Command.MrConsole -> MrExpect
class MrRailsConsoleExpect {
.. RESPONSIBILITIES ..
assembles rails console expect script
}
MrShellExpect -> MrCapfileConfig
class MrShellExpect {
.. RESPONSIBILITIES ..
assembles ssh shell expect script
}
MrShellExpect -> MrCapfileConfig
class MrExpect {
.. RESPONSIBILITIES ..
launches the expect script rocket
}
MrShellExpect -> MrCapfileConfig
class MrMenu {
.. RESPONSIBILITIES ..
writes menu of choices with default option
knows choice from passed param or menu choice
}
class MrCapfiles {
.. RESPONSIBILITIES ..
knows capfiles
}
class MrCapfile {
.. RESPONSIBILITIES ..
knows config path from capfile
}
class MrCapfileConfig {
.. RESPONSIBILITIES ..
knows application
knows gateway
knows branch
knows deploy_to
knows roles
knows hosts
}
@enduml | false | true | false | false | class |
5e7f22ff62d4f86bd9eb4c83cb2cd741d512c223 | ca694217b1c34c967bfbac432d562ed80025dcdf | /uml/classes.plantuml | 4cbf6e1265f6ce7ac26755b6349e5aa49759f7d6 | [] | no_license | marciogualtieri/blockchain | 4e8db4f3a53a8ed1b2f5cda2e87cf1089d89034a | 65641cd1a56e4b1773b776c3dbc0c0c2f25dcc0d | refs/heads/master | 2020-04-13T15:34:02.944386 | 2018-12-29T09:48:13 | 2018-12-29T09:48:13 | 163,295,410 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 776 | plantuml | @startuml
class Node {
-mediator network.Mediator
+(bool, error) VerifyFinalBlockConsensusSignature(block.TXBlock txBlock)
}
class TXBlock {
+bitarray.BitArray ConsensusSignatureMap1stRound
+bitarray.BitArray ConsensusSignatureMap2ndRound
+[]byte ConsensusSignature1stRound
+[]byte ConsensusSignature2ndRound
+TXBlockHeader Header
}
class TXBlockHashSet {
+[]byte MerkleRootHash
+[]byte StateDeltaHash
+[]byte MicroBlocksInfoHash
}
class TXBlockHeader {
+uint8 BlockType
+uint32 Version
+uint64 GasLimit
+uint64RewardsHigh
+uint64RewardsLow
+[]byte PreviousHash
+uint64 BlockNum
+TXBlockHashSetHashSet
+uint32 NumTXs
+[]byte MinerPublicKey
+uint64 DSBlockNum
}
Node *-- TXBlock
TXBlock *-- TXBlockHeader
TXBlockHeader *-- TXBlockHashSet
@enduml
| false | true | false | false | class |
74c5c69365f6a8184c60ba7190f62fb6b943ffe1 | 6c14aa19e43b319922b03a2826106c0c020f1ef1 | /3_patterns/src/doc/class/proxy.puml | 7dee552122e6cce69933fa0c7cf1fdb63ddafbc5 | [
"MIT"
] | permissive | nvamelichev/hse-java-spring-2021 | 50cdd53aa06baad9e31cc51108f0b356766fbe7b | 5409e60473bf8981d9de41faa2c1e33364bcb806 | refs/heads/main | 2023-05-14T15:00:07.196656 | 2021-06-04T11:48:23 | 2021-06-04T11:48:23 | 336,320,393 | 5 | 11 | MIT | 2021-05-14T10:36:53 | 2021-02-05T16:05:28 | Java | UTF-8 | PlantUML | false | false | 392 | puml | @startuml
interface Service {
+ call(a: int, x: String)
}
class RemoteServiceStub implements Service {
- channel: Channel
- method: MethodDescriptor
- retryStrategy: RetryStrategy
+ call(a: int, x: String)
}
class MockService implements Service {
+ call(a: int, x: String)
}
note bottom of MockService: test double
skinparam linetype ortho
skinparam Shadowing false
@enduml
| false | true | false | false | class |
245fda11a980cf83197d618aaf28588b7f12b813 | c211337d51e433919be2fa87efa2ae57f6ca76c2 | /src/mei/designpattern/creational/flyweight/GoChess/gochess.puml | 6c5a984435783f27d56220fadfa42e3b75bf04e5 | [] | no_license | nyannko/coder-notes | 86ae29bfdffa79f681edea6a207ccbf2f35e5827 | 5789764bfc92379ca4fa9e2703db022fac8e463b | refs/heads/master | 2020-05-29T09:12:21.050431 | 2019-06-10T19:37:17 | 2019-06-10T19:37:17 | 189,054,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 543 | puml | @startuml
abstract class GoChess {
+{abstract} String getColor()
+void display(Coordinates c)
}
class BlackChess extends GoChess {
+String getColor()
}
class WhiteChess extends GoChess {
+String getColor()
}
class GoChessFactory {
-HashMap<String, GoChess> pool
-GoChessFactory instance
+GoChessFactory getFactory()
+void putChess(String key)
+GoChess getChess(String key)
}
class Coordinates {
-int x
-int y
+Coordinates(x, y)
+getXY()
}
GoChessFactory <-- GoChessFactory
GoChess <.left. GoChessFactory
Coordinates <.. GoChess
@enduml | false | true | false | false | class |
688e554e9183746ef510484be35ef93dd172cf7c | 09709267955e064d5971a8f3aad89df035f14b14 | /preparation/sprint4/attaque.puml | ed9e59f3dcf678803307151c42b976ef9fdb6808 | [] | no_license | AnnYoS/ACL_2019_TLP | a57e8bfe1080e72e342e0686e3ceb5891bfb27f2 | 31089808f0cbcff8cc27dd660cdcc2a493265499 | refs/heads/master | 2020-08-20T13:09:05.286745 | 2019-12-10T16:19:17 | 2019-12-10T16:19:17 | 216,026,371 | 1 | 0 | null | 2019-12-09T13:53:26 | 2019-10-18T13:08:24 | Java | UTF-8 | PlantUML | false | false | 648 | puml | @startuml
actor Player
Player -> "w : World": attack()
loop "for each monster mo in monsters around hero"
"w : World" -> "h : Hero": attack(mo)
activate "h : Hero"
"h : Hero" -> "mo : Monster" : looseLP()
deactivate
end
loop "for each cell c in cells around hero"
"w : World" -> "m : Map": delete(c)
activate "m : Map"
"m : Map" -> "c : Cell" : delete()
alt c is a Wall deletable
"c : Cell" --> "c : Cell" !!
end
deactivate
end
"w : World" -> "w : World" : removeDeadMonsters()
"w : World" -> "w : World" : updateView()
"w : World" -> Player : update screen
@enduml | false | true | false | false | usecase |
0b2811361594861db8c48114790ebc6ab16ba5bc | 22f0fe489375d9177319e5e45a652307cf0245ba | /uml/TradeControllerListPageDig.puml | 996d6487d3d22dd93b7c6a2ce44750d3828b8f39 | [] | no_license | nitinbedi/tradefinance | 3e54fefd0bb0dd9bb70b641dd034400ba3b92dab | 83a647f0353ca7c807a30e2c0f6a4a47c2a8907e | refs/heads/master | 2022-06-13T19:44:41.858256 | 2020-05-04T20:22:28 | 2020-05-04T20:22:28 | 260,745,275 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,318 | puml | @startuml
skinparam backgroundColor #EEFBDC
skinparam handwritten false
skinparam sequence {
ArrowColor DeepSkyBlue
ActorBorderColor DeepSkyBlue
LifeLineBackgroundColor #A9DCDF
LifeLineBorderColor Black
ParticipantBorderColor DeepSkyBlue
ParticipantBackgroundColor DodgerBlue
ParticipantFontName Impact
ParticipantFontSize 14
ParticipantFontColor #FFFFFF
ActorBackgroundColor white
ActorFontColor DeepSkyBlue
ActorFontSize 14
ActorFontName Aapex
}
actor User
participant "Trade Controller" as TC
participant "TradeService" as TS
participant "TradeDAO" as TD
participant "MongoOperation" as MO
User -> TC: ListPage(<<Model>>, <<PageNo>>)
activate TC
TC-> TC: ListPage(PageNo)
TC -> TS: getAll(<<PageNo>>)
note left
**URL** is //"/id"//
end note
activate TS
TS -> TD: getAll(<<PageNo>>)
activate TD
TD->MO: find(<<query, Trade>>)
activate MO
TD <<-- MO: Return <<Trades>>
TS <<-- TD: Return <<Trades>>
TC <<-- TS: Return <<Trades>>
User <<-- TC: List of <<Trades>> for <<PageNo>>
User -> TC: ListPage(<<Model>>,<<0>>)
activate TC
TC -> TS: getAll(<<pageNo>>)
note left
**URL** is //"/"//
end note
activate TS
TS -> TD: getAll(<<pageNo>>)
activate TD
TD->MO: findAll()
activate MO
TD<<-- MO: Return <<Trades>>
TS <<-- TD: Return <<Trades>>
TC <<-- TS: Return <<Trades>>
User <<-- TC: List of All <<Trades>>
@enduml | false | true | false | false | usecase |
2fbfbb38d1414e4928d66cc8b4f9f14c15fe3836 | 130dd0288f5268c8994ba31c5e3360b1b0eaff44 | /actors/core/src/main/java/com/ea/orbit/actors/transactions/sampleTransaction.puml | 002506d55c9eb8e4e492618ec1e095e251d1cb85 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | DanielSperry/orbit | 2b117ba8b2df99bd8c9c72f8ded2ab957e725645 | a21b2541e246ffb2f8c6981e34a6cc7e1691da9b | refs/heads/master | 2020-12-26T15:48:29.288959 | 2015-12-18T16:18:10 | 2015-12-18T16:18:10 | 33,091,896 | 1 | 1 | null | 2015-03-29T22:18:32 | 2015-03-29T22:18:31 | Java | UTF-8 | PlantUML | false | false | 1,759 | puml | @startuml
participant "example"
participant "Player:1"
participant "Transaction:0001"
participant "Transaction:0002"
group successful case
"example" -> "Transaction:0001" : [6] initTransaction(null, null)
"example" -> "Player:1" : [8] incrementXp(5)
activate "Player:1"
"Player:1" -> "Transaction:0001" : [9] registerActor(Player:1)
"Player:1" --> "example" : [8; 757us] (response to incrementXp): null
deactivate "Player:1"
"example" -> "Transaction:0001" : [11] transactionSuccessful
end
"example" -> "Player:1" : [12] getXp
activate "Player:1"
"Player:1" --> "example" : [12; 664us] (response to getXp): 10
deactivate "Player:1"
group failure case
"example" -> "Transaction:0002" : [5] initTransaction(null, null)
"example" -> "Player:1" : [7] incrementXp(-6)
activate "Player:1"
"Player:1" -> "Transaction:0002" : [8] registerActor(Player:1)
"Player:1" --> "example" : [7; 7,091us] (exception at incrementXp):\njava.lang.IllegalStateException: \nCan't decrease player level
deactivate "Player:1"
"example" -> "Transaction:0002" : [10] cancelTransaction(null)
end
"example" -> "Player:1" : [12] getXp
note left of "example"
reading value
before rollback
end note
activate "Player:1"
"Player:1" --> "example" : [12; 981us] (response to getXp): 4
deactivate "Player:1"
group eventual (asynchronous) cancellation
"Transaction:0002" -> "Player:1" : [13] cancelTransaction(ltNl9wpAoTc9paMQ)
activate "Player:1"
"Player:1" --> "Transaction:0002" : [13; 2,838us] (response to cancelTransaction): null
deactivate "Player:1"
end
"example" -> "Player:1" : [14] getXp
note left of "example"
reading value
after rollback
end note
activate "Player:1"
"Player:1" --> "example" : [14; 1,367us] (response to getXp): 10
deactivate "Player:1"
@enduml
| false | true | false | false | sequence |
8420ad89a27e38caca4d53646479b6ff75d83369 | 22c062df90adff61becb66216348f35b57920adb | /DesignPatern/src/Creational/diagrams/singleton.puml | 29d3b87883284de691f9e271e90e49923675c316 | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
skinparam classAttributeIconSize 0
class Singleton
{
-instance: Singleton*
-Singleton()
+{static} getInstance():Singleton*
}
note " if(instance==nullptr)\n instance=new Logger();\n return instance;" as n1
n1 -left--Singleton
@enduml
| false | true | false | false | class |
8310857ea95c0528244eb0f85a056fd600faea20 | c071afa8c9ef0c26eae424fb721f292f903d7289 | /gfx/uml/Connection_All.plantuml | a9308a3d6de5477e5f3d5bc6d82ca2d2f533619a | [] | 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 | 2,035 | plantuml | @startuml
set namespaceSeparator none
hide empty members
hide empty methods
class Doctrine.DBAL.DriverManager {
+getConnection(): Doctrine.DBAL.Connection
}
class Docrine.DBAL.Connection {
#Doctrine.DBAL.Driver.PDOMySql.Driver $_conn
}
interface Doctrine.DBAL.Driver.Connection {
+prepare(): \Doctrine\DBAL\Driver\Statement
+query(): \Doctrine\DBAL\Driver\Statement
+quote(): string
+exec(): integer
+lastInsertId(): string
+beginTransaction(): boolean
+commit(): boolean
+rollBack(): boolean
+errorCode(): string|null
+errorInfo(): array
}
class PDO {
+prepare(): PDOStatement
+query(): PDOStatement
+quote(): string
+exec(): integer
+lastInsertId(): string
+beginTransaction(): boolean
+commit(): boolean
+rollBack(): boolean
+errorCode(): string|null
+errorInfo(): array
+getAttribute(): mixed
+{static} getAvailableDrivers(): array
+setAttribute(): boolean
}
class Doctrine.DBAL.Driver.PDOConnection extends PDO
class Doctrine.DBAL.Driver.PDOConnection implements Doctrine.DBAL.Driver.Connection
class Doctrine.DBAL.Driver.DB2Connection implements Doctrine.DBAL.Driver.Connection
interface Doctrine.DBAL.Driver {
+connect(): \Doctrine\DBAL\Driver\Connection
+getDatabasePlatform(): \Doctrine\DBAL\Platforms\AbstractPlatform
+getSchemaManager(): \Doctrine\DBAL\Schema\AbstractSchemaManager
+getName(): string
+getDatabase(): string
}
class Doctrine.DBAL.Driver.PDOMySql.Driver {
+connect(): Doctrine.DBAL.Driver.PDOConnection
}
class Doctrine.DBAL.Driver.PDOMySql.Driver extends Doctrine.DBAL.Driver.AbstractMySQLDriver
class Doctrine.DBAL.Driver.AbstractMySQLDriver implements Doctrine.DBAL.Driver
class Doctrine.DBAL.Driver.PDOPgSql.Driver {
+connect(): Doctrine.DBAL.Driver.PDOConnection
}
class Doctrine.DBAL.Driver.PDOPgSql.Driver extends Doctrine.DBAL.Driver.AbstractPostgreSQLDriver
class Doctrine.DBAL.Driver.AbstractPostgreSQLDriver implements Doctrine.DBAL.Driver
class Docrine.DBAL.Connection implements Doctrine.DBAL.Driver.Connection
@enduml
| false | true | false | false | class |
f4ec2314ee844a229a2ab3906a513a94a9b0c695 | 306523a3a6d2e45ddaee697d071cdf141e520f81 | /classes/sequence.puml | ae731f5101be0b43253034615ab044c32dd41bc3 | [
"Apache-2.0"
] | permissive | kingussopp/N8V37 | 8d4726feaf7c06190c2d12c1975bb297a13cc89d | 5273c6376aa46ca1099112deb0b954f83af9c465 | refs/heads/main | 2023-06-25T08:36:30.996105 | 2021-07-27T12:14:47 | 2021-07-27T12:14:47 | 380,979,258 | 0 | 0 | Apache-2.0 | 2021-08-02T12:27:13 | 2021-06-28T09:38:36 | PHP | UTF-8 | PlantUML | false | false | 483 | puml | @startuml Seq
actor student as a
participant login_menu as l_m
participant security_check as s_c
database database as db
participant library as lib order 30
a -> l_m :entering infos
l_m -> s_c
s_c -> db : infos request
db -> s_c : infos state
s_c -> login : valid infos
s_c -> l_m : invalid infos
login -> a : show menu
a -> module : choose module
module -> lib : get_id()
lib -> a : show module
a -> login : logout()
login -> db : saving_infos
db -> l_m : return to menu
@enduml | false | true | false | false | sequence |
da0104237dd92b23ec59c89bc0fb181cc0dfed34 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/macros09_01/buttons_on_toolbar_i130371/macros_09_01_design_sequence.puml | 8bebf319b4112bc7d951398f056331f43e1482cd | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,318 | puml | @startuml doc-files/macros_09_01_design_sequence.png
actor User
participant "<<analysis>>\nUIController" as UIctrl
participant "<<analysis>>\nButtonsUIExtension" as UI
participant "<<analysis>>\nButtonsController" as ctrl
participant "<<analysis>>\nButtonToolBar" as buttons
participant "<<analysis>>\nAddWindow" as window
participant "<<analysis>>\nDefaultAction" as action
User -> UI: Buttons on Toolbar
User -> UI: select "Add Button"
UI -> window: create()
window -> window: initComponents()
window -> UIctrl: getMacrosName()
window -> window: retrieveMacrosList()
window -> User: Asks Information
User -> window: inserts number (the name), tooltip, icon and action
window -> ctrl: verificationIcon(iconName)
window -> User: Asks confirmation
User -> window: OK
window -> buttons: addButton(String name, String toolTip, String icon, String action)
buttons -> action: new DefaultAction(uiController, tooltip, icon, action)
window -> window: dispose()
buttons -> buttons: addToogleButton()
alt
note right of buttons
When the user select the button the
active cell with change the content
to the macro on the button.
end note
action -> UIctrl: c = getActiveCell()
action -> action: c.setContent("="+macro)
end alt;
UI -> User: success of the use case
@enduml | false | true | false | false | usecase |
0bb5323ed3d735606bbf5fc546ee61bbf3a219a8 | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/tests/common/RequiredTest.puml | 6634adfd7d4e14b817aa3feb321df7a55887de6d | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 124 | puml | @startuml
class RequiredTest {
+ exception_test() : void
+ success_test() : void
+ type_test() : void
}
@enduml
| false | true | false | false | class |
dc7a398f1f5f58b96fe33136dd50c3b6271ba2e3 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/Clipboard/ClipboardModule.puml | f0d741c4ee3a5545e5c0679487b402d631476cc0 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 423 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
class ClipboardModule {
}
interface IModule {
+ Identifier : System.Guid
+ IsActive : bool <<get>> <<set>>
+ Initialize() : void
}
IModule <|-- ClipboardModule
ClipboardModule ..> ClipboardCopyEventProducer : "uses"
ClipboardModule ..> ClipboardCutEventProducer : "uses"
ClipboardModule ..> ClipboardPasteEventProducer : "uses"
@enduml
| false | true | false | false | class |
0f3bdb1d6b60061bd9a433092a587fc77dbd8ef4 | 415b01680dc33dccbdfca8007012ccc7732e4d17 | /sheralTrackingService_1_1/MailOrder.puml | 20fd24c1152da192acd9cd6d577845b1175a4017 | [] | no_license | yokod11/MailOrder | 962d5369be7729e6c7187f529c577e0c58ac3a63 | 44915ceaeee46b0883557cfe11642daf1ef71a38 | refs/heads/master | 2022-06-23T01:39:41.131740 | 2020-05-10T22:28:31 | 2020-05-10T22:28:31 | 261,848,655 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,424 | puml |
@startuml
@enduml
annotation java.lang.Override
annotation javax.jws.WebMethod
class driver.driverClass
class java.io.IOException
class java.io.PrintWriter
class java.sql.Connection
class java.sql.DriverManager
class java.sql.ResultSet
class java.sql.SQLException
class java.sql.Statement
class java.util.Random
class java.util.logging.Level
class java.util.logging.Logger
class javax.servlet.ServletException
class javax.servlet.http.HttpServlet
class javax.servlet.http.HttpServletRequest
class javax.servlet.http.HttpServletResponse
class servlet.getDataServlet
class servlet.trackingNumberServlet
interface driver.TrackingServiceInterface
driver.driverClass ..> java.sql.Connection
driver.driverClass ..> java.sql.DriverManager
driver.driverClass ..> java.sql.ResultSet
driver.driverClass ..> java.sql.SQLException
driver.driverClass ..> java.sql.Statement
servlet.getDataServlet ..> java.lang.Override
servlet.getDataServlet ..> java.io.IOException
servlet.getDataServlet ..> java.io.PrintWriter
servlet.getDataServlet ..> java.sql.Connection
servlet.getDataServlet ..> java.sql.DriverManager
servlet.getDataServlet ..> java.sql.ResultSet
servlet.getDataServlet ..> java.sql.SQLException
servlet.getDataServlet ..> java.sql.Statement
servlet.getDataServlet ..> java.util.logging.Level
servlet.getDataServlet ..> java.util.logging.Logger
servlet.getDataServlet ..> javax.servlet.ServletException
servlet.getDataServlet --|> javax.servlet.http.HttpServlet
servlet.getDataServlet ..> javax.servlet.http.HttpServletRequest
servlet.getDataServlet ..> javax.servlet.http.HttpServletResponse
servlet.trackingNumberServlet ..> java.lang.Override
servlet.trackingNumberServlet ..> javax.jws.WebMethod
servlet.trackingNumberServlet ..> java.io.IOException
servlet.trackingNumberServlet ..> java.io.PrintWriter
servlet.trackingNumberServlet ..> java.sql.Connection
servlet.trackingNumberServlet ..> java.sql.DriverManager
servlet.trackingNumberServlet ..> java.sql.Statement
servlet.trackingNumberServlet ..> java.util.Random
servlet.trackingNumberServlet ..> javax.servlet.ServletException
servlet.trackingNumberServlet --|> javax.servlet.http.HttpServlet
servlet.trackingNumberServlet ..> javax.servlet.http.HttpServletRequest
servlet.trackingNumberServlet ..> javax.servlet.http.HttpServletResponse
servlet.trackingNumberServlet --|> driver.TrackingServiceInterface
driver.TrackingServiceInterface ..> java.util.Random
@enduml | false | true | false | false | class |
14395af08a411bf7fa586b5e89679068ce530a8a | e628bf8edaca6489693a1814840e23006b6d353c | /Documents/Architect/transaction-flow.plantuml | 3974f6607ccdeca8e48b7646ded29c6fccae1ab5 | [] | no_license | chicken-devs/chicken-commerce | d0be45a55dcb65acb617d564d712d030b30cec76 | 59065a60a737493cf5aeea23d2af1db7b72d9a82 | refs/heads/main | 2023-08-25T02:07:10.158708 | 2021-08-09T03:29:26 | 2021-08-09T03:29:26 | 389,687,411 | 0 | 1 | null | 2021-09-18T07:29:14 | 2021-07-26T15:49:04 | C# | UTF-8 | PlantUML | false | false | 2,748 | plantuml | # PlantUML Editor
# Authors:
# Huyen Minh Nguyen (Fresher Developer)
# Contributors:
# Viet Pham (Newbie)
@startuml ChickenCommerce
package ChickenCommerceHost {
[AuthMiddleware]
package Modules {
package Order {
package OrderInfra {
[OrderRepo]
[OrderEventBusClient]
}
package OrderEndpoints {
[OrderAPIs] #Yellow
[OrderEvents] #Yellow
}
package OrderCore {
[IOrderService] #Yellow
[OrderService]
[IOrderEventBusClient]
[Order Biz Model]
[IOrderRepo]
}
[OrderService] ..|> [IOrderService]
[OrderAPIs] --> [IOrderService] : 1.1 Invoke CreateOrder
[IOrderService] --> [Order Biz Model] : 1.2 Init Draft Order
[IOrderService] --> [IOrderRepo] : 1.3 Persist Draft Order
[IOrderService] --> [IOrderEventBusClient] : 1.4 Publish DraftOrderCreated Event
[OrderEvents] --> [IOrderService] : 1.12 Invoke SetOrderStatusConfirmed
[IOrderService] --> [IOrderRepo] : 1.13 Fetch Given Order
[IOrderService] --> [IOrderEventBusClient] : 1.14 Process Order Status Transitioning from Draft to Confirmed
[IOrderService] --> [IOrderRepo] : 1.15 Persist Confirmed Order
[OrderRepo] ..|> [IOrderRepo]
[OrderEventBusClient] ..|> [IOrderEventBusClient]
}
package Catalog {
package CatalogInfra {
[CatalogRepo]
[CatalogEventBusClient]
}
package CatalogEndpoints {
[CatalogEvents] #Yellow
}
package CatalogCore {
[ICatalogService] #Yellow
[CatalogService]
[ICatalogEventBusClient]
[Catalog Biz Model]
[ICatalogRepo]
}
[CatalogService] ..|> [ICatalogService]
[CatalogEvents] --> [ICatalogService] : 1.6 Invoke ReserveProducts
[ICatalogService] --> [ICatalogRepo] : 1.7 Fetch Catalog Biz Model
[ICatalogService] --> [Catalog Biz Model] : 1.8 Process product reservation
[ICatalogService] --> [ICatalogRepo] : 1.9 Persist Catalog Biz Model
[ICatalogService] --> [ICatalogEventBusClient] : 1.10 Publish ProductReservationSuccessful Event
[CatalogRepo] ..|> [ICatalogRepo]
[CatalogEventBusClient] ..|> [ICatalogEventBusClient]
}
}
}
[Client]
Client --> [AuthMiddleware]
[AuthMiddleware] --> [OrderAPIs] : 1: Create Order Request
package Kafka {
[Producer]
[Consumer]
[Server]
[Producer] --> [Server]
[Server] --> [Consumer]
[Producer] ..|> [OrderEventBusClient]
[Consumer] --> [OrderEvents] : 1.11 Trigger ProductReservationSuccessful Handler
[Producer] ..|> [CatalogEventBusClient]
[Consumer] --> [CatalogEvents] : 1.5 Trigger DraftOrderCreated Handler
}
@enduml
| false | true | false | false | sequence |
07e51b21b54d86b6db3e0c991c65ff0a3d7208bd | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/intermediate/oop/ex05/ex05.plantuml | c2becd7b8c698724ea5b908b1d97539e6d14337d | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 410 | plantuml | @startuml
title __EX05's Class Diagram__\n
namespace global.skymind {
namespace training.intermediate.oop.ex05 {
class global.skymind.training.intermediate.oop.ex05.Account {
}
}
}
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 |
4e6e7bc31822da35bb57908cb1467306ab761000 | 62f4984a26ccbf686d5450a8189676dacde3e427 | /assets/uml/retrofit-spec.plantuml | f7a59724e8f1f063a2e3fe1d5fa46dfb22887159 | [
"MIT"
] | permissive | raahed/softa-06-annotations-reflection | 763518e9a841c5337e520e433d21f5239645bf33 | 2c9d05fa5e5f4a1bd0736f9a55bb06fded41da62 | refs/heads/master | 2023-04-29T22:39:48.790386 | 2023-04-25T07:59:27 | 2023-04-25T07:59:27 | 630,862,049 | 0 | 0 | null | 2023-04-21T10:18:23 | 2023-04-21T10:18:22 | null | UTF-8 | PlantUML | false | false | 353 | plantuml | @startuml
!theme vibrant
package ohm.softa.a06 as P1 {
+interface CNJDBApi {
getRandomJoke(): Call<Joke>
getRandomJoke(categories: String[]): Call<Joke>
getJokesBySearch(query: String): Call<Joke[]>
getJoke(id: String): Call<Joke>
}
+class App {
+{static} main(args: String[]): void
}
}
@enduml
| false | true | false | false | class |
33bdcd04a51bd7f53362457f63e3660f959da352 | 351752493ad8a9dca01ec3f1399674778e12999b | /docs/design/uml/QuotaCd.puml | 9be7c0b448adbf4f052854a66e9514c25e624263 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | guymguym/noobaa-core | 68373e5ba41f8544e970b94980d2b1e22a2441ef | c497a4f17104081b58bcafbf5b64979cbb0f9ebc | refs/heads/master | 2023-08-31T00:01:35.615543 | 2023-08-27T12:31:38 | 2023-08-27T12:31:38 | 193,899,078 | 0 | 1 | Apache-2.0 | 2019-06-26T12:22:36 | 2019-06-26T12:22:36 | null | UTF-8 | PlantUML | false | false | 406 | puml | @startuml
/'To generate png file, use https://www.plantuml.com/plantuml '/
title Quota Classes
scale 1
class Quota {
{field} Structure size
Structure amount
{method} BigInt get_quota_size_raw_value
{method} BigInt get_quota_amount_raw_value
{method} {size, amount} get_config
}
class QuotaHelper {
{method} {size_used_percent, amount_used_percent} get_bucket_quota_usages_percent
}
@enduml | false | true | false | false | class |
8dff3b006dd46e5dceada3dadc8d1a76463116f4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteStateChangedMessagePayload.puml | 0e7599e0ffad583e38e9c4ca78ee3c33ec0459db | [] | 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 | 561 | 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 StagedQuoteStateChangedMessagePayload [[StagedQuoteStateChangedMessagePayload.svg]] extends MessagePayload {
type: String
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
oldStagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
d8c3b7b7bb369fa9c64e05bd6cf5a456ac0f243a | 480e0a74afe3eaf361aaa468ba591d39e90f4cb0 | /uml/ClassDiagram.puml | 59e672659abd82a9b1975d6a3a01a94205716e68 | [] | no_license | milobzb/Botros-ShoppingCart-GUI-APP | 3143e2877099e2d95710d90b36d12c4048c0d46f | a86407a6a7d23e235e90e995a4df6b0ec030258c | refs/heads/master | 2023-06-25T14:22:16.664222 | 2021-07-25T15:42:23 | 2021-07-25T15:42:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,860 | puml | @startuml
class Item{
- int value
- String serialNumber
- String name
+ String getValue()
+ String getName()
+ String getSerialNumber()
+ void setValue(int value)
+ void setSerialNumber(String serialNumber)
+ void setName(String name)
+ String toString()
}
class ItemUtil{
- List<Item> values
+ List<Item> getValues()
+ List<Item> searchByName(String name)
+ List<Item> searchBySerialNumber(String serialNumber)
+ void sortByValue()
+ void sortByName()
+ Item findRecord(String serialNumber)
+ void deleteRecord(String serialNumber)
+ boolean removeFirstRecord()
+ boolean removeRecord(Item item)
+ void addRecord(Item item) throws IllegalArgumentException
+ boolean testSerialNumberPresence(String serialNumber)
}
class FileUtil{
+ {static} void saveAsJsonFile(ItemUtil itemUtil, File filePath)
+ {static}ItemUtil readJsonFile(File filePath) throws IOException
+ {static}void save(ItemUtil itemUtil) throws IOException
+ {static}void saveAsTSVFile(ItemUtil itemUtil, File filePath) throws IOException
+ {static}ItemUtil readTSVFile(File filePath) throws IOException
+ {static}void saveAsHTMLFile(ItemUtil itemUtil, File filePath) throws IOException
+ {static}ItemUtil readHTMLFile(File filePath) throws IOException
}
class App{
- {static} JFrame frame
- {static} JTextField valueTextField
- {static} JTextField serialNumberTextField
- {static} JTextField nameTextField
- {static} JTextArea displayTextArea
- {static} ItemUtil itemUtil
+ {static} void main(String[] args)
- void initialize()
+ {static}void searchByName()
+ {static}void edit()
+ {static} void showRecords(List<Item> recordsToShow)
+ {static}void show()
+ {static} void delete()
+ {static}void add()
}
ItemUtil "1" *-- "*" Item
App --> FileUtil
App "1" *-- "1" ItemUtil
@enduml | false | true | false | false | class |
e1e6a6244e179b4058de6758dfbb2b928201d974 | a2b717706eb8dfd1c36045606e5824934cfc20a5 | /diagrams/iterator.puml | 9f7a79230f335898a22f28c6466586a749250e24 | [] | no_license | zhongshijun/head-first-design-patterns-cpp | 66f706264f848e26f6791057eb089a6cdf0a44d9 | 3dc4fc23abb884395313b388fd33e87c0b7730c6 | refs/heads/master | 2023-03-18T20:51:13.129157 | 2021-01-25T20:55:26 | 2021-01-25T20:55:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,257 | puml | @startuml iterator
class MenuItem{
-name_
-description_
-vegetarian_
-price_
+getName()
+getDescription()
+getPrice()
+isVegetarian()
}
abstract class Menu <<interface>>{
+createIterator()
}
class CafeMenu{
-menuItems_ : unorder_map
+createIterator()
}
class DinerMenu{
-menuItems_ : array
+createIterator()
}
class PancakeHouseMenu{
-menuItems_ : vector
+createIterator()
}
Menu <|.down. CafeMenu
Menu <|.down. DinerMenu
Menu <|.down. PancakeHouseMenu
abstract class Iterator<<interface>>{
+hasNext()
+next()
}
class CafeMenuIterator{
-items_ : unordered_map
-position_ : unordered_map::iterator
+hasNext()
+next()
}
class DinerMenuIterator{
-items_ : array
-position_
+hasNext()
+next()
}
class PancakeHouseIterator{
-items_ : vector
-position_
+hasNext()
+next()
}
Iterator <|.down. CafeMenuIterator
Iterator <|.down. DinerMenuIterator
Iterator <|.down. PancakeHouseIterator
class Waitress{
-pancakeHouseMenu_
-dinerMenu_
-cafeMenu_
-printMenu(Iterator)
+printMenu()
}
Iterator <-right- Waitress
Waitress -left-> Menu
CafeMenu o-- MenuItem
DinerMenu o-- MenuItem
PancakeHouseMenu o-- MenuItem
@enduml
| false | true | false | false | class |
3fb7c616330701a00947859f4e1af8ada917f989 | 080065863ef6c80453cabb3f4ae818081c13a789 | /static/acl.get.plantuml | 5e4d0c0bb10e2bb7f4c100abe39f879852e56bfe | [
"BSD-2-Clause"
] | permissive | jishnujayakumar/iudx-auth-server | 1133f0d493d56a76586063d9dc4721c630e36a0b | e165f6800a0f7dd2c4dfcc8113fcd5a20e3d5e52 | refs/heads/master | 2020-07-29T18:45:23.357449 | 2019-09-21T04:00:37 | 2019-09-21T04:00:37 | 209,921,480 | 0 | 0 | BSD-2-Clause | 2019-09-21T03:56:56 | 2019-09-21T03:56:55 | null | UTF-8 | PlantUML | false | false | 219 | plantuml | @startuml
hide footbox
autonumber "<b>[0]"
actor "Provider" as p
participant "IUDX Auth server" as auth
p -[#green]> auth : HTTPS GET /iudx/1.0/acl
auth -[#green]> p : HTTP 200 OK\nbody=<provider-policy>
@enduml
| false | true | false | false | sequence |
6ddd38dbec4263375b59fe8e6d8b8353135d0a0b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StatePagedQueryResponse.puml | 34bd952f7c3194e955b94d2a6cb6331a93a4a704 | [] | 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 | 398 | 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 StatePagedQueryResponse [[StatePagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[State.svg List<State>]]
}
@enduml
| false | true | false | false | class |
25c42a826743f4d1944a424f23fe61d7b0b06713 | 4b81e72878f40b705ac32cf8e136311dc4dc3699 | /app/src/main/java/sud_tanj/com/icare/Backend/Database/Monitoring/Monitoring.plantuml | e5cf61b487dba7af852023d7ac69f3120864f586 | [] | no_license | sudtanj/iCare-PHR | 826f6e1ffa0b4217ed128a36386a7494e22c521e | 2d334a5dd7854b8cc204dd8adbe9f74d86c7d694 | refs/heads/master | 2020-03-23T04:46:07.948787 | 2019-12-22T03:22:09 | 2019-12-22T03:22:09 | 141,104,375 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,288 | plantuml | @startuml
title __MONITORING's Class Diagram__\n
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
package sud_tanj.com.icare.Backend.Database {
package sud_tanj.com.icare.Backend.Database.Monitoring {
class MonitoringInformation {
{static} + KEY : String
- developer : List<String>
- graphLegend : List<String>
- muteStatus : Map<String, Boolean>
- monitoring : Boolean
- name : String
- image : String
- description : String
+ MonitoringInformation()
+ MonitoringInformation()
+ setMonitoring()
+ setName()
+ setImage()
+ setDescription()
+ getDeveloper()
+ getGraphLegend()
+ getMuteStatus()
+ getMonitoring()
+ getName()
+ getImage()
+ getDescription()
}
}
}
}
}
MonitoringInformation -up-|> SyncableObject
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 |
cdfd96d2a4b0a34a6b6c4183bec55cf45de7044e | e8cf9eed6cae8ea73ab351569e11bd51911978d7 | /class/mgo-history.puml | 6481eeb6e922303c638a06bc53f0d11ca87a13eb | [] | no_license | taka-wang/puml | 053fda892e308d2665f39b890f160b2bd1c1bb68 | 83550caca65a5c674912733d230dbee57332f7e5 | refs/heads/master | 2020-04-06T07:07:13.978009 | 2016-09-08T02:21:26 | 2016-09-08T02:21:26 | 64,835,131 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 788 | puml | @startuml
set namespaceSeparator /
skinparam classAttributeIconSize 0
class psmb/mgo-history/dataStore {
+Add(name string, data interface{}) error
+Get(name string, limit int) (map[string]string, error)
+GetAll(name string) (map[string]string, error)
+GetLatest(name string) (string, error)
~openSession() (*mgo.Session, error)
~closeSession(session *mgo.Session)
~marshal(r interface{}) (string, error)
}
interface psmb/IHistoryDataStore {
+Add(name string, data interface{}) error
+Get(name string, limit int) (map[string]string, error)
+GetAll(name string) (map[string]string, error)
+GetLatest(name string) (string, error)
}
"psmb/IHistoryDataStore" <|. "psmb/mgo-history/dataStore"
caption @taka-wang
hide interface fields
@enduml
| false | true | false | false | class |
82d0257b8c0f41aa09c08cf3b70d517688458a0d | ffbc236cfbbda0b7af27e8f1626b8d538327d707 | /uml/sequence-diagrams/UC-03-GenerateIaCcode-WP4.puml | 4976599d255f653a2b4a93ab4c41dcad709cb313 | [
"Apache-2.0",
"LicenseRef-scancode-free-unknown"
] | permissive | SODALITE-EU/project-wide-documentation | bd035fd455660368675843cdee74f86b8f685629 | 7a7b8ce76add1940c5f501ae2c2280ab47b939de | refs/heads/master | 2021-12-27T17:22:26.360944 | 2021-12-22T15:48:10 | 2021-12-22T15:48:10 | 225,436,822 | 3 | 3 | Apache-2.0 | 2021-12-22T15:49:03 | 2019-12-02T17:59:29 | null | UTF-8 | PlantUML | false | false | 1,398 | puml | @startuml
title Generate IaC (WP4)
'Define user actors
actor "Application Ops Expert" as AppOpsExp
participant "SODALITE\nIDE" as IDE
participant "AbstractModel\nParser" as SAPC
participant "IaC Blueprint\nbuilder" as SBBC
participant "Application\nOptimiser\nMODAK" as SPOC
participant "Orchestrator\nxOpera" as orch
AppOpsExp->IDE: BuildIaCRequest(model)
activate IDE
IDE->SAPC: BuildIaCRequest(model)
activate SAPC
'prepare a workable node list of the model - flatten the relationship three
SAPC->SAPC: GetNodeList(Model)
'Main loop - go through the abstract nodes list
loop Node in NodeList
opt "Static optimization" Node requires optimization
SAPC->SPOC: StartOptimization(Node.optimizationInfo)
activate SPOC
SPOC-->SAPC: ExecutionContainer, ExecutionScript
deactivate SPOC
SAPC->SAPC: UpdateNodeWithOptimizationOutcome(Node, ExecutionContainer, ExecutionScript)
end
end
SAPC->SBBC: GenerateIaCCode(NodeList)
activate SBBC
SBBC->SBBC: CreateIaCCode()
SBBC->orch: RegisterIaC(IaCCode)
orch-->SBBC: IaCCodeReference
SBBC-->SAPC: IaCCodeReference
deactivate SBBC
'Return the reference to compile time information - (eg errors, warnings, information, improvement suggestions - all adressing the abstract model
SAPC-->IDE: IaCCodeReference
deactivate SAPC
IDE-->AppOpsExp: IaCBuilderResponse(IaCCodeReference)
deactivate IDE
@enduml
| false | true | false | false | usecase |
65c515f7140df8d72c30840ff3ef39fb4d03b6fa | e3ebf221091ee30de418c963f078ccdd732eaa8c | /docs/modular/sequences/shrinked/shrink_write_inbox.puml | 46194e1a90a04d98f4f24296e871cd1c9c570744 | [
"Apache-2.0"
] | permissive | valb3r/datasafe | 97d9826bb2bc6a478abc56ad30848fcaad8f259a | 1b91e90128e2411339a9b904bb92144879b155bb | refs/heads/develop | 2020-05-31T16:55:05.487855 | 2019-06-05T13:00:08 | 2019-06-05T13:00:08 | 190,393,370 | 0 | 1 | Apache-2.0 | 2019-10-07T09:51:59 | 2019-06-05T12:48:13 | Java | UTF-8 | PlantUML | false | false | 10,539 | puml | @startuml
skinparam SequenceMessageAlign center
activate INBOX
' de.adorsys.datasafe.business.api.inbox.actions.WriteToInboxImpl
INBOX -> INBOX : resolveFileLocation
activate INBOX
' de.adorsys.datasafe.business.api.inbox.actions.WriteToInboxImpl
INBOX -> Profile : publicProfile
activate Profile
' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService
Profile -> Profile : publicProfile
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> Profile : systemDfs
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem
Profile <-- Profile : DFSAccess
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
DFS -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl
DFS <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
Profile <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> Profile : locatePublicProfile
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile <-- Profile : BucketPath
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> DFS : getBlob
activate DFS
' de.adorsys.dfs.connection.api.service.api.DFSConnection
Profile <-- DFS : Payload
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> SERDE : fromJson
activate SERDE
' de.adorsys.datasafe.business.impl.profile.serde.GsonSerde
Profile <-- SERDE : T
deactivate SERDE
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile <-- Profile : UserPublicProfile
deactivate Profile
' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService
INBOX <-- Profile : UserPublicProfile
deactivate Profile
deactivate INBOX
' de.adorsys.datasafe.business.api.inbox.actions.WriteToInboxImpl
INBOX -> Credentials : publicAccessFor
activate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService
Credentials -> Credentials : publicAccessFor
activate Credentials
' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl
Credentials -> Credentials : publicUserCredentials
activate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService
Credentials -> Credentials : publicUserCredentials
activate Credentials
' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl
Credentials -> Profile : systemDfs
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem
Credentials <-- Profile : DFSAccess
deactivate Profile
' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl
Credentials <-- Credentials : DFSCredentials
deactivate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService
Credentials <-- Credentials : DFSCredentials
deactivate Credentials
' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl
Credentials <-- Credentials : DFSAccess
deactivate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService
INBOX <-- Credentials : DFSAccess
deactivate Credentials
' de.adorsys.datasafe.business.api.inbox.actions.WriteToInboxImpl
INBOX -> KeyStore : publicKey
activate KeyStore
' de.adorsys.datasafe.business.api.deployment.keystore.PublicKeyService
KeyStore -> Credentials : publicKey
activate Credentials
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> Credentials : publicAccessFor
activate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService
Credentials -> Credentials : publicAccessFor
activate Credentials
' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl
Credentials -> Credentials : publicUserCredentials
activate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService
Credentials -> Credentials : publicUserCredentials
activate Credentials
' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl
Credentials -> Profile : systemDfs
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem
Credentials <-- Profile : DFSAccess
deactivate Profile
' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl
Credentials <-- Credentials : DFSCredentials
deactivate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService
Credentials <-- Credentials : DFSCredentials
deactivate Credentials
' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl
Credentials <-- Credentials : DFSAccess
deactivate Credentials
' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService
Credentials <-- Credentials : DFSAccess
deactivate Credentials
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> Profile : publicProfile
activate Profile
' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService
Profile -> Profile : publicProfile
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> Profile : systemDfs
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem
Profile <-- Profile : DFSAccess
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
DFS -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl
DFS <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
Profile <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> Profile : locatePublicProfile
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile <-- Profile : BucketPath
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> DFS : getBlob
activate DFS
' de.adorsys.dfs.connection.api.service.api.DFSConnection
Profile <-- DFS : Payload
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile -> SERDE : fromJson
activate SERDE
' de.adorsys.datasafe.business.impl.profile.serde.GsonSerde
Profile <-- SERDE : T
deactivate SERDE
' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl
Profile <-- Profile : UserPublicProfile
deactivate Profile
' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService
Credentials <-- Profile : UserPublicProfile
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
DFS -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl
DFS <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
Credentials <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> Profile : publicKeyStoreAuth
activate Profile
' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem
Credentials <-- Profile : KeyStoreAuth
deactivate Profile
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> DFS : getBlob
activate DFS
' de.adorsys.dfs.connection.api.service.api.DFSConnection
Credentials <-- DFS : Payload
deactivate DFS
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
Credentials -> KeyStore : getPublicKeys
activate KeyStore
' de.adorsys.datasafe.business.api.deployment.keystore.KeyStoreService
KeyStore -> KeyStore : getPublicKeys
activate KeyStore
' de.adorsys.datasafe.encrypiton.impl.keystore.KeyStoreServiceImpl
KeyStore <-- KeyStore : List
deactivate KeyStore
' de.adorsys.datasafe.business.api.deployment.keystore.KeyStoreService
Credentials <-- KeyStore : List
deactivate KeyStore
' de.adorsys.datasafe.business.impl.profile.keys.DFSPublicKeyServiceImpl
KeyStore <-- Credentials : PublicKeyIDWithPublicKey
deactivate Credentials
' de.adorsys.datasafe.business.api.deployment.keystore.PublicKeyService
INBOX <-- KeyStore : PublicKeyIDWithPublicKey
deactivate KeyStore
' de.adorsys.datasafe.business.api.inbox.actions.WriteToInboxImpl
INBOX -> Document : write
activate Document
' de.adorsys.datasafe.business.api.deployment.document.DocumentWriteService
Document -> Document : write
activate Document
' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentWriteServiceriteService
Document -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
DFS -> DFS : obtain
activate DFS
' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl
DFS <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService
Document <-- DFS : DFSConnection
deactivate DFS
' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentWriteServiceriteService
Document -> CMS : encrypt
activate CMS
' de.adorsys.datasafe.business.api.encryption.cmsencryption.CMSEncryptionService
CMS -> CMS : encrypt
activate CMS
' de.adorsys.datasafe.encrypiton.impl.cmsencryption.CMSEncryptionServiceImpl
CMS <-- CMS : CMSEnvelopedData
deactivate CMS
' de.adorsys.datasafe.business.api.encryption.cmsencryption.CMSEncryptionService
Document <-- CMS : CMSEnvelopedData
deactivate CMS
' de.adorsys.datasafe.encrypiton.impl.document.cmsocument.CMSDocumentWriteService
Document -> DFS : putBlob
activate DFS
' de.adorsys.dfs.connection.api.service.api.DFSConnection
Document <-- DFS :
deactivate DFS
' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentWriteServiceriteService
Document <-- Document :
deactivate Document
' de.adorsys.datasafe.business.api.deployment.document.DocumentWriteService
INBOX <-- Document :
deactivate Document
deactivate INBOX
@enduml
| false | true | false | false | sequence |
de1c9f7ef5d2d091f5768c29d8d37a1abda877dc | 9ed64cf55205875b3577756ca587e4d94abbf1fa | /src/com/design/behavior/state/state.puml | fbb540bf881123d57abcf0a9d26cfb4b35a22fb0 | [] | no_license | shf-1218/Design_Patterns | 65f3e8598b9223489d805759f59ba186300d86d9 | 52a3b279609a6699300699d21877137c878dfe32 | refs/heads/master | 2022-12-26T13:40:57.846535 | 2020-09-27T10:23:30 | 2020-09-27T10:23:30 | 299,005,976 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 249 | puml | @startuml
interface State
Class ConcreteStateA
Class ConcreteStateB
Class Context
State <|.. ConcreteStateA
State <|.. ConcreteStateB
Context o-- State
interface State{
Handle(Context context):void
}
Class Context{
state:State
}
@enduml | false | true | false | false | state |
c4f09542607a2135004d89c7d75336e56b86ddd4 | 42e57a58fc95226a7ec40bca58c351092f126102 | /kapitler/media/uml-class-avskrivning.iuml | d3dc53085b459d5ea84bb5bee26c1754c5a2ea5c | [] | no_license | tsodring/noark5-tjenestegrensesnitt-standard | 8d3b31fe83203255ae8361e639f99209974c3ece | df354ac231091e63bde3123f2c779009009b7e80 | refs/heads/master | 2023-01-22T01:33:20.794431 | 2019-07-02T12:40:47 | 2019-07-02T12:40:47 | 194,827,953 | 0 | 0 | null | 2019-07-02T09:03:29 | 2019-07-02T09:03:28 | null | UTF-8 | PlantUML | false | false | 326 | iuml | @startuml
class Sakarkiv.Avskrivning {
+systemID : SystemID [0..1]
+avskrivningsdato : date
+avskrevetAv : string
+referanseAvskrevetAv : SystemID [0..1]
+avskrivningsmaate : Avskrivningsmaate
+referanseAvskrivesAvJournalpost : SystemID [0..1]
+referanseAvskrivesAvKorrespondansepart : SystemID [0..1]
}
@enduml
| false | true | false | false | class |
e9cccc9b1f8844b35cd075b49ede148fd8f00fd9 | c5f6be1c13ab1d0c99b597130443273e13bc06e7 | /screenshot/uml/design_pattern_strategy.puml | 5a33f463478c3c0b06768f39cbb3c568b117a176 | [] | no_license | chenzhe/BlogSource | e82a0648b6addebbe0ab6f4da3ae8c1f03e42852 | 284bd5e1131b98923076c88f356831623e315d94 | refs/heads/master | 2021-02-06T10:16:36.754496 | 2018-06-07T08:09:10 | 2018-06-07T08:09:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 403 | puml | @startuml
interface FlyBehavior
interface QuackBehavior
class FlyWithWings
class FlyNoWay
FlyBehavior <|.. FlyWithWings
FlyBehavior <|.. FlyNoWay
class Quack
class Squeak
class MuteQuack
QuackBehavior <|.. Quack
QuackBehavior <|.. Squeak
QuackBehavior <|.. MuteQuack
abstract class Duck{
FlyBehavior flyBehavior
QuackBehavior quackBehavior
}
FlyBehavior <-- Duck
QuackBehavior <-- Duck
@enduml | false | true | false | false | class |
77eec351273f64590b19487c019ce0ae452c326f | 0f2ccd0a689a3633eead0d7b8f118c1a4ca81aea | /Behavioral/Visitor/doc/visitor.plantuml | df92f5f679ef421d0ebb3779fcfcae4c93aa7e54 | [
"Apache-2.0"
] | permissive | symnoureddine/design-patterns | d6eca7edeb131e7f506900b517050c4f975482aa | b8f088e877d4739527b41aeb6e0c80ac9d29b398 | refs/heads/master | 2020-09-10T18:30:44.513673 | 2019-11-02T22:33:20 | 2019-11-02T22:33:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,055 | plantuml | @startuml
abstract class FormField << Element >> {
-error : string
-required : boolean = false
-value : mixed
-viewValue : mixed
+{abstract}accept(visitor : VisitorInterface)
+getError() : string|null
+getValue() : mixed|null
+getViewValue() : mixed
+isRequired() : boolean
+setError(error : string)
+setRequired(required : boolean)
+setValue(value : mixed)
+setViewValue(viewValue : mixed)
}
class FormFields.IntegerField << ConcreteElement >> {
+accept(visitor : VisitorInterface)
}
class FormFields.EmailField << ConcreteElement >> {
+accept(visitor : VisitorInterface)
}
class FormFields.CheckboxesField << ConcreteElement >> {
-choices : array
+accept(visitor : VisitorInterface)
+getChoices() : array
+setChoices(choices : array)
}
interface VisitorInterface << Visitor >> {
+visitCheckboxes(checkboxesField : CheckboxesField)
+visitEmail(emailField : EmailField)
+visitInteger(integerField : IntegerField)
}
class Visitors.ValidatorVisitor << ConcreteVisitor >> {
+visitCheckboxes(checkboxesField : CheckboxesField)
+visitEmail(emailField : EmailField)
+visitInteger(integerField : IntegerField)
}
class Visitors.ViewToModelTransformerVisitor << ConcreteVisitor >> {
+visitCheckboxes(checkboxesField : CheckboxesField)
+visitEmail(emailField : EmailField)
+visitInteger(integerField : IntegerField)
}
class Visitors.ModelToViewTransformerVisitor << ConcreteVisitor >> {
+visitCheckboxes(checkboxesField : CheckboxesField)
+visitEmail(emailField : EmailField)
+visitInteger(integerField : IntegerField)
}
class FormFields.CheckboxesField extends FormField
class FormFields.IntegerField extends FormField
class FormFields.EmailField extends FormField
class Visitors.ValidatorVisitor implements VisitorInterface
class Visitors.ViewToModelTransformerVisitor implements VisitorInterface
class Visitors.ModelToViewTransformerVisitor implements VisitorInterface
right footer © Vlad Riabchenko <contact@vria.eu>
@enduml
| false | true | true | false | class |
140cca620a9d54094881f61c720b88655ee2d3d7 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.puml | a3e75ef9e19d546949a35ec96eae7503a90755b4 | [] | 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 | 64 | puml | @startuml
class RestoreTestContextAfterDomainReload {
}
@enduml
| false | true | false | false | class |
9f55afbfc9cff315a247ab80aa37ee21d8dad5b4 | 0407b91405d7ada9ccceb8feeb368ea79b08a36f | /diagrams/domain-model.puml | b2fe9035d59a8fbaaac3b07567d4f477a5f05d70 | [] | no_license | Master-Desarrollo-20-21/ejercicio-4-ajedrez-polimorfismo-raul-00 | 6e35a2712233fe54bb4fd2c94c5621afcf490ef4 | 27aefd48143bf6015dfd68df9a93a430ceef34e8 | refs/heads/main | 2023-01-24T23:12:42.406084 | 2020-11-27T18:58:14 | 2020-11-27T18:58:14 | 311,369,708 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 700 | puml | @startuml
title Chess - Domain Model
Chess *--> "2" Player
Chess *--> Turn
Chess *--> Board
Turn --> "2" Player
Board *--> "8x8" Square
Player *--> Color
Player *--> "8" Pawn
Player *--> "2" Knight
Player *--> King
Player --> Board
Player o--> Goal
Goal ..> "1..11" MoveAndCaptureAction
Goal --> King
Piece <|-- King
Piece <|-- Pawn
Piece <|-- Knight
Piece *--> Color
Color <|-- Black
Color <|-- White
Square *--> Coordinate
Square o--> "0..1" Piece
Action <|-- MoveAndCaptureAction
Action <|-- MoveAction
Action ..> Piece
Action ..> "Origin | Target" Square
Action ..> Movement
Movement <|-- MovementOfTheKing
Movement <|-- MovementOfThePawn
Movement <|-- MovementOfTheKnight
@enduml | false | true | false | false | class |
7e89ffbebb85c952fbdb1d783e36e26794db6dc4 | 65ee0e97447342f56ebbd93a8f6be6085f663b0c | /src/cn/designpattern/singleton/singleton.puml | a6c998d7d0825d298955359a8b79329039e09c1b | [] | no_license | baqimeilaoban/idea_test | 18206e87c93f9b6354f229d9ac3c87ebbe27ca2f | a266578607fdb20ab1c98f73276f4486b26c1e43 | refs/heads/master | 2021-02-18T15:06:23.341885 | 2020-05-23T17:21:06 | 2020-05-23T17:21:06 | 245,208,169 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 115 | puml | @startuml
SingletonDemo01 <|-- Client
class SingletonDemo01
class Client{
main(in args; String[]):void
}
@enduml | false | true | false | false | class |
241c39752a83b6e3a327b2ece258f7269b44d107 | 84e711faa0f6399f5c84f7945b96d29a7eafe764 | /diagrams/proactive-messaging-overview.puml | 7b78534b75608865f4b27740dc28aff37183eedb | [] | no_license | bsavage-dbi/dbi-assets | f44c7c18e7c2ddeaf0080a58a38f13f8f22fb5e0 | 44a7d83d8ec9846f26bed8be66c9e2c5e74db2d2 | refs/heads/main | 2023-07-18T09:55:30.245979 | 2021-08-30T15:32:08 | 2021-08-30T15:32:08 | 381,825,744 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,259 | puml | @startuml
skinparam sequenceBoxBorderColor #black
skinparam NoteBorderColor #black
skinparam sequence {
ArrowColor DarkBlue
ActorBackgroundColor White
ActorBorderColor black
LifeLineBorderColor DarkBlue
LifeLineBackgroundColor #A9DCDF
BoxPadding 20
ParticipantPadding 20
ParticipantBorderColor Black
ParticipantBackgroundColor White
}
autonumber "<b>[00] "
footer created by Brian Savage 07/03/2021 \n all rights reservrd David's Bridal Inc.
title Proactive Messaging Process | Overview Diagram
box "DBI" #D4E1F5
participant "Data Services" as DBI_DATA
participant "API Services" as DBI_API
actor "DBI Stylist" as DBI_STY
end box
box "Liveperson" #D4E1F5
participant "Conversational Cloud" as LPCC
participant "Proactive Messaging API Service" as LPPM
end box
box "Twiliow" #D4E1F5
participant "OPT OUT API Service" as TWAS
end box
actor "DBI Customer" as DBI_CUS
DBI_DATA -> DBI_API : Send Data
DBI_API -> LPPM : send message
LPPM -> TWAS : send message for OPT OUT Check
TWAS -> DBI_CUS : send message to customer
activate LPCC
LPCC <- DBI_CUS : she replies to text
LPCC <-> DBI_CUS : skill interacts with her
DBI_STY <- LPCC : skill to stylist
deactivate LPCC
DBI_STY <-> LPCC : stylist to customer
@enduml | false | true | false | false | sequence |
7a7a6c55c095bcae35370a63c02fac6ee6b79191 | eafc0d148dffcc37d83976752713dca064e3aa1b | /docs/helm/diagrams/helm-components-aws.puml | 1146b80f54492235ebb66c5dd96786607f0991e5 | [
"Apache-2.0"
] | permissive | sirReeall/acs-deployment | 417fe451aa94efc7b3e907c9097aee406da51a2c | 3931e882297cf4453aad8745503401b0bd39ca8b | refs/heads/master | 2022-12-19T03:03:10.933979 | 2020-08-17T15:13:46 | 2020-08-17T15:13:46 | 277,750,248 | 0 | 1 | Apache-2.0 | 2020-07-07T07:41:32 | 2020-07-07T07:41:31 | null | UTF-8 | PlantUML | false | false | 1,589 | puml | @startuml
Title: ACS on AWS Helm Deployment Overview
skinparam componentStyle uml2
skinparam linetype ortho
skinparam rectangle {
BorderStyle dashed
FontSize 15
FontStyle none
}
actor Client
node "nginx-ingress namespace" {
component "NGINX ingress-controller" as nginx #lightgrey
}
node "ACS namespace" {
component "Alfresco Digital Workspace" as adw #lightgrey
component "Alfresco Content Services" as acs #lightgrey
component "Alfresco Search Services" as ass #lightgrey
component "Alfresco Share" as share #lightgrey
rectangle "Alfresco Transform Service" {
component "Transform Router" as tr #lightgrey
component "Shared File Store" as sfs #lightgrey
component "Alfresco PDF Renderer" as pdfr #lightgrey
component "LibreOffice" as libr #lightgrey
component "ImageMagick" as img #lightgrey
component "Tika" as tika #lightgrey
component "TransformMisc" as misc #lightgrey
}
}
cloud "Amazon Web Services" {
storage "S3" as s3
database "Aurora RDS" as db
storage "EBS" as ebs
storage "EFS Volume Claim" as vc
queue "Amazon MQ" as mq
}
Client --> nginx
nginx --> acs
nginx --> share
nginx --> adw
ass --> ebs
sfs --> vc
acs --> s3
ass <--> acs
acs --> db
acs --> pdfr
acs --> libr
acs --> img
acs --> tika
acs --> misc
acs --> sfs
acs <--> mq
tr -up-> pdfr
tr -up-> libr
tr -up-> img
tr -up-> tika
tr -up-> misc
tr <--> mq
pdfr --> sfs
libr --> sfs
img --> sfs
tika --> sfs
misc --> sfs
share --> acs
center footer Copyright 2019 Alfresco Software Inc
@enduml
| false | true | false | false | sequence |
d18402651e95e667d2855c456ea86c266b6f52eb | f128cdb5a37465e36fc53711b455bfea4b66e7a7 | /document/uml/data.validator.type.puml | 20e8a4fd34629011a4d086f4296bab928604111b | [] | no_license | purpleabab/wtcs-data-systems-validators | 714ea4cb50923c6f344316f18c2b7d4e46483b04 | 3e1276828ad5a48ebcd777ced019fb7a03ceb419 | refs/heads/master | 2021-01-13T10:04:32.608247 | 2016-11-16T17:32:15 | 2016-11-16T17:32:15 | 72,140,173 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,489 | puml | @startuml
package data.validator.type <<Frame>> {
/'
===============
DEFINE ENTITIES
===============
'/
interface TypeValidator <<interface>> {
+boolean isValid(String)
}
abstract class TypeValidatorBase {
-String:TYPE_REGEX
-Pattern:TYPE_PATTERN
-Matcher:TYPE_MATCHER
..
-String:WHITESPACE_REGEX
-Pattern:WHITESPACE_PATTERN
-Matcher:WHITESPACE_PATTERN
__
+TypeValidatorBase(String regex)
..TypeValidator..
+boolean isValid(String)
}
class NumericTypeValidator<? extends TypeValidatorBase> {
-{static} String:NUMERIC_TYPE_REGEX
__
+NumericTypeValidator()
+String toString()
}
class AlphaNumericTypeValidator<? extends TypeValidatorBase> {
-{static} String:ALPHA_NUMERIC_TYPE_REGEX
__
+AlphaNumericTypeValidator()
+String toString()
}
class AlphaTypeValidator<? extends TypeValidatorBase> {
-{static} String:ALPHA_TYPE_REGEX
__
+AlphaTypeValidator()
+String toString()
}
enum ValidateType {
NUMERIC
ALPHA
ALPHANUMERIC
__
+Class<? extends TypeValidatorBase> getImplementorClass()
+String toString()
}
/'
=================================
DEFINE RELATIONS BETWEEN ENTITIES
=================================
'/
NumericTypeValidator -right-|> TypeValidatorBase:extends
AlphaTypeValidator --|> TypeValidatorBase:extends
AlphaNumericTypeValidator --|> TypeValidatorBase:extends
TypeValidatorBase ..|> TypeValidator:implements
/'
============================
NOTES ABOUT VARIOUS ENTITIES
============================
'/
note bottom of ValidateType
Used to specify what type of characters should be
expected in each field of a record.
Members are implicitly static extensions of the
enum, and can provide the implementing Class
which can validate them, for use via reflection.
<i>Any new validators created need added here.</i>
end note
note right of TypeValidatorBase
Implements all of the logic needed to validate
a String from a provided regular expression,
permitting the provided regex or whitespace.
Permitting whitespace in addition to valid
characters prevents adding the concept of a
field being "required" without some refactoring.
Other types of regex-based validators can
extend this base class, providing only the
regex against which to validate.
end note
note left of TypeValidator
All validators derived from TypeValidatorBase
implement TypeValidator, and can be treated as
such when doing validation.
end note
}
@enduml | false | true | false | false | class |
b9493d8b436c2dbdd7a5edf00e455b4b46e8f108 | e5b6e5746af566514213da1d8c79d93111058e14 | /api/src/main/uml/training.puml | 85d762ff963a5f27ac37b1812e82d06a209a7a6a | [
"Apache-2.0"
] | permissive | lanking520/djl | 55506812346e2bd0ad27e931854b5e54993f016f | 790fce542ff55a5c181fb71e79e3182ab672c0b7 | refs/heads/master | 2023-07-19T04:29:13.515886 | 2023-05-16T20:15:04 | 2023-05-16T20:44:47 | 224,953,783 | 8 | 0 | Apache-2.0 | 2019-12-11T23:15:09 | 2019-11-30T03:25:40 | null | UTF-8 | PlantUML | false | false | 316 | puml | @startuml
(*) --> [An Engine is associated with the Model] "Create Model"
--> "Build neural network"
--> [model.setBlock()] "Set neural network"
--> [model.newTrainer() on specified device(s)] "Create trainer"
--> [trainer.fit()] "Train the model"
--> [model.save()] "Save the model"
--> [model.close()] (*)
@enduml
| false | true | false | false | uml-unknown |
d2dccd0cb2b95a4f7e8e0be1d76ab6ac0f961d01 | 439ac9bc04dc476f5ab765152ac7f7ea9b03d90a | /app/src/main/java/com/lanou3g/record/LessonDemo.puml | bcb766544defa1780ccf5781215341e63885d006 | [] | no_license | risky78125/RecordDemo | 4bb3daaff4ef7a123281f7e107baa4fbd5b126a3 | 153f1b5922f1cf812847601956ebec3c5d3144cc | refs/heads/master | 2021-01-21T13:26:12.566338 | 2016-04-16T15:31:41 | 2016-04-16T15:31:41 | 53,373,397 | 47 | 6 | null | null | null | null | UTF-8 | PlantUML | false | false | 901 | puml | @startuml
interface ViewInterface<T>{
void showLoading();
void hideLoading();
void showRefreshData(T result);
void showLoadData(T result);
void dealError();
}
interface ModelInterface{
void startRefreshConnect(String refreshUrl, NetworkConnect refreshConnect);
void startLoadConnect(String loadUrl,NetworkConnect loadConnect);
}
interface PresenterInterface{
void startNetConnect(String url);
void refresh(String refreshUrl);
void load(String loadUrl);
}
interface NetworkConnect<T>{
void onRefreshCompleted(T result);
void onLoadCompleted(T result);
void onFailed();
}
ViewInterface <|-- Activity
ModelInterface <|-- Model
PresenterInterface <|-- Presenter
NetworkConnect <|-- Presenter
class Activity{
PresenterInterface presenterImpl;
}
class Model{
}
class Presenter{
ViewInterface viewImpl;
ModelInterface modelImpl;
}
@enduml | false | true | false | false | class |
75594d66082a0e43cfff65d4dae26483d2554fd3 | 38b6108a94e7807fa9fa759d80f3d8135c524a4e | /doc/design/diagrams/request_response/untyped_api.puml | 99720f627a30aa42e5158335c771c19136eeb00a | [
"Apache-2.0",
"BSD-3-Clause",
"EPL-2.0",
"MIT",
"LicenseRef-scancode-generic-export-compliance"
] | permissive | qclzdh/iceoryx | 299bb668c074678ce510b0efeebc8702c18e7fc1 | 72a5cf7784f8577697ac203bf02dd19ff9b5e566 | refs/heads/master | 2023-08-16T22:02:07.863576 | 2021-09-22T11:47:00 | 2021-09-22T11:47:00 | 385,878,208 | 0 | 0 | Apache-2.0 | 2021-07-14T10:02:06 | 2021-07-14T09:05:37 | C++ | UTF-8 | PlantUML | false | false | 1,019 | puml | @startuml
class UntypedClient {
Client(serviceDescription: ServiceDescription&, clientOptions: ClientOptions&)
connect(): void
disconnect(): void
getConnectionState(): ConnectionState
loan(userPayloadSize: uint32_t, userPayloadAlignment: uint32_t): expected<void*, Error>
send(request: void*): void
release(request: void*): void
hasResponses(): bool
take(): expected<void*, Error>
release(response: void*): void
releaseQueuedResponses(): void
hasMissedResponses(): bool
}
class UntypedServer {
Server(serviceDescription: ServiceDescription&, serverOptions: ServerOptions&)
offer(): void
stopOffer():void
isOffered(): bool
hasClients(): bool
hasRequests(): bool
take(): expected<void*, Error>
release(request: void*): void
releaseQueuedRequests(): void
hasMissedRequests(): bool
loan(requestHeader: RequestHeader*, userPayloadSize: uint32_t, userPayloadAlignment: uint32_t): expected<void*, Error>
send(response: void*): void
release(response: void*): void
}
@enduml
| false | true | false | false | class |
4fcc3dfd8b7bcb644da42d74e5a096645cf780cc | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Services/app-analyzer/UserInteraction.puml | 08f52764be670af66038db189c5b7ce76973e373 | [] | 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 | 63 | puml | @startuml
actor User
User -> "app-analyzer": UseCase
@enduml
| false | true | false | false | sequence |
4d63b1bd112bc07730bbe987f2b6b183e35ab0c8 | f64fe6610e4c5d577a15bfb724284166220a513c | /Use cases/CatalogEntry/ViewDetailed/view-detailed-sequence.puml | f01c490ae1aca8c3dd552519327b950782653c4f | [
"Apache-2.0"
] | permissive | kathra-project/specifications | 9f605febafa845dbe02988c1d00bd36298efd3e7 | 495100b867ab2bd6993caf3190a38b3afe0774f3 | refs/heads/master | 2022-12-17T06:55:11.624675 | 2020-08-04T17:44:25 | 2020-08-04T17:44:25 | 195,241,374 | 0 | 0 | Apache-2.0 | 2022-12-06T01:32:33 | 2019-07-04T12:53:28 | Shell | UTF-8 | PlantUML | false | false | 2,879 | puml | @startuml
title "view details catalog entry - Sequence Diagram"
actor User
'boundary Proxy
participant Dashboard as UI
participant AppManager
participant ResourceManager
activate User
User -> UI: LINK: goto /catalog-entries page
activate UI
UI -> User:
deactivate UI
note over User
Requirements:
User logged
end note
User -> AppManager: GET /catalog-entries/:catalogEntryId
activate AppManager
AppManager -> ResourceManager: GET /catalog-entries/:catalogEntryId
activate ResourceManager
ResourceManager -> ResourceManager : get catalogEntry
AppManager <- ResourceManager : CatalogEntry
deactivate ResourceManager
User <- AppManager : CatalogEntry [mandatories: id, name, description, \n catalog-entriesVersions[mandatories: id, version, apiVersion[mandatories: id, name]], \n library[mandatories: sourceRepository, pipeline], \n component[mandatories: id, name, group]]
deactivate AppManager
User -> AppManager: GET /sourceRepositories/branchs/:sourceRepositoryId
activate AppManager
AppManager -> ResourceManager: GET /sourceRepositories/:sourceRepositoryId
activate ResourceManager
ResourceManager -> ResourceManager : get sourceRepository
AppManager <- ResourceManager : SourceRepository
deactivate ResourceManager
AppManager -> SourceManager: GET /sourceRepositories/branchs/?urlRepository=SourceRepository.sshUrl
activate SourceManager
AppManager <- SourceManager : Branch [name]
deactivate SourceManager
deactivate ResourceManager
User <- AppManager: Branch [name]
deactivate AppManager
User -> AppManager: GET /commits/:sourceRepositoryId?branch=:branch-selected:
activate AppManager
AppManager -> ResourceManager: GET /sourceRepositories/:sourceRepositoryId
activate ResourceManager
ResourceManager -> ResourceManager : get sourceRepository
AppManager <- ResourceManager : SourceRepository
deactivate ResourceManager
AppManager -> SourceManager: GET /commits?urlRepository=SourceRepository.sshUrl&branch=:branch-selected:[default:dev]
activate SourceManager
AppManager <- SourceManager : Commit [id, author, message, hash, date]
deactivate SourceManager
deactivate ResourceManager
User <- AppManager: Commit [id, author, message, hash, date]
deactivate AppManager
User -> AppManager: GET /pipelines/builds/:pipelineId?branch=:branch-selected:
activate AppManager
AppManager -> ResourceManager: GET /pipeline/:pipelineId
activate ResourceManager
ResourceManager -> ResourceManager : get pipeline
AppManager <- ResourceManager : Pipeline
deactivate ResourceManager
AppManager -> PipelineManager: GET /builds?jobName=Pipeline.jobName&jobFolder=Pipeline.jobFolder&branch=:branch-selected:[default:dev]
activate PipelineManager
AppManager <- PipelineManager : Build [number, status, date, commitId(hash)]
deactivate PipelineManager
deactivate ResourceManager
User <- AppManager: Build [number, status, date]
deactivate AppManager
deactivate User
@enduml | false | true | false | false | usecase |
5a50e5ce22849bfff6f08c7e58e6cd114e5f9f77 | 4c353276c8d716f346a467f88d9e20d42a450ab5 | /docs/diagrams/AddExerciseSequence.puml | 3290683ed3979b4dfd276773a64965f73f93074e | [] | no_license | gohsonghan98/tp | abd201d60160bb74a6b92b2242782494176d3c87 | 100266016f2fdea6304a43ee59d9935769068430 | refs/heads/master | 2023-01-07T06:58:46.387235 | 2020-11-09T14:03:03 | 2020-11-09T14:03:03 | 297,977,039 | 0 | 0 | null | 2020-09-23T13:22:19 | 2020-09-23T13:22:18 | null | UTF-8 | PlantUML | false | false | 978 | puml | @startuml
participant ":Fitr" as fitr
participant ":Parser" as Parser << class >>
participant ":AddExerciseCommand" as AddExerciseCommand
participant ":ListManager" as ListManager
participant ":Exercise" as Exercise
participant ":StorageManager" as StorageManager
participant ":ExerciseList" as ExerciseList
activate fitr
fitr -> Parser : parse("Exercise push ups /500")
activate Parser
create AddExerciseCommand
Parser-> AddExerciseCommand
activate AddExerciseCommand
return
return
deactivate Parser
fitr -> AddExerciseCommand : execute()
activate AddExerciseCommand
create Exercise
AddExerciseCommand -> Exercise
activate Exercise
return
AddExerciseCommand -> ListManager: addExercise()
activate ListManager
ListManager -> ExerciseList : addExercise()
activate ExerciseList
return
return
AddExerciseCommand -> StorageManager: writeExercistList()
activate StorageManager
return
return
AddExerciseCommand -[hidden]-> fitr
destroy AddExerciseCommand
hide footbox
@enduml | false | true | false | false | sequence |
6923d8fba372e4b6c4551d54288f8cfe7c82a32a | d046d1d89b21d4e30f6ca382c15de6da3941395e | /uml/usecase-view/usecase-move-stock-waste.puml | 2cd4a48ac1befa52e3a5d3d4374f5db0c0a6df95 | [] | no_license | hombrenieve/klondike_rup | fff8cbc09e8b2a647b6f4c71111960b2a8fe3714 | cb8e1bbcb24d0750dd93f6048ed840d7552dc145 | refs/heads/master | 2020-06-04T02:15:00.755154 | 2019-06-17T09:59:09 | 2019-06-17T09:59:09 | 191,829,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 552 | puml | @startuml
top to bottom direction
hide empty description
state "Partida abierta" as precondicion
state " " as s1
state " " as s2
state " " as s3
[*] --> precondicion
precondicion --> s1: El usuario solicita ciclar un stack de máximo 3 cartas boca abajo de stock a waste
s1 --> s2: El sistema permite retirar un stack de máximo 3 cartas de stock (stock contiene cartas)
s2 --> s3: El sistema introduce el stack de cartas del stock en waste, poniendo las cartas boca arriba
s3 --> StackMovido: El sistema muestra el stack de cartas en waste
@enduml | false | true | true | false | sequence |
8c755922fdab9875f626e884ff976b9c7a5f5105 | f800c0144d226b5834384dbdd694553d94d60d22 | /qmlcourseRU/_static/index/program.plantuml | ecb3772fb6b4753f0999f35606e1e31134f32598 | [
"CC-BY-4.0"
] | permissive | shanglai/qmlcourse | f9e3835a4381a8ef29c2b4abc9f5488fcadb6368 | 75116e31c6ee4dce4f789a744524a80d1984de1b | refs/heads/master | 2023-08-23T22:30:21.367928 | 2021-10-25T20:34:49 | 2021-10-25T20:34:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,786 | plantuml | @startuml
package "Week 1" {
package "Introduction" #Bisque {
rectangle "Quantum Computers, Bitcoin and Quantum Advantage" as intro1 #14D2EF
}
package "Prerequisites" #Bisque {
rectangle "Python Intro" as python #14D2EF
rectangle "Numpy & Linalg" as numpy #14D2EF
rectangle "Classical ML/DL" as ml #14D2EF
}
}
package "Week 2" {
package "Quantum Computing" as qci #Bisque {
rectangle "Qubit" as qubit #40B464
rectangle "Gates" as gates #40B464
rectangle "Mixed Stated" as mixed #FFC864
}
package "Programming QC" #Bisque {
rectangle "Frameworks Comparision" as progcomparision #40B464
rectangle "PennyLane" as pennylane #40B464
rectangle "Qiskit & Aqua" as qiskit #FFC864
rectangle "Cirq & TFQ" as cirq #FFC864
}
}
package "Week 3" {
package "Basic Quantum Algorithms" as qalgo #Bisque {
rectangle "Deutsch" as deutsch #40B464
rectangle "Other Algorithms Review" as advanced_algos #40B464
rectangle "Grover" as grover #FFC864
rectangle "Quantum Teleportation" as qtp #40B464
rectangle "Simon" as saimon #FFC864
}
package "NISQ Hardware" #Bisque {
rectangle "Hardware review" as review #40B464
rectangle "Superconducting qubits" as schard #E0535C
}
}
package "Week 4" {
package "Quantum ML" #Bisque {
rectangle "Kinds of QML" as qml_general #14D2EF
rectangle "HHL" as hhl #E0535C
rectangle "Quantum KNN" as qknn #E0535C
}
package "VQC" #Bisque {
rectangle "VQC" as vqc #40B464
}
package "Gradients" #Bisque {
rectangle "Gradients" as grad #40B464
rectangle "High-order gradients" as hograd #FFC864
}
}
package "Week 5" {
package "Quantum Neural Networks" #Bisque {
rectangle "QNN" as qnn #40B464
rectangle "Barren plateaus" as barren #FFC864
rectangle "Convolutional VQC" as convvqc #FFC864
}
package "Quantum SVM" #Bisque {
rectangle "Hybrid SVM" as hsvm #40B464
rectangle "Classical SVM math" as csvm #FFC864
}
}
package "Week 6" {
package "Problems for QML" #Bisque {
usecase "Ising model" as ising #40B464
usecase "Combinatorial Optimization" as copt #40B464
rectangle "Quantum Chemistry" as qchem #40B464
rectangle "Advanced Chemistry" as aqchem #FFC864
}
package "From problems to QML" #Bisque {
usecase "NP-problems as Ising model" as npising #40B464
usecase "Jordan-Wigner transformation" as jordan #40B464
usecase "Eigenvalues problem" as eigenvals #40B464
}
}
package "Week 7" {
package "VQE" #Bisque {
rectangle "VQE" as vqe #40B464
rectangle "TSP with VQE" as tspvqe #40B464
}
package "QAOA" #Bisque {
usecase "QAOA" as qaoa #40B464
usecase "Cost/Mixed Hamiltonians" as hams #FFC864
}
}
package "Week 8" {
package "D-Wave" #Bisque {
usecase "D-Wave & Sampling" as dwave #40B464
}
package "Advanced Topics" as adv #Bisque {
rectangle "SotA review" as sota #40B464
}
}
package "Week 9" {
package "Jobs and Perspectives" as jobs #Bisque {
usecase "Academic positions" as academic #White
usecase "Industrial positions" as industrial #White
}
}
intro1 --> python
intro1 --> numpy
intro1 --> ml
python --> qubit
numpy --> qubit
ml --> qubit
qubit --> gates
mixed <- qubit
gates --> progcomparision
progcomparision --> pennylane
cirq <- progcomparision
progcomparision -> qiskit
pennylane --> deutsch
deutsch --> advanced_algos
advanced_algos -> grover
advanced_algos -> qtp
saimon <- advanced_algos
advanced_algos --> review
review -> schard
review --> qml_general
qml_general -> hhl
qknn <- qml_general
qml_general --> vqc
vqc --> grad
grad -> hograd
grad --> qnn
barren <- qnn
qnn -> convvqc
qnn --> hsvm
csvm <- hsvm
hsvm --> ising
hsvm --> copt
hsvm --> qchem
qchem -> aqchem
qchem --> jordan
ising --> npising
ising --> jordan
copt --> npising
npising --> eigenvals
jordan --> eigenvals
eigenvals --> vqe
eigenvals --> qaoa
vqe --> tspvqe
qaoa -> hams
qaoa --> dwave
vqe --> dwave
dwave --> academic
dwave --> industrial
dwave --> sota
@enduml
| false | true | false | false | usecase |
670a0ca9a7f8033873da3699d203c5ea8407e44f | 0e12d47461298f9253ab27c8899c65265d93dbac | /doc/pic/src/boot.tag.puml | e6fb5a0b4d7dc3e6ab048c8e932a21b34317c4f9 | [
"Apache-2.0"
] | permissive | swcurran/von_base | 4639736d67fe9ae3421b64ccc0323a121acff941 | 688040920ff8819810deec183ad107d36b0128df | refs/heads/master | 2020-03-17T07:30:03.550082 | 2018-05-01T17:56:25 | 2018-05-01T17:56:25 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,566 | puml | @startuml
/'
Copyright 2017-2018 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file 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, software
distributed under the License is 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.
'/
skinparam ParticipantPadding 20
skinparam BaloxPadding 20
title Trust Anchor Agent Boot Sequence
box "Indy" #LightBlue
participant "Ledger" as ledger
endbox
actor "Trust Anchor\n(Origin)\nAgent" as tag
=== BOOTSTRAP ==
note over ledger, tag
Starting from genesis transactions on node pool: no data exist yet
endnote
note over ledger, tag
Trust Anchor agent boots before any relying agents
endnote
tag -> ledger: Look up own nym
alt Nym present
ledger --> tag: returns agent nym
else Nym not present
tag -[#blue]> ledger: send agent nym
ledger --[#blue]> tag: returns agent nym
end
tag -> ledger: Look up endpoint attribution
alt Endpoint attribution present
ledger --> tag: returns agent-endpoint
else Endpoint attribution not present
tag -[#blue]> ledger: send agent endpoint
ledger --[#blue]> tag: returns agent endpoint
end
@enduml
| false | true | false | false | usecase |
9f9a4688c95cffb90e2f178fd83bbb01ebcc1e3e | d3f921b9e488b1d7e2fa86d01a2e6855219b1d05 | /fdv.service.localization.api/fdv.service.localization.api.plantuml | 578c06775ae5412678cca1f6edf891efad497073 | [
"Apache-2.0"
] | permissive | gematik/ref-ePA-FdV-Modul | d50e244d781702b95a9a31dc4efee09765546d79 | 2c6aba13f01c4fb959424342a5fa8ce1660ffad4 | refs/heads/master | 2022-01-19T20:31:23.703274 | 2022-01-07T07:24:03 | 2022-01-07T07:24:03 | 239,501,237 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 378 | plantuml | @startuml
namespace de.gematik.ti.epa.fdv.service.localization.api {
enum LookupStatus {
}
}
namespace de.gematik.ti.epa.fdv.service.localization.api {
enum ServiceInterfaceName {
}
}
namespace de.gematik.ti.epa.fdv.service.localization.spi {
interface de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer {
}
}
@enduml
| false | true | false | false | class |
1319353e5bec83e50e10fa50e5d31ac6eee55011 | 9db0e44aab017ef29006d32f953b6d2efec074bc | /Java1/dz_ATM3.0/src/qwewq.puml | 58f9db2187dbbf2b17e2362bffd49ad4eef8874b | [] | no_license | Sintez7/Khasang | f6b48eadec007bd2791a88a209b2b1d4e318ecb3 | 25d3ab698730ba8a7a418bd71922f582498e8f38 | refs/heads/master | 2023-08-31T10:33:32.053029 | 2021-10-28T21:10:50 | 2021-10-28T21:10:50 | 240,733,283 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 344 | puml | @startuml
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
daf9a47bffdf694d98ac4659fc81a2c46ff5019b | e38d35073e38e0927ab4fe74f6efad7be9737b41 | /docs/architecture.plantuml | e2e20e88e366de2de05521610a035fccd4c192be | [
"MIT"
] | permissive | AeolusTech/Distributed-voting-system | 07742b293429c08eb657fd0d284df509ffc2a2e5 | 6f9fc90f9688cc5074f90f26154eba1f5baf1f9e | refs/heads/master | 2021-05-17T14:13:42.707793 | 2020-11-01T16:52:37 | 2020-11-01T16:52:37 | 250,812,986 | 0 | 0 | null | 2020-11-11T12:52:05 | 2020-03-28T14:17:49 | C | UTF-8 | PlantUML | false | false | 945 | plantuml | @startuml
frame "Person A" as person_A
frame "Person B" as person_B
package "VotingBooths" {
component [VotingBooth1] as VotingBooth1
component [VotingBooth2] as VotingBooth2
}
node "Counting votes" {
component [VoteCounter] as VoteCounter
}
component [VotesGatherer] as VotesGatherer
database "Gathering votes" as db {
folder "Something to gather votes" {
[Folder]
}
}
package "Checking votes" {
component [VoteChecker] as VoteChecker
}
person_A --> VotingBooth1 : "Votes"
person_B --> VotingBooth2 : "Votes"
person_A --> VoteChecker : "Checks vote online"
person_B --> VoteChecker : "Checks vote online"
VotingBooth1 --> VotesGatherer : "Pass results every 1 min"
VotingBooth2 --> VotesGatherer : "Pass results every 1 min"
VotesGatherer --> VoteCounter : "Voting finished"
VotesGatherer --> db : "Store votes"
VoteChecker --> db : "Check if vote is there"
VoteCounter --> db : "Count once finished"
@enduml
| false | true | false | false | sequence |
10df03669fc54f5145ea3b26ec38dac984760299 | fe4eb6697e791df152d0c98645cb4dd417d0b4fd | /docs/uml/SetAssignmentGrade.puml | 3df8266790352365e7ee32c0afd153cd294650d5 | [] | no_license | AY2021S2-CS2113T-F08-1/tp | 181794879f60fe98692cb30145839758cef4781c | 6e9a5418c1ca45d8ba09ff9a612013251e7417f4 | refs/heads/master | 2023-04-10T04:08:56.690286 | 2021-04-16T14:43:44 | 2021-04-16T14:43:44 | 340,670,502 | 0 | 6 | null | 2021-04-16T13:07:08 | 2021-02-20T14:13:17 | Java | UTF-8 | PlantUML | false | false | 1,089 | puml | @startuml
hide footbox
participant ":Parser" as Parser
participant ":SetAssignmentGradeCommand" as Command
participant ":Data" as Data
participant ":Module" as Module
participant ":Student" as Student
participant ":Assignment" as Assignment
participant ":Ui" as Ui
[-> Parser : parse("set assignment grade")
activate Parser
ref over Parser, Command : getCommand
[<-- Parser : SetAssignmentGradeCommand
deactivate Parser
[->Command : execute()
activate Command
Command -> Data : find(moduleCode)
activate Data
Data --> Command : module
deactivate Data
Command -> Module : findAssignment(assignmentName)
activate Module
Module --> Command : assignment
deactivate Module
Command -> Student : findStudent(studentName)
activate Student
Student --> Command : student
deactivate Student
Command -> Assignment : setStudentGrade(student, grade)
activate Assignment
Assignment --> Command
deactivate Assignment
Command -> Ui : printSetAssignmentGrade(moduleCode, assignmentName, studentName, grade)
activate Ui
Ui --> Command
deactivate Ui
[<-- Command
deactivate Command
@enduml | false | true | false | false | sequence |
fcfc264580593e56d3a5b5707281d4196211b485 | 63a4d203dbdc07cb10dbb1eeb4f89a484633cb3f | /app/app.plantuml | 55b253252268852b67cd0bebe6cc7e3ae6b1a4e7 | [] | no_license | Vaughan-Andrews/Airline-reservation-app | d9eaccda080465c02ba4860cba1d729bf6264487 | bea2dcf9eaf5ee2b84783a22cad47860b3d3c621 | refs/heads/master | 2020-04-20T23:06:24.213325 | 2019-02-04T22:29:45 | 2019-02-04T22:29:45 | 169,160,057 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,793 | plantuml | @startuml
title __APP's Class Diagram__\n
package com.example.vaughan.airlinereservation {
class AccountCreate {
}
}
package com.example.vaughan.airlinereservation {
class BuildConfig {
}
}
package com.example.vaughan.airlinereservation {
class ExampleInstrumentedTest {
}
}
package com.example.vaughan.airlinereservation {
class Flight {
}
}
package com.example.vaughan.airlinereservation {
class FlightCursorWrapper {
}
}
package com.example.vaughan.airlinereservation {
class FlightsHelper {
}
}
package com.example.vaughan.airlinereservation {
class FlightsSchema {
}
}
package com.example.vaughan.airlinereservation {
class MainMenu {
}
}
package com.example.vaughan.airlinereservation {
class Person {
}
}
package com.example.vaughan.airlinereservation {
class PersonCursorWrapper {
}
}
package com.example.vaughan.airlinereservation {
class PersonHelper {
}
}
package com.example.vaughan.airlinereservation {
class PersonSchema {
}
}
package android.support.drawerlayout {
class R {
}
}
package android.support.slidingpanelayout {
class R {
}
}
package android.support.asynclayoutinflater {
class R {
}
}
package androidx.versionedparcelable {
class R {
}
}
package android.support.documentfile {
class R {
}
}
package android.support.constraint {
class R {
}
}
package android.support.coreui {
class R {
}
}
package android.support.v7.appcompat {
class R {
}
}
package android.support.localbroadcastmanager {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
class R {
}
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.viewmodel {
class R {
}
}
}
package android.support.cursoradapter {
class R {
}
}
package android.support.swiperefreshlayout {
class R {
}
}
package android.support.coreutils {
class R {
}
}
package android.support.v7.viewpager {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
package android.arch.lifecycle.livedata.core {
class R {
}
}
}
}
package android.support.loader {
class R {
}
}
package android.support.print {
class R {
}
}
package com.example.vaughan.airlinereservation {
class R {
}
}
package android.arch.lifecycle {
class R {
}
}
package android.support.customview {
class R {
}
}
package android.arch.core {
class R {
}
}
package android.support.fragment {
class R {
}
}
package android.support.coordinatorlayout {
class R {
}
}
package android.support.compat {
class R {
}
}
package android.support.graphics.drawable {
class R {
}
}
package android.support.interpolator {
class R {
}
}
package com.example.vaughan.airlinereservation {
class ReservationSchema {
}
}
AccountCreate -up-|> AppCompatActivity
AccountCreate o-- PersonHelper : personHelper
FlightCursorWrapper -up-|> CursorWrapper
FlightsHelper -up-|> SQLiteOpenHelper
MainMenu -up-|> AppCompatActivity
PersonCursorWrapper -up-|> CursorWrapper
PersonHelper -up-|> SQLiteOpenHelper
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 |
3479924615441dc5288a27ad85e0a1f676d8a48d | ac8493322a4cde818a2a04634f2de0d1fd6208f0 | /pages/plantuml/runSubscriptionOn-sequence.puml | 54d577c421543a1e8f6ebd86a67bfdfdba7f9017 | [
"Apache-2.0"
] | permissive | cescoffier/mutiny-doc-sandbox | 32d7e5b75a2d0be65a3790ba184b5f254bf6aa31 | 59b56a998ab0f11c4c1f0b316e7b7e6bca0a9a13 | refs/heads/main | 2023-01-24T02:09:47.568392 | 2020-11-26T15:11:37 | 2020-11-26T15:11:37 | 306,060,097 | 1 | 0 | Apache-2.0 | 2020-11-25T06:39:21 | 2020-10-21T14:57:52 | Java | UTF-8 | PlantUML | false | false | 449 | puml | @startuml
skinparam dpi 300
skinparam useBetaStyle true
skinparam handwritten true
skinparam StereotypeFontSize 0
participant Source as m1 #D2B4DE
participant "Some Operation" as m2 #FAE5D3
participant "runSubscriptionOn(executor)" as m3 #FAE5D3
participant "Subscriber" as subscriber #D2B4DE
subscriber -> m3 : subscribe (subscriber thread)
m3 -[#EFBFCC]> m2 : subscribe (executor thread)
m2 -[#EFBFCC]> m1 : subscribe (executor thread)
@enduml | false | true | false | false | sequence |
01c618bb17d6589c2bf55dbc9561117424247e69 | 3abeea9cd44ffd79da56bb184f694bb44903bf70 | /designPattern/src/main/java/cn/zhanghub/designPattern/principle/UML/UML1.puml | 1df4ed6fe673665a6c1624b57d2df2a24a33c29d | [] | no_license | NJAUzhangwenjun/base | c0fb6b47f57e371ebbd6d078246a4b6335df416f | 07a93ff42a00988f11b0d80f118f53c20f879e8e | refs/heads/master | 2023-05-30T09:31:52.364594 | 2021-06-15T17:46:05 | 2021-06-15T17:46:05 | 359,068,941 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 407 | puml | @startuml
class cn.zhanghub.designPatterns.uml.classUML.PersonServiceBean {
- PersonDao personDao
+ void save(Person)
+ IDCard getIDCard(Integer)
+ void modify()
}
class cn.zhanghub.designPatterns.uml.classUML.PersonDao {
}
class cn.zhanghub.designPatterns.uml.classUML.IDCard {
}
class cn.zhanghub.designPatterns.uml.classUML.Person {
}
class cn.zhanghub.designPatterns.uml.classUML.Department {
}
@enduml
| false | true | false | false | class |
5cc27f9724435c32f864e10560dc012e3132f21d | 90316a1ff0b3982f1746e248a1952bc5a537c8a5 | /command/command.puml | bbae678535e10bae9e38413bd60fc3f23bfba1eb | [] | no_license | GeekDengshuo/DesignPattern | be3b7286af0323531af09a388f30eadfc9d23add | 219e0118c034cc92fa3430bf2a0d03a463b30b36 | refs/heads/master | 2023-02-23T07:21:11.560579 | 2021-01-23T09:43:14 | 2021-01-23T09:43:14 | 326,142,798 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 654 | puml | @startuml
interface Command{
execute() :void
undo() :void
}
class Light{
on() :void
undo() :void
}
class LightOnCommand{
Light light
execute() :void
undo() :void
}
class LightOffCommand{
Light light
execute() :void
undo() :void
}
class RemoteController{
onCommands:command[]
offCommands:command[]
}
class noCommand{
}
class client{
}
client ..> RemoteController
client ..> LightOnCommand
client ..> LightOffCommand
client ..> Light
RemoteController o- Command
LightOnCommand o-- Light
LightOffCommand o-- Light
Command <|.. LightOnCommand
Command <|.. LightOffCommand
Command <|.. noCommand
@enduml | false | true | false | false | class |
94d08a592e4e7f4bc56ae1c02a5030cb64daf8c7 | e14fe588851a516c8654b12cbd38483d7efcbf5d | /eth/puml/class2.puml | d5e99a3d7237621923272a062bc2ee422de5725c | [] | no_license | renpeng2049/soly | a7ea706e64fd0dcbdc89e6bbfcf2c239c594994e | 98e5e43772feb973c5ed28f85e9837bfb8aed892 | refs/heads/master | 2022-03-07T19:52:24.343375 | 2022-03-01T08:49:51 | 2022-03-01T08:49:51 | 84,622,584 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | puml | @startuml
class WorldManager {
}
class RepositoryWrapper {
}
class BlockchainImpl {
}
class RepositoryRoot {
}
WorldManager o-- IndexedBlockStore : blockStore
WorldManager o-- BlockchainImpl : blockchain
WorldManager o-- RepositoryWrapper : repository
RepositoryWrapper o-- BlockchainImpl
BlockchainImpl o-- RepositoryRoot : defaultRepository
@enduml | false | true | false | false | class |
b0830ed6b9014f925da8684620d4ac289ac58b87 | f1d6f70c25a1f65f5d8dc88b8b87a15970fc7e8a | /resources/2-create-task.puml | e3ba0a60e4865e5e103e3f32989b5e9789da3892 | [
"MIT"
] | permissive | voa2000/task-management-app | cf819b71a4a1bce51b3eac2e97177fa389e672cc | 1573b8e06101f40b933e463f5700e2ca6c2c9bae | refs/heads/main | 2023-08-27T03:08:09.084852 | 2021-10-15T09:55:29 | 2021-10-15T09:55:29 | 414,384,122 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 901 | puml | @startuml
'https://plantuml.com/sequence-diagram
title **Create a task **
skinparam roundcorner 10
skinparam ParticipantPadding 20
skinparam BoxPadding 20
boundary client
box #F5ECD5
participant CreateTaskController as controller
participant CreateTaskCommand as command
participant Task as task
participant TasksRepository as repository
client -> controller: POST /tasks
activate controller
controller -> command: execute()
activate command
command -> task: instance(title, description)
note over task: Task\n - id\n - title\n - description\n - completed\n\n + instance(title, description)\n + complete()\n + edit(title, description)\n
activate task
task --> command
deactivate task
command -> repository: save(task)
activate repository
deactivate repository
deactivate command
...some time (milliseconds) later...
controller --> client: 201 CREATED
deactivate controller
end box
@enduml | false | true | false | false | sequence |
ad36f65450aeafe1581856300b6ef0c2d22686c5 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/learning_plan/offer/ninth/ninth.plantuml | efa3a2e9f422f2eb142426a973796ab6bbd87a5c | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 544 | plantuml | @startuml
title __NINTH's Class Diagram__\n
namespace cn.shui.learning_plan.offer.ninth {
class cn.shui.learning_plan.offer.ninth.Offer42 {
+ maxSubArray()
}
}
namespace cn.shui.learning_plan.offer.ninth {
class cn.shui.learning_plan.offer.ninth.Offer47 {
+ maxValue()
+ maxValue2()
}
}
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 |
d11196f5e61554b7a3b66350a89ccb27586a66f6 | 8e0e85b3875e06a4d76b4298decb879026847d7f | /docs/Skeleton/diagrams/Hide/hide2.puml | f38efc46f9145c5663cf259f34e463ac6e90264d | [] | no_license | viseguard-studios/Documentation | fba5030594be0303374d70019c7ea759316a96fe | 290312ddbeab9cf9a28147c868f3330475aebd6d | refs/heads/main | 2023-05-13T12:00:34.417075 | 2021-06-06T07:52:49 | 2021-06-06T07:52:49 | 338,383,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 312 | puml | @startuml
hide footbox
title SpaceShip hide when asteroid exploded
actor Tester as Tester
participant s as s <<SpaceShip>>
participant currentAsteroid as currentAsteroid <<Asteroid>>
Tester -> s : Hide()
activate s
s -> currentAsteroid ++ : Hide()
currentAsteroid --> s --
s--> Tester
deactivate s
@enduml
| false | true | false | false | sequence |
c135bb80e2d324f3cc701d8d00cfd45084e6e5ad | f2893b3141066418b72f1348da6d6285de2512c6 | /domainModel/basic/docs/diagrams/src/vistas.plantuml | 12e91f2c740cf9143275269c47432f4872a1af3d | [] | no_license | x-USantaTecla-game-connect4/java.swing.socket.sql | 26f8028451aab3c8e5c26db1b1509e6e84108b0d | 28dcc3879d782ace1752c2970d314498ee50b243 | refs/heads/master | 2023-09-01T11:43:43.053572 | 2021-10-16T16:19:50 | 2021-10-16T16:19:50 | 417,161,784 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 447 | plantuml | @startuml desarrollo_implementacion
package " " as usantatecla.tictactoe {
}
package " " as usantatecla.utils {
}
package " " as java.io {
}
package " " as java.util {
}
[tictactoe.jar] as jar
jar *--> usantatecla.tictactoe
jar *--> usantatecla.utils
jar *--> java.io
jar *--> java.util
@enduml
@startuml despliegue_fisica
node node #DDDDDD [
<b>Personal Computer</b>
----
]
[ tictactoe.jar ] as component
node *--> component
@enduml | false | true | false | false | class |
e3ee7a3e744a83976ccee9ae49cc8ed52ec79410 | 38732862c61e39229f8f9483c3ee8703a22f4636 | /arcade.puml | 5935a125d5402b6f5b2e529b42585b4b1db78879 | [] | no_license | Madfish5415/OOP_arcade_2019 | 24a5bebf0733cc57b0e2004d3ca86986250fda5c | 6294acfd6d20f51e195bce63511ddedf07a4c08d | refs/heads/master | 2022-03-30T16:18:58.244597 | 2020-04-06T14:21:07 | 2020-04-06T14:21:07 | 244,322,225 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 24,276 | puml | @startuml Arcade
namespace core {
class Core {
- std::map<std::string, IGraphical> _graphicals
- std::map<std::string, IGame> _games
- std::string _currentGraphical
- std::string _currentGame
- ecs::Universe _universe
+ Core()
+ ~Core()
+ void loadGames()
+ void loadGraphics()
+ engine::ecs::Universe& getUniverse() const
+ bool hasGame(const std::string& name) const
+ game::IGame& getGame(const std::string& name) const
+ game::IGame& getCurrentGame() const
+ void setCurrentGame(const std::string& name)
+ bool hasGraphical(const std::string& name) const
+ graphical::IGraphical& getGraphical(const std::string& name) const
+ graphical::IGraphical& getCurrentGraphical() const
+ void setCurrentGraphical(const std::string& name)
}
}
namespace engine {
namespace ecs {
class Universe {
- std::map<std::string, World> _worlds
- std::string _currentWorld
- eventbus::EventBus _eventbus
+ Universe()
+ ~Universe()
+ void init()
+ void update()
+ void render()
+ eventbus::EventBus& getEventBus()
+ World& createWorld(const std::string& name)
+ bool hasWorld(const std::string& name) const
+ World& getWorld(const std::string& name) const
+ World& getCurrentWorld() const
+ void setCurrentWorld(const std::string& name)
+ void deleteWorld(const std::string& name)
}
World <-- Universe
class World {
- Universe& _universe
- std::vector<std::reference_wrapper<Entity>> _entities
- std::map<std::string, std::vector<std::reference_wrapper<Entity>>> _groups
- std::map<std::type_index, std::reference_wrapper<ASystem>> _systems
+ World(Universe& universe)
+ ~World()
+ void init()
+ void update()
+ void render()
+ Universe& getUniverse() const
+ Entity& createEntity()
+ template<typename... TArgs> std::vector<std::reference_wrapper<Entity>> getEntities() const
+ void deleteEntity(Entity& entity)
+ void addToGroup(Entity& entity, const std::string& group)
+ bool hasGroup(Entity& entity, const std::string& group) const
+ std::vector<std::reference_wrapper<Entity>>& getGroup(const std::string& group) const
+ void removeFromGroup(Entity& entity, const std::string& group)
+ template <typename T, typename... TArgs> T& addSystem(TArgs&&... mArgs)
+ template <typename T = void, typename... TArgs> bool hasSystems() const
+ template <typename T> T& getSystem() const
+ template <typename T> void removeSystem()
}
Universe <-- World
Entity <-- World
ASystem <-- World
class Entity {
- World& _world
- std::map<std::type_index, std::reference_wrapper<AComponent>> _components
+ Entity(World& world)
+ ~Entity()
+ World& getWorld() const
+ template <typename T, typename... TArgs> T& addComponent(TArgs&&... mArgs)
+ template <typename T = void, typename ...TArgs> bool hasComponents() const
+ template <typename T> T& getComponent() const
+ template <typename T> void removeComponent()
}
World <-- Entity
AComponent <-- Entity
interface IComponent {
+ virtual ~IComponent() = 0
+ Entity& getEntity() const = 0
}
abstract AComponent {
# Entity& _entity
+ AComponent(Entity& entity)
+ ~AComponent() override = 0
+ Entity& getEntity() const override
}
IComponent <|-- AComponent
Entity <-- AComponent
interface ISystem {
+ virtual ~ISystem() = 0
+ World& getWorld() const = 0
+ virtual void init() = 0
+ virtual void update() = 0
+ virtual void render() = 0
}
abstract ASystem {
# World& _world
+ ASystem(World& world)
+ ~ASystem() override = 0
+ World& getWorld() const override
+ virtual void init() = 0
+ virtual void update() = 0
+ virtual void render() = 0
}
ISystem <|-- ASystem
World <-- ASystem
}
}
namespace engine {
namespace component {
abstract AAudio {
+ AAudio(Entity& entity, const std::vector<std::string>& paths)
+ virtual ~AAudio() = 0
+ const std::vector<std::string> paths
}
engine.ecs.AComponent <|-- AAudio
abstract ARender {
+ ARender(Entity& entity, const std::vector<std::string>& paths)
+ virtual ~ARender() = 0
+ const std::vector<std::string> paths
}
engine.ecs.AComponent <|-- ARender
abstract AAI {
+ AAI(Entity& entity)
+ virtual ~AAI() = 0
}
engine.ecs.AComponent <|-- AAI
abstract AUser {
+ AUser(Entity& entity)
+ virtual ~AUser() = 0
}
engine.ecs.AComponent <|-- AUser
class Animations {
+ Animations(Entity& entity, const std::map<std::string, type::Animation>& list)
+ ~Animations()
+ const std::map<std::string, type::Animation> list
+ std::string currentAnimation
}
engine.ecs.AComponent <|-- Animations
class Hitbox {
+ Hitbox(Entity& entity, int width, int height)
+ ~Hitbox()
+ int width
+ int height
}
engine.ecs.AComponent <|-- Hitbox
class Motion {
+ Motion(Entity& entity, Vector2D velocity, Vector2D acceleration)
+ ~Motion()
+ Vector2D velocity
+ Vector2D acceleration
}
engine.ecs.AComponent <|-- Motion
class Size {
+ Size(Entity& entity, int width, int height)
+ ~Size()
+ int width
+ int height
}
engine.ecs.AComponent <|-- Size
class Transform {
+ Transform(Entity& entity, Vector2D position, int layer)
+ ~Transform()
+ Vector2D position
+ int layer
}
engine.ecs.AComponent <|-- Transform
}
}
namespace engine {
namespace system {
' Use component.Animations and component.Size
abstract AAnimations {
+ AAnimations(World& world)
+ virtual ~AAnimations() = 0
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- AAnimations
' Use component.AAudio
abstract AAudio {
+ AAudio(World& world)
+ virtual ~AAudio() = 0
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- AAudio
' Use component.ARender and component.Transform
abstract ARender {
+ ARender(World& world)
+ virtual ~ARender() = 0
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- ARender
' Use component.AAI and component.Motion
abstract AAI {
+ AAI(World& world)
+ virtual ~AAI() = 0
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- AAI
' Use component.Motion and component.AUser
abstract AUser {
+ AUser(World& world)
+ virtual ~AUser() = 0
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- AUser
' Use component.Motion and component.Transform
class Movement {
+ Movement(World& world)
+ ~Movement()
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- Movement
' Use component.Hitbox and component.Transform
class Physics {
+ Physics(World& world)
+ ~Physics()
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- Physics
}
}
namespace engine {
namespace eventbus {
' template <typename T, typename E>
' using Callback = void (T::*)(E&)
abstract AEvent {
+ AEvent()
+ virtual ~AEvent() = 0
}
interface ICallbackHandler {
+ virtual ~ICallbackHandler() = 0
+ virtual void call(AEvent& event) = 0
}
EventBus +-- ICallbackHandler
' template <typename T, typename E>
class CallbackHandler {
- T& _subscriber
- Callback _callback
+ CallbackHandler(T& subscriber, Callback<T, E> callback)
+ ~CallbackHandler() override
+ void call(AEvent& event) override
}
ICallbackHandler <|-- CallbackHandler
EventBus +-- CallbackHandler
class EventBus {
- std::map<std::type_index, CallbackHandler*> _subscribers
+ EventBus()
+ ~EventBus()
+ template <typename T, typename E> void subscribe(T& subscriber, Callback<T, E> callback)
+ void unsubscribe()
+ template <typename E> void publish(E& event)
}
}
}
namespace engine {
namespace event {
class Collision {
+ Collision(ecs::Entity& ent1, ecs::Entity& ent2)
+ ~Collision()
+ ecs::Entity& entity1
+ ecs::Entity& entity2
}
engine.eventbus.AEvent <|-- Collision
enum KEYCODE {
KEY_UNKNOWN = -1,
KEY_A, KEY_B, KEY_C, KEY_D, KEY_E,
KEY_F, KEY_G, KEY_H, KEY_I, KEY_J,
KEY_K, KEY_L, KEY_M, KEY_N, KEY_O,
KEY_P, KEY_Q, KEY_R, KEY_S, KEY_T,
KEY_U, KEY_V, KEY_W, KEY_X, KEY_Y,
KEY_Z,
KEY_0, KEY_1, KEY_2, KEY_3, KEY_4,
KEY_5, KEY_6, KEY_7, KEY_8, KEY_9,
KEY_ESCAPE, KEY_LCONTROL, KEY_LSHIFT, KEY_LALT, KEY_LSYSTEM,
KEY_RCONTROL, KEY_RSHIFT, KEY_RALT, KEY_RSYSTEM, KEY_MENU,
KEY_LBRACKET, KEY_RBRACKET, KEY_SEMICOLON, KEY_COMMA, KEY_PERIOD,
KEY_QUOTE, KEY_SLASH, KEY_BACKSLASH, KEY_TILDE, KEY_EQUAL,
KEY_HYPHEN, KEY_SPACE, KEY_ENTER, KEY_BACKSPACE, KEY_TAB,
KEY_PAGEUP, KEY_PAGEDOWN, KEY_END, KEY_HOME, KEY_INSERT,
KEY_DELETE, KEY_ADD, KEY_SUBTRACT, KEY_MULTIPLY, KEY_DIVIDE,
KEY_LEFT, KEY_RIGHT, KEY_UP, KEY_DOWN,
KEY_NUM0, KEY_NUM1, KEY_NUM2, KEY_NUM3, KEY_NUM4,
KEY_NUM5, KEY_NUM6, KEY_NUM7, KEY_NUM8, KEY_NUM9,
KEY_F1, KEY_F2, KEY_F3, KEY_F4, KEY_F5,
KEY_F6, KEY_F7, KEY_F8, KEY_F9, KEY_F10,
KEY_F11, KEY_F12, KEY_F13, KEY_F14, KEY_F15,
KEY_PAUSE, KEY_KEYCOUNT
}
Input +-- KEYCODE
class Input {
+ Input()
+ ~Input()
+ KEYCODE code
}
engine.eventbus.AEvent <|-- Input
}
}
namespace engine {
namespace type {
class Animation {
+ int row
+ int frames
+ int speed
}
class Vector2D {
+ int x
+ int y
}
}
}
namespace graphical {
enum LIBTYPE {
TEXT,
GRAPHIC,
DEBUG
}
interface IGraphical {
+ virtual ~IGraphical() = 0
+ virtual void init() = 0
+ virtual void dispatchEvent() = 0
+ virtual void destroy() = 0
+ virtual std::string getName() const = 0
+ virtual LIBTYPE getType() const = 0
+ virtual engine::component::AAudio createAudio(engine::ecs::Entity& entity, const std::vector<std::string>& paths) = 0
+ virtual engine::component::ARender createRender(engine::ecs::Entity& entity, const std::vector<std::string>& paths) = 0
+ virtual engine::system::AAnimations createAnimationsSystem(engine::ecs::World& world) = 0
+ virtual engine::system::AAudio createAudioSystem(engine::ecs::World& world) = 0
+ virtual engine::system::ARender createRenderSystem(engine::ecs::World& world) = 0
}
abstract AGraphical {
- std::string _name
- LIBTYPE _type
# engine::eventbus::EventBus& eventBus
+ AGraphical(const std::string& name, LIBTYPE type, engine::eventbus::EventBus& eventBus)
+ virtual ~AGraphical() = 0
+ void init() override = 0
+ void dispatchEvent() override = 0
+ void destroy() override = 0
+ std::string getName() const override
+ LIBTYPE getType() const override
+ engine::component::AAudio createAudio(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override = 0
+ engine::component::ARender createRender(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override = 0
+ engine::system::AAnimations createAnimationsSystem(engine::ecs::World& world) override = 0
+ engine::system::AAudio createAudioSystem(engine::ecs::World& world) override = 0
+ engine::system::ARender createRenderSystem(engine::ecs::World& world) override = 0
}
IGraphical <|-- AGraphical
}
namespace sfml {
class Graphical {
- sf::RenderWindow _window
+ Graphical(engine::eventbus::EventBus& eventBus)
+ ~Graphical()
+ void init() override
+ void dispatchEvent() override
+ void destroy() override
+ engine::component::AAudio createAudio(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::component::ARender createRender(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::system::AAnimations createAnimationsSystem(engine::ecs::World& world) override
+ engine::system::AAudio createAudioSystem(engine::ecs::World& world) override
+ engine::system::ARender createRenderSystem(engine::ecs::World& world) override
}
graphical.AGraphical <|-- Graphical
namespace component {
class Audio {
+ sf::RenderWindow& window
+ sf::SoundBuffer soundbuffer
+ sf::Sound sound
+ sf::Music music
+ Audio(engine::ecs::Entity& entity, const std::vector<std::string>& paths, sf::RenderWindow& win)
+ ~Audio()
}
engine.component.AAudio <|-- Audio
enum FLIPTYPE {
NONE = 1,
VERTICAL = 2,
HORIZONTAL = 4
}
' using sfmlAngle = float
class Render {
+ sf::RenderWindow& window
+ sf::Sprite sprite
+ sf::Texture texture
+ sf::IntRect srcRect, destRect
+ FLIPTYPE spriteFlip
+ sfmlAngle angle
+ Render(engine::ecs::Entity& entity, const std::vector<std::string>& paths, sf::RenderWindow& win)
+ ~Render()
}
engine.component.ARender <|-- Render
}
namespace system {
class Animations {
+ Animations(World& world)
+ ~Animations()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAnimations <|-- Animations
class Audio {
+ Audio(World& world)
+ ~Audio()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAudio <|-- Audio
class Render {
+ Render(World& world)
+ ~Render()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.ARender <|-- Render
}
}
namespace sdl {
class Graphical {
- SDL_Window _window
+ Graphical(engine::eventbus::EventBus& eventBus)
+ ~Graphical()
+ void init() override
+ void dispatchEvent() override
+ void destroy() override
+ engine::component::AAudio createAudio(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::component::ARender createRender(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::system::AAnimations createAnimationsSystem(engine::ecs::World& world) override
+ engine::system::AAudio createAudioSystem(engine::ecs::World& world) override
+ engine::system::ARender createRenderSystem(engine::ecs::World& world) override
}
graphical.AGraphical <|-- Graphical
namespace component {
class Audio {
+ SDL_Window& window
+ Mix_Music music
+ Audio(engine::ecs::Entity& entity, const std::vector<std::string>& paths, SDL_Window& win)
+ ~Audio()
}
engine.component.AAudio <|-- Audio
' using sdlAngle = double
class Render {
+ SDL_Window& window
+ SDL_Texture _texture
+ SDL_rect _srcRect, _destRect
+ SDL_RenderFlip _spriteFlip
+ sdlAngle angle
+ Render(engine::ecs::Entity& entity, const std::vector<std::string>& paths, SDL_Window& win)
+ ~Render()
}
engine.component.ARender <|-- Render
}
namespace system {
class Animations {
+ Animations(World& world)
+ ~Animations()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAnimations <|-- Animations
class Audio {
+ Audio(World& world)
+ ~Audio()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAudio <|-- Audio
class Render {
+ Render(World& world)
+ ~Render()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.ARender <|-- Render
}
}
namespace ncurses {
class Graphical {
- WINDOW _window
+ Graphical(engine::eventbus::EventBus& eventBus)
+ ~Graphical()
+ void init() override
+ void dispatchEvent() override
+ void destroy() override
+ engine::component::AAudio createAudio(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::component::ARender createRender(engine::ecs::Entity& entity, const std::vector<std::string>& paths) override
+ engine::system::AAnimations createAnimationsSystem(engine::ecs::World& world) override
+ engine::system::AAudio createAudioSystem(engine::ecs::World& world) override
+ engine::system::ARender createRenderSystem(engine::ecs::World& world) override
}
graphical.AGraphical <|-- Graphical
namespace component {
class Audio {
+ WINDOW& window
+ Audio(engine::ecs::Entity& entity, const std::vector<std::string>& paths, WINDOW& win)
+ ~Audio()
}
engine.component.AAudio <|-- Audio
class Texture {
- std::string _character
- int _foreground
- int _background
+ Texture(std::string c, int f, int b)
+ ~Texture()
+ std::string getCharacter()
+ int getColorPair()
}
class Rect {
+ int x
+ int y
+ int h
+ int w
+ Rect(int x = 0, int y = 0, int h = 0, int w = 0)
+ ~Rect()
}
class Render {
+ WINDOW& window
+ std::map<int, std::map<int, Texture>> texture
+ Rect srcRect, destRect
+ Render(engine::ecs::Entity& entity, const std::vector<std::string>& paths, SDL_Window& win)
+ ~Render()
}
engine.component.ARender <|-- Render
}
namespace system {
class Animations {
+ Animations(World& world)
+ ~Animations()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAnimations <|-- Animations
class Audio {
+ Audio(World& world)
+ ~Audio()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAudio <|-- Audio
class Render {
+ Render(World& world)
+ ~Render()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.ARender <|-- Render
}
}
namespace game {
interface IGame {
+ virtual ~IGame() = 0
+ virtual std::string getName() = 0
+ virtual void init() = 0
+ virtual void destroy() = 0
}
abstract AGame {
# Universe& universe
+ AGame(const std::string& name, engine::ecs::Universe& universe)
+ virtual ~AGame() = 0
+ std::string getName() override
+ void init() override = 0
+ void destroy() override = 0
}
IGame <|-- AGame
}
namespace nibbler {
class Game {
+ Game(engine::ecs::Universe& universe)
+ ~Game()
+ void init() override
+ void destroy() override
}
game.AGame <|-- Game
namespace component {
class Follow {
+ Follow(engine::ecs::Entity& entity)
+ ~Follow()
+ engine::ecs::Entity& followed
}
engine.ecs.AComponent <|-- Follow
class User {
+ User()
+ ~User()
}
engine.component.AUser <|-- User
}
namespace system {
' Use component.Follow and component.Motion
class Follow {
+ Follow()
+ ~Follow()
+ void init() override
+ void update() override
+ void render() override
}
engine.ecs.ASystem <|-- Follow
' Use component.Motion and component.User
class User {
+ User()
+ ~User()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AUser <|-- User
}
}
namespace pacman {
class Game {
+ Game(engine::ecs::Universe& universe)
+ ~Game()
+ void init() override
+ void destroy() override
}
game.AGame <|-- Game
namespace component {
class AI {
+ AI()
+ ~AI()
}
engine.component.AAI <|-- AI
class User {
+ User()
+ ~User()
}
engine.component.AUser <|-- User
}
namespace system {
' Use component.AI and component.Motion
class AI {
+ AI()
+ ~AI()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AAI <|-- AI
' Use component.Motion and component.User
class User {
+ User()
+ ~User()
+ void init() override
+ void update() override
+ void render() override
}
engine.system.AUser <|-- User
}
}
@enduml
| false | true | false | false | sequence |
a4a9b22e229746ab9b9ad18c800e27cf6eaedb9f | ee3b4bdb4928965045d0dac07b3bd97a557c59e7 | /BrokenPixels/Assets/PlanUml/UMLProject.puml | db3a706bcb18d47d5fa426b27fc28c989dde62d7 | [] | no_license | SpaceMonkey97/BrokenPixels | efad1395065e064db29a5febff4ff7c4aff18284 | 1e23c9805e66221045449e4cca8f197fa690c3c6 | refs/heads/main | 2023-02-08T16:00:18.258644 | 2020-12-30T15:01:20 | 2020-12-30T15:01:20 | 319,388,163 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,061 | puml | @startuml
hide empty members
package Characters #DDDDDD
{
abstract class Character {
+HealtPoint : int
+onDie : Action<void>
}
class Player <<(M, yellow)>>
class Enemy <<(M, yellow)>>
class Resource
Character <|-- Player
Character <|-- Enemy
}
package Interactable #DDDDDD
{
class Item
class Gun
class Chest
}
package Rooms #DDDDDD
{
abstract class Room <<ScriptableObject>>{
+width : int
+length : int
+material : Material
}
class StartRoom <<(S, violet) ScriptableObject>>
class StandardRoom <<(S, violet) ScriptableObject>>
class TreasureRoom <<(S, violet) ScriptableObject>>
class ShopRoom <<(S, violet) ScriptableObject>>
class BossRoom <<(S, violet) ScriptableObject>>
Room <|-- StartRoom
Room <|-- StandardRoom
Room <|-- TreasureRoom
Room <|-- ShopRoom
Room <|-- BossRoom
}
package Managment #DDDDDD
{
class UIManager
class GenerateDungeon
class SaveData
class InputManager
}
@enduml | false | true | true | false | class |
d30f0449c981f3f287025ec8806fe1e517fe2398 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetDeliveryItemsAction.puml | 212f087c7e1701bdade53d634a76cd48734cb472 | [] | 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 | 551 | 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 StagedOrderSetDeliveryItemsAction [[StagedOrderSetDeliveryItemsAction.svg]] extends StagedOrderUpdateAction {
action: String
deliveryId: String
deliveryKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
099d1fcf83e0c2e4ec137b564cf9e916f1024529 | cee77b7819645b1ec552f9f737494385bddb6fb3 | /IHM/sni.plantuml | 6e42906b3c2e8787bf2b0f37d8f5b01231e33c3e | [] | no_license | vinvin129/POO | bd3a0c9d2675c153b4c313f7a8bf2742c82724f2 | 245554f9ef83579dfb423872c9912c9f5edf669c | refs/heads/master | 2023-04-22T00:53:51.633059 | 2021-05-03T06:05:01 | 2021-05-03T06:05:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 862 | plantuml | @startuml
hide circle
'hide method
class assure as "Assuré" {
numéro
nom
prénom
dateNaissance
adresse
datePermis
'---
majoration()
}
class vehicule as "Véhicule" {
immatriculation
puissanceFiscale
'---
bonusMalus()
}
enum type as "TypeContrat"
class modele as "Modele"
class cat as "Catégorie"
class Prime {
montant
}
cat - type
(cat,type) .. Prime
vehicule -- "1" modele
modele "*" - "1" cat
class assurance as "Assurance" {
raisonSociale
téléphone
adresse
}
class vt as "Véhicules Tiers" {
immatriculation
propriétaire
}
class dossier as "Dossier" {
dateOuverture
descriptionAccident
expert
}
vehicule --> "1" type
assure "1..1" - "0..*" vehicule : posseder
assure "*" -- assurance
assurance -- vt
dossier "0..*" -- "0..*" vt
dossier "0..*" -- "1..*" vehicule
@enduml
| false | true | true | false | class |
cab684b4860a1495ef0812488e7bfd832542bfe1 | 51d5d9697fa1f66b2f70307dbbf24ae05d7bbd7d | /design/uml.puml | 5bc5c1881ab4a8a635796202c2350aaa5c1c5234 | [] | no_license | LKchemposer/german-language-games | d2d072eb4ecb75ee3f08e45e604e10e87012efad | c5c93f1d7d613f5bd9780d3b4a0a48e3edcab462 | refs/heads/master | 2023-07-03T07:01:21.673045 | 2021-08-19T09:03:51 | 2021-08-19T09:03:51 | 396,014,202 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,946 | puml | @startuml german-language-games
'classes
abstract class Gender {
{abstract} get_gender()
}
abstract class ConjArt {
{abstract} get_conjart()
}
abstract class ConjAdj {
{abstract} get_conjadj()
}
abstract class ConjVerb {
{abstract} get_conjverb()
}
class Grammar {
pronouns
cases
der_words
ein_words
tenses
conjart_options
{static} get_gender()
{static} get_conjart()
get_conjverb()
get_conjadj()
get_conjarts()
decode_der_ein()
}
package "Database" <<Database>> {
class Database {
nouns
verbs
adjectives
pfverbs
load_duolingo()
load_pfverbs_csv()
load_vocab_json()
save_vocab_json()
}
}
'mvc
package MVC <<Rectangle>> {
abstract class Model
abstract class View {
show_prompt()
{static} sep()
{static} show_try_again()
}
abstract class Controller{
{abstract} __init__()
{abstract} run()
{abstract} end()
{static} quit
input_loop()
}
}
'mvc_game
package "Game MVC" <<Rectangle>> {
abstract class Game {
name
instruction
example
default_loads
{abstract} generate_question()
{abstract} generate_answer()
{abstract} generate_prompt()
{abstract} generate_options()
refine_options()
load_default()
}
class GameView {
{static} show_check()
{static} show_end_score()
{static} show_score()
{static} show_life()
{static} format_answer()
show_name()
{static} show_instruction()
{static} show_example()
}
class GameController {
life
success
check_answer()
generate_answer_prompt()
}
}
'games
package "Games" <<Rectangle>> {
class ConjugateArticle {
n
nouns
noun
form
case
gender
conjart
load_nouns()
}
class ConjugateVerb {
verbs
verb
pronoun
conjverb
load_verbs()
}
class ConjugateAdjective {
adjectives
adjective
noun
form
case
gender
conjart
pronoun
conjverb
load_adjectives()
}
class TranslatePfVerbs {
n
pfverbs
pfverb
meaning
load_pfverbs()
{static} to_pfverb()
}
}
'menu
package "Menu MVC" <<Rectangle>> {
class Menu {
menu
}
class MenuView {
{static} exit_message()
}
class MenuController {
{static} run_item()
}
}
'play
package "Play MVC" <<Rectangle>> {
class Play {
games
}
class PlayView {
{static} format_options()
}
class PlayController{
{static} run_game()
}
}
'settings menu
package "Settings MVC" <<Rectangle>> {
class Settings {
settings
}
class SettingsView {
{static} format_options
{static} settings_saved()
}
class SettingsController {
set_setting()
update_prompt()
input_loop_set_setting()
}
}
abstract class Setting {
value
name
set_hint
options
{abstract} set_value()
}
'libraries
package imports <<Folder>> {
entity genderdeterminator
entity pattern
entity json
}
'compositions
Grammar --* ConjAdj
Grammar --* ConjArt
Grammar --* ConjVerb
Grammar --* Gender
'aggregations
'mvc
Controller --o "1" View
Controller --o "1" Model
GameController --o "1" GameView
GameController --o "1" Game
PlayController --o "1" PlayView
PlayController --o "1" Play
MenuController --o "1" MenuView
MenuController --o "1" Menu
SettingsController --o "1" SettingsView
SettingsController --o "1" Settings
'has many
Settings --o "*" Setting
Game --o "1" Grammar
Game --o "1" Database
Game --o "1" Settings
Menu --o "1" PlayController
Menu --o "1" SettingsController
Play --o "*" Game
'inheritance
'mvc
' Model ()- Game
' Model ()- Menu
' Model ()- Play
' Model ()- Settings
' View ()- GameView
' View ()- MenuView
' View ()- PlayView
' View ()- SettingsView
' Controller ()- GameController
' Controller ()- MenuController
' Controller ()- PlayController
' Controller ()- SettingsController
'implementations
'grammar
Gender <|.. GenderDet_Gender
Gender <|.. Pattern_Gender
ConjArt <|.. Lookup_Article
ConjAdj <|.. Pattern_ConjArt
ConjVerb <|.. Pattern_ConjVerb
'games
' Game <|.. ConjugateArticle
' Game <|.. ConjugateVerb
' Game <|.. ConjugateAdjective
' Game <|.. TranslatePfVerbs
Games ..|> Game
ConjugateAdjective --* ConjugateArticle
'settings
Setting <|.. MultipleChoice
Setting <|.. n_Options
Setting <|.. Life
' libraries
GenderDet_Gender --o genderdeterminator
Pattern_Gender --o pattern
Pattern_ConjArt --o pattern
Pattern_ConjVerb --o pattern
Lookup_Article --o json
Database --o json
hide empty members
@enduml | false | true | false | false | sequence |
d886bebdd95292a3176dfe8166f8f7784d37c240 | 6c1c7cd7bf6df648880c0676964502463f18fda5 | /src/main/java/View/Structure/Structure.plantuml | 984cb8760dbeb0f6233625211004939d0e8e8a97 | [] | no_license | yannickTilly/appliVisiteurCli | 978c0ee4f04bca36c12911c2b7bb477ed53275d8 | 407e183f3998825d96409eef530ed5d6656fe5b5 | refs/heads/master | 2022-12-11T17:56:20.251585 | 2020-05-19T11:24:35 | 2020-05-19T11:24:35 | 217,737,041 | 0 | 0 | null | 2022-11-15T23:31:18 | 2019-10-26T16:28:45 | Java | UTF-8 | PlantUML | false | false | 494 | plantuml | @startuml
title __STRUCTURE's Class Diagram__\n
namespace View.Structure {
class View.Structure.Prationner {
- id : long
- name : String
+ getId()
+ getName()
+ setId()
+ setName()
+ toString()
}
}
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 |
9be4af24405a18acbde4e28edf906ce84d68ce8f | 3b3fb4a4c3ac8e93cd8c879f426d7d6aba7b35ba | /src/creational/factory/pattern/factorypattern.puml | 479815da423243ff4523e91a9a649fafbbc1b793 | [] | no_license | bowersNick/DesignPatterns | 5dcb5f013657eeb9d5770093c029bc767bf08132 | 56fa9ca50f115636398f3a373c59278b90d03f6b | refs/heads/master | 2021-07-14T01:59:58.059296 | 2017-10-17T18:09:48 | 2017-10-17T18:09:48 | 106,039,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 272 | puml | @startuml
abstract class Product
class ConcreteProduct
abstract class Creator {
someOperation()
factoryMethod()
}
class ConcreteCreator {
factoryMethod()
}
Product <|-- ConcreteProduct
Creator <|-- ConcreteCreator
ConcreteProduct <-- ConcreteCreator
@enduml | false | true | false | false | class |
792c6ef5e54bc06ef2e693b2bd7c5af7700751e7 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-sakarkiv-entiteter-forenklet.puml | 74aba5328099c8d56507786ec3bc27407fa0416c | [] | 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 | 1,541 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam nodesep 180
class Arkivstruktur.Klasse <Arkivenhet>
class Arkivstruktur.Mappe <Arkivenhet>
class Arkivstruktur.Registrering <Arkivenhet>
class Arkivstruktur.Dokumentbeskrivelse <Arkivenhet>
class Sakarkiv.Saksmappe <Mappe> #pink
class Sakarkiv.Presedens #pink
class Sakarkiv.Journalpost <Registrering> #pink
class Sakarkiv.Avskrivning #pink
class Sakarkiv.Arkivnotat #pink
class Sakarkiv.Dokumentflyt #pink
Arkivstruktur.Klasse "+overklasse 0..1" o--> "+underklasse 0..*" Arkivstruktur.Klasse
Arkivstruktur.Klasse "+klasse 0..1" o--> "+mappe 0..*" Arkivstruktur.Mappe
Arkivstruktur.Mappe "+overmappe 0..1" o--> "+undermappe 0..*" Arkivstruktur.Mappe
Arkivstruktur.Mappe <|-- Sakarkiv.Saksmappe
Arkivstruktur.Klasse "+sekundaerklassifikasjon 0..*" <--o Sakarkiv.Saksmappe
Sakarkiv.Saksmappe "+sak 0..*" o--> "+presedens 0..*" Sakarkiv.Presedens
Arkivstruktur.Mappe "+mappe 0..1" o--> "+registrering 0..*" Arkivstruktur.Registrering
Arkivstruktur.Klasse "+klasse 0..1" o--> "+registrering 0..*" Arkivstruktur.Registrering
Arkivstruktur.Registrering <|-- Sakarkiv.Journalpost
Sakarkiv.Presedens "+presedens 0..*" <--o "+journalpost 0..*" Sakarkiv.Journalpost
Sakarkiv.Journalpost "+avskrivning 0..*" *--> Sakarkiv.Avskrivning
Sakarkiv.Dokumentflyt "+dokumentflyt 0..*" <--* Sakarkiv.Journalpost
Sakarkiv.Dokumentflyt "+dokumentflyt 0..*" <--* Sakarkiv.Arkivnotat
Arkivstruktur.Registrering "+registrering 1..*" o--> "+dokumentbeskrivelse 0..*" Arkivstruktur.Dokumentbeskrivelse
@enduml
| false | true | false | false | class |
ea6389c9ba500c1c15ce5acc32d1514568d4c879 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderDeletedMessagePayload.puml | 855af7b433895cbe148ff533290946e76aff04cf | [] | 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 | 454 | 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 OrderDeletedMessagePayload [[OrderDeletedMessagePayload.svg]] extends OrderMessagePayload {
type: String
order: [[Order.svg Order]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
5d3b2d58c7e001ab55041a1576c402dae37b13d7 | 984c892cd906a3d06ad5c696acff9dd2b91cad0b | /resources/diagram.puml | 2972de288b5540d6cfdfb32a8516d06f4ac75292 | [
"MIT"
] | permissive | graphql-services/oauth | c306236c9558023e78850064c6b74f797dcb7bdd | 607283d522b8f846ecbadbde829ee653c48c585d | refs/heads/master | 2021-07-12T02:25:48.840551 | 2020-01-31T16:30:06 | 2020-01-31T16:30:06 | 169,931,502 | 3 | 1 | MIT | 2020-01-31T16:30:07 | 2019-02-10T01:15:30 | Go | UTF-8 | PlantUML | false | false | 1,011 | puml | @startuml
:user: as user
[Client] as client
[Resource Owner] as api
package "Auth" {
frame "Authorization" {
[Authorization] as authorization
[IAM] as iam
[Token validator] as validator
note bottom of iam
Service for providing
identity (user), groups and policies
end note
note top of validator
Custom implementation for scope
validation, custom token payload etc.
end note
}
frame "Authentication" {
[Authentication] as authentication
database "DB" {
[Credentials] as credentials
}
authentication <-> credentials
authentication --> [Google]
authentication --> [Facebook]
authentication --> [Github]
authentication --> [Other]
}
}
user --> client
api <- client : Access token
client <--> authorization : Authorize (access token)
authorization --> authentication
authorization --> validator
validator -> iam
@enduml | false | true | false | false | sequence |
c23ace47441bd09ab0245656d18be18003e048a3 | 1a4425d261b5b2b4b838ace7faaea783c3d23529 | /use-cases/use-case-4-diagram.puml | 042bfec3d08382de062ec6320e0a4afb2e6bf2e1 | [
"Apache-2.0"
] | permissive | WezYoung/SEmethodsCoursework | 3d1c7e681d8056e6361a964f96dfc07cd534b630 | 4003f4236809909f1ef91b44560106353648a1ce | refs/heads/master | 2020-12-20T08:16:16.145665 | 2020-03-16T16:06:58 | 2020-03-16T16:06:58 | 236,011,641 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 307 | puml | @startuml
actor HR as "Statistic Analyst"
rectangle Database
rectangle "Country Program " {
usecase UC1 as "Gets (N) from user"
usecase UC2 as "Get top (N) Cities by size"
usecase UCa as "Displays report"
HR - UC1
UC1 - UC2
UC2 ..> UCa : include
UC2 - Database
}
@enduml | false | true | false | false | usecase |
f3f1cd8e5644c5072cab69e7aee28300c66a0c25 | 2b08955e13aee2fa092a7bb75f0d642a3e821fc9 | /src/main/java/org/huyong/my/desi/SimpleFactoryPattern.puml | c274ea768aca1c3f8c21398c20aee8f31896bbaa | [] | no_license | huyong1023/my | c720672779ad1450996fbe31c7281a2149178247 | f94eb36558172613fd236691fd01f56467e8968b | refs/heads/master | 2023-01-28T15:20:33.176092 | 2023-01-05T02:40:40 | 2023-01-05T02:40:40 | 136,870,750 | 3 | 2 | null | 2022-12-16T02:41:23 | 2018-06-11T03:37:39 | Java | UTF-8 | PlantUML | false | false | 389 | puml | @startuml
package SimpleFactory {
interface Product {
use()
}
class ConcreteProductA {
use()
}
class ConcreteProductB{
use()
}
Product <|.. ConcreteProductA
Product <|.. ConcreteProductB
class Factory{
createProduct(String )
}
Factory ..> ConcreteProductA
Factory ..> ConcreteProductB
}
@enduml | false | true | false | false | class |
84f6691c355bee7b59fce4df16aa35ee677e6e93 | 23c3a2fec53767b7f8c998efb81846b8a6873d2b | /doc/scraiping-flow.puml | 87b675e185a64aca6384793546f381de7c066eb9 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | zonbitamago/qiita-scraiping | f962f0fbe926245bd0a33e213d33daabeebaf497 | 12f10d564094fdc9382d077f8ab17568614ffbb0 | refs/heads/master | 2023-02-02T04:18:18.148245 | 2020-08-03T20:34:08 | 2020-08-03T20:34:08 | 145,262,998 | 2 | 0 | MIT | 2023-01-09T11:24:21 | 2018-08-19T01:00:34 | JavaScript | UTF-8 | PlantUML | false | false | 741 | puml | @startuml
title Qiita Scraiping Flow
participant "Google Apps Script" as script
participant Glitch as Glitch
participant "Qiita API" as qiita
box "Firebase" #F5D3CD
participant "Cloud Functions" as functions
participant "Cloud Firestore" as store
end box
autonumber
script -> Glitch:request
Glitch -> qiita:request getAPI
Glitch <- qiita:response getAPI
Glitch -> functions:request
functions -> store:regist response
note over script
Google Apps Script
__https://www.google.com/script/start/__
Glitch
__https://glitch.com/__
Qiita API
__https://qiita.com/api/v2/docs__
Cloud Functions
__https://firebase.google.com/products/functions/__
Cloud Firestore
__https://firebase.google.com/products/firestore/__
end note
@enduml | false | true | false | false | sequence |
70443e252fa2ff9a236fc615893ad593d83a8b71 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Actors/Application-Developer/UseCases.puml | 27cc05a6159dafdb50c87c0ad6d76e9cc02327d9 | [] | 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 | 468 | puml | @startuml
left to right direction
:Application Developer: as Dev
rectangle "Application Manager" #lightblue {
(Create an Application) as CA
(Launch application\nin an environment) as LAE
(Run Command) as RC
(View Service and\nApplication Processes) as VSAP
(Kill Application\nand Services) as KAS
(Get Logs) as GL
(Deploy an Application) as DA
}
Dev --> CA
Dev --> LAE
Dev --> RC
Dev --> VSAP
Dev --> KAS
Dev --> GL
Dev --> DA
@enduml
| false | true | false | false | uml-unknown |
013c7881e173950c9f76421f2015fff2ba0b3f97 | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/lib/utility/Application.Utility/Startup/Logging.puml | f62b65493a5bcedfece69f217ee41f36da757a1d | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 391 | puml | @startuml
class Logging <<static>> {
+ {static} CreateLogger() : void
+ {static} AddLogging(loggerFactory:ILoggerFactory) : ILoggerFactory
+ {static} AddTracing(services:IServiceCollection, setupAction:Action<JaegerTracingOptions>) : IServiceCollection
+ {static} ConfigureJaegerTracing(services:IServiceCollection, setupAction:Action<JaegerTracingOptions>) : void
}
@enduml
| false | true | false | false | class |
f3137301646bbc886f1f2bd8d995f7651d732698 | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/lib/utility/Application.Utility/Middleware/RequestMiddleWare.puml | e71c606b56dacefbc787966a81c819bb816633ea | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 399 | puml | @startuml
class RequestMiddleware {
- <<readonly>> _next : RequestDelegate
- _logger : ILogger<RequestMiddleware>
+ RequestMiddleware(next:RequestDelegate, loggerFactory:ILoggerFactory)
+ <<async>> Invoke(httpContext:HttpContext) : Task
}
class RequestMiddlewareExtensions <<static>> {
+ {static} UseRequestMiddleware(builder:IApplicationBuilder) : IApplicationBuilder
}
@enduml
| false | true | false | false | class |
eed42006e30b0613c7051ec18ba83a205e2ac490 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/ast/parameter.puml | 495934928b1dad6924b6b87cd1069784d1f428fe | [
"MIT"
] | permissive | tizuck/scala-uml-diagrams | 4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b | c5c432132bff9df7ab60352f0e715583d9d51973 | refs/heads/main | 2023-03-01T02:44:15.288794 | 2021-02-03T22:26:55 | 2021-02-03T22:26:55 | 306,687,367 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 823 | puml |
abstract class uml.StereotypeElement <<trait>>
abstract class uml.StereotypeElement <<trait>>
abstract class uml.NamedElement <<trait>>
class uml.Parameter << caseclass >>{
<<ctor pos=1>> name : String
<<ctor pos=2>> paramType : String
<<ctor pos=3>> stereotype : List<Stereotype>
-- <<scalaclass>> --
isSealed
}
uml.StereotypeElement <|-- uml.Parameter
uml.NamedElement <|-- uml.Parameter
hide circle
skinparam defaultFontName Source Code Pro
skinparam ClassStereotypeFontColor #1b1f23
skinparam class {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #6f42c1
}
skinparam note {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #d73a49
}
skinparam stereotype {
FontColor #d73a49
} | false | true | false | false | class |
9404777188f05071824c3469adef371a0fb2ae82 | aa39d486fc1b3961b318eee9993157059051f1cc | /diagram/repository.puml | 21e0c5ac4a225fd5344b690aa9bbba0d935a796e | [] | no_license | y100143239/flat-kettle | 0e4353d69a8e585060d3627c686aaddd9dc186b0 | e82f0a8f189f550d4d0bc4d070a7d778d7fc54d6 | refs/heads/master | 2020-07-26T10:07:50.960526 | 2019-09-06T12:55:27 | 2019-09-06T12:55:27 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,548 | puml | @startuml
class KettleObject{
long id;
String name;
String description;
}
class OdsLogJob {
int idJob;
String channelId;
String jobname;
String status;
BigDecimal linesRead;
BigDecimal linesWritten;
BigDecimal linesUpdated;
BigDecimal linesInput;
BigDecimal linesOutput;
BigDecimal linesRejected;
BigDecimal errors;
Date startdate;
Date enddate;
Date logdate;
Date depdate;
Date replaydate;
String logField;
}
class OdsLogJobChannel {
int idBatch;
String channelId;
Date logDate;
String loggingObjectType;
String objectName;
String objectCopy;
String repositoryDirectory;
String filename;
String objectId;
String objectRevision;
String parentChannelId;
String rootChannelId;
}
class OdsLogJobItem {
int idBatch;
String channelId;
Date logDate;
String transname;
String stepname;
BigDecimal linesRead;
BigDecimal linesWritten;
BigDecimal linesUpdated;
BigDecimal linesInput;
BigDecimal linesOutput;
BigDecimal linesRejected;
BigDecimal errors;
boolean result;
BigDecimal nrResultRows;
BigDecimal nrResultFiles;
String logField;
int copyNr;
}
class OdsLogTrans {
int idBatch;
String channelId;
String transname;
String status;
BigDecimal linesRead;
BigDecimal linesWritten;
BigDecimal linesUpdated;
BigDecimal linesInput;
BigDecimal linesOutput;
BigDecimal linesRejected;
BigDecimal errors;
Date startdate;
Date enddate;
Date logdate;
Date depdate;
Date replaydate;
String logField;
}
class OdsLogTransChannel {
int idBatch;
String channelId;
Date logDate;
String loggingObjectType;
String objectName;
String objectCopy;
String repositoryDirectory;
String filename;
String objectId;
String objectRevision;
String parentChannelId;
String rootChannelId;
}
class OdsLogTransMetrics {
int idBatch;
String channelId;
Date logDate;
Date metricsDate;
String metricsCode;
String metricsDescription;
String metricsSubject;
String metricsType;
BigDecimal metricsValue;
}
class OdsLogTransRun {
int idBatch;
int seqNr;
Date logdate;
String transname;
String stepname;
int stepCopy;
BigDecimal linesRead;
BigDecimal linesWritten;
BigDecimal linesUpdated;
BigDecimal linesInput;
BigDecimal linesOutput;
BigDecimal linesRejected;
BigDecimal errors;
BigDecimal inputBufferRows;
BigDecimal outputBufferRows;
}
class OdsLogTransStep {
int idBatch;
String channelId;
Date logDate;
String transname;
String stepname;
int stepCopy;
BigDecimal linesRead;
BigDecimal linesWritten;
BigDecimal linesUpdated;
BigDecimal linesInput;
BigDecimal linesOutput;
BigDecimal linesRejected;
BigDecimal errors;
}
class RCluster {
BigDecimal idCluster;
String name;
String basePort;
String socketsBufferSize;
String socketsFlushInterval;
boolean socketsCompressed;
boolean dynamicCluster;
}
class RClusterSlave {
BigDecimal idClusterSlave;
int idCluster;
int idSlave;
}
class RCondition {
BigDecimal idCondition;
int idConditionParent;
boolean negated;
String operator;
String leftName;
String conditionFunction;
String rightName;
int idValueRight;
}
class RDatabase {
BigDecimal idDatabase;
String name;
int idDatabaseType;
int idDatabaseContype;
String hostName;
String databaseName;
int port;
String username;
String password;
String servername;
String dataTbs;
String indexTbs;
}
class RDatabaseAttribute {
BigDecimal idDatabaseAttribute;
int idDatabase;
String code;
String valueStr;
}
class RDatabaseContype {
BigDecimal idDatabaseContype;
String code;
String description;
}
class RDatabaseType {
BigDecimal idDatabaseType;
String code;
String description;
}
class RDependency {
BigDecimal idDependency;
int idTransformation;
int idDatabase;
String tableName;
String fieldName;
}
class RDirectory {
BigDecimal idDirectory;
int idDirectoryParent;
String directoryName;
}
class RElement {
BigDecimal idElement;
int idElementType;
String name;
}
class RElementAttribute {
BigDecimal idElementAttribute;
int idElement;
int idElementAttributeParent;
String attrKey;
String attrValue;
}
class RElementType {
BigDecimal idElementType;
int idNamespace;
String name;
String description;
}
class RJob {
BigDecimal idJob;
int idDirectory;
String name;
String description;
String extendedDescription;
String jobVersion;
int jobStatus;
int idDatabaseLog;
String tableNameLog;
String createdUser;
Date createdDate;
String modifiedUser;
Date modifiedDate;
boolean useBatchId;
boolean passBatchId;
boolean useLogfield;
String sharedFile;
}
class RJobAttribute {
BigDecimal idJobAttribute;
int idJob;
int nr;
String code;
BigDecimal valueNum;
String valueStr;
}
class RJobHop {
BigDecimal idJobHop;
int idJob;
int idJobentryCopyFrom;
int idJobentryCopyTo;
boolean enabled;
boolean evaluation;
boolean unconditional;
}
class RJobLock {
BigDecimal idJobLock;
int idJob;
int idUser;
String lockMessage;
Date lockDate;
}
class RJobNote {
int idJob;
int idNote;
}
class RJobentry {
BigDecimal idJobentry;
int idJob;
int idJobentryType;
String name;
String description;
}
class RJobentryAttribute {
BigDecimal idJobentryAttribute;
int idJob;
int idJobentry;
int nr;
String code;
double valueNum;
String valueStr;
}
class RJobentryCopy {
BigDecimal idJobentryCopy;
int idJobentry;
int idJob;
int idJobentryType;
int nr;
int guiLocationX;
int guiLocationY;
boolean guiDraw;
boolean parallel;
}
class RJobentryDatabase {
int idJob;
int idJobentry;
int idDatabase;
}
class RJobentryType {
BigDecimal idJobentryType;
String code;
String description;
}
class RLog {
BigDecimal idLog;
String name;
int idLoglevel;
String logtype;
String filename;
String fileextention;
boolean addDate;
boolean addTime;
int idDatabaseLog;
String tableNameLog;
}
class RLoglevel {
BigDecimal idLoglevel;
String code;
String description;
}
class RNamespace {
BigDecimal idNamespace;
String name;
}
class RNote {
BigDecimal idNote;
String valueStr;
int guiLocationX;
int guiLocationY;
int guiLocationWidth;
int guiLocationHeight;
String fontName;
int fontSize;
boolean fontBold;
boolean fontItalic;
int fontColorRed;
int fontColorGreen;
int fontColorBlue;
int fontBackGroundColorRed;
int fontBackGroundColorGreen;
int fontBackGroundColorBlue;
int fontBorderColorRed;
int fontBorderColorGreen;
int fontBorderColorBlue;
boolean drawShadow;
}
class RPartition {
BigDecimal idPartition;
int idPartitionSchema;
String partitionId;
}
class RPartitionSchema {
BigDecimal idPartitionSchema;
String name;
boolean dynamicDefinition;
String partitionsPerSlave;
}
class RRepositoryLog {
BigDecimal idRepositoryLog;
String repVersion;
Date logDate;
String logUser;
String operationDesc;
}
class RSlave {
BigDecimal idSlave;
String name;
String hostName;
String port;
String webAppName;
String username;
String password;
String proxyHostName;
String proxyPort;
String nonProxyHosts;
boolean master;
}
class RStep {
BigDecimal idStep;
int idTransformation;
String name;
String description;
int idStepType;
boolean distribute;
int copies;
int guiLocationX;
int guiLocationY;
boolean guiDraw;
String copiesString;
}
class RStepAttribute {
BigDecimal idStepAttribute;
int idTransformation;
int idStep;
int nr;
String code;
BigDecimal valueNum;
String valueStr;
}
class RStepDatabase {
int idTransformation;
int idStep;
int idDatabase;
}
class RStepType {
BigDecimal idStepType;
String code;
String description;
String helptext;
}
class RTransAttribute {
BigDecimal idTransAttribute;
int idTransformation;
int nr;
String code;
BigDecimal valueNum;
String valueStr;
}
class RTransCluster {
BigDecimal idTransCluster;
int idTransformation;
int idCluster;
}
class RTransHop {
BigDecimal idTransHop;
int idTransformation;
int idStepFrom;
int idStepTo;
boolean enabled;
}
class RTransLock {
BigDecimal idTransLock;
int idTransformation;
int idUser;
String lockMessage;
Date lockDate;
}
class RTransNote {
int idTransformation;
int idNote;
}
class RTransPartitionSchema {
BigDecimal idTransPartitionSchema;
int idTransformation;
int idPartitionSchema;
}
class RTransSlave {
BigDecimal idTransSlave;
int idTransformation;
int idSlave;
}
class RTransStepCondition {
int idTransformation;
int idStep;
int idCondition;
}
class RTransformation {
BigDecimal idTransformation;
int idDirectory;
String name;
String description;
String extendedDescription;
String transVersion;
int transStatus;
int idStepRead;
int idStepWrite;
int idStepInput;
int idStepOutput;
int idStepUpdate;
int idDatabaseLog;
String tableNameLog;
boolean useBatchid;
boolean useLogfield;
int idDatabaseMaxdate;
String tableNameMaxdate;
String fieldNameMaxdate;
double offsetMaxdate;
double diffMaxdate;
String createdUser;
Date createdDate;
String modifiedUser;
Date modifiedDate;
int sizeRowset;
}
class RUser {
BigDecimal idUser;
String login;
String password;
String name;
String description;
boolean enabled;
}
class RValue {
BigDecimal idValue;
String name;
String valueType;
String valueStr;
boolean isNull;
}
class RVersion {
BigDecimal idVersion;
int majorVersion;
int minorVersion;
Date upgradeDate;
boolean isUpgrade;
}
'abstract class AbstractList
'abstract AbstractCollection
'interface List
'interface Collection
'
'List <|-- AbstractList
'Collection <|-- AbstractCollection
'
'Collection <|- List
'AbstractCollection <|- AbstractList
'AbstractList <|-- ArrayList
'
'class ArrayList {
'Object[] elementData
'size()
'}
'
'enum TimeUnit {
'DAYS
'HOURS
'MINUTES
'}
@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.