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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
30c7c4380bf2689971eea63df18e9d07075c1e24
|
20591fcca4e64599893f88dd1a554e4333477fe2
|
/library/src/main/resources/mg/jaona/ia/perceptron multicouche.puml
|
16d69366c56b6d7b81b0c713066d737cf9c91cfb
|
[] |
no_license
|
rajaomariajaona/java-algo-datastructure-ia
|
de844b120dd28b9a6ee74d2d6330020ae1ba70be
|
92672eaf75418687b96cbf9cfd2e77cd9170d1a0
|
refs/heads/master
| 2023-05-14T16:30:33.693628
| 2021-06-07T10:28:29
| 2021-06-07T10:28:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 515
|
puml
|
@startuml
class PerceptronMultilayer {
- Integer nbPrototype;
- List<Vertex> input;
- List<Vertex> hidden;
- List<Vertex> output;
- Graph<Float> g
+ computeStructure();
+ initializeWeight();
- Float forwardPropagation(List<Float> input);
- backPropagation(Float expected, Float actual);
}
class Structure{
- Integer nbHiddenLayer
- Integer nbInputLayer
- Integer nbOutputLayer
}
class SigmoidFunction{
float compute(float x);
flot prime((float x);
}
@enduml
| false
| true
| false
| false
|
class
|
54ef99ae9448ddf54a1522ec814b725798a5be2a
|
2560aaaae8e5559e8e43e737ba98a4d71a490381
|
/Game/diagrammes de classes/DiagrammeDeClasse_new.puml
|
14a8d5b3ecb92b04c1ed1af5c327ead55f1204ca
|
[] |
no_license
|
bleubidon/RobotTurtles
|
b1746b215d6d987ee24f65e9ecf6099239f0c6dd
|
1c6f83e7a1f2efca93d8a1b844248ee07d16d5af
|
refs/heads/master
| 2021-05-24T13:24:52.699551
| 2020-02-26T15:36:34
| 2020-02-26T15:36:34
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,928
|
puml
|
@startuml
'On ommet les getters et setters
'src
class Main {
logiqueDeJeu: LogiqueDeJeu
+ static main(String[] args): void
}
class LogiqueDeJeu {
- monInterface: Interface
- nombreJoueurs: int
- ordreJoueurs: ArrayList<Integer>
- modeJeu: String
- modeBug: boolean
- nombreJoueursGagne: int
- joueurs: ArrayList<Joueur>
- positionsInitialesJoueurs: ArrayList<Position>
- joyaux: ArrayList<Joyau>
- plateau: Plateau
- joueurCourant: Joueur
- gameOver: boolean
- initialiserPositionsPlateauOrdrepassage(): void
- initialiserAttributsJoueurs(int): void
~ initialiserPartie(): void
- reInitialiserPartie(): void
- jouerManche(): void
~ lancerPartie(): void
- initFocusJoueur(): int
}
Main -- LogiqueDeJeu
class Plateau {
- taillePlateau: int
- plateau: String[][]
- casesAccessibles: ArrayList<ArrayList<Integer>>
- numerosTortuesVerifiees: ArrayList<Integer>
- aucuneTortueBloquee: boolean
~ initPlateau(): void
- getRecursiveCasesAdjacentesLibres(ArrayDeque<int[]>, boolean): ArrayDeque<int[]>
- getCasesAccessibles(int[], boolean): ArrayList<ArrayList<Integer>>
~ placementBloquant(int[]): boolean
}
Plateau -- LogiqueDeJeu
class Case {
- x: int
- y: int
- contenu: String
}
Case --* Plateau
class Joueur {
- numeroJoueur: int
- classement: int
- carteBug: boolean
- subiBug: boolean
- score: int
- tortue: Tortue
- deck: Deck
- cartesMain: CartesMain
- programme: Programme
- mursDePierre: int
- mursDeGlace: int
- action: String
~ reInitCartes(): void
~ placerMur(Obstacle): boolean
~ completerPrgm(Carte): void
~ executerPrgm(): void
~ subirBug(): void
~ terminerTour(): void
}
Joueur -- LogiqueDeJeu
'src.Tuiles
abstract class Tuile {
# position: Position
# getCaseSuivante(): Case
}
Tuile -- LogiqueDeJeu
Tuile --* Plateau
enum Orientations {
UP
LEFT
DOWN
RIGHT
+ static getOrientationSuivante(Orientations): Orientations
+ static getOrientationPrecedente(Orientations): Orientations
}
class Position {
- x: int
- y: int
- orientation: Orientations
}
Position o-- Tuile
Position -- Orientations
class Tortue {
- reprTortues: HashMap<Orientations, String>
- positionDepart: Position
- numeroJoueur: int
- retourPositionDepart(): void
- deplacerTortue(Tortue, Position): void
+ avancer(): void
+ tournerHoraire(): void
- faireDemiTour(): void
+ tournerAntiHoraire(): void
+ lancerLaser(): void
+ getReprTortue(Tortue, Orientations): String
}
Tortue --|> Tuile
Tortue --* Joueur
class Joyau {
}
Joyau --|> Tuile
class Obstacle {
- typeObstacle: String
- coordsObstacle: int[]
}
Obstacle --|> Tuile
'src.Cartes
enum TypeCarte {
CARTE_BLEUE,
CARTE_JAUNE,
CARTE_VIOLETTE,
LASER,
NOT_A_CARD
}
class Carte {
- typeCarte: TypeCarte
+ @Override equals(Object): boolean
}
Carte -- TypeCarte
class Deck {
- deck: ArrayList<Carte>
~ donnerUneCarte(Joueur): Carte
}
Deck - CartesMain
Deck --* Joueur
Deck -- Carte
class CartesMain {
- cartesMain: ArrayList<Carte>
+ empty(): boolean
+ tirerCarteDuDeck(Joueur, int): void
- ajouterCarte(Carte carte): void
+ retirerCarte(TypeCarte): Carte
}
CartesMain - Programme
CartesMain --* Joueur
CartesMain -- Carte
class Programme {
- programme: ArrayDeque<Carte>
+ empty(): boolean
+ enfilerCarte(Carte): void
+ defilerCarte(boolean): Carte
}
Programme - Deck
Programme --* Joueur
Programme -- Carte
'src.Interface
interface Interface {
+ afficherPlateau(): void
+ ...()
}
Interface -- LogiqueDeJeu
class InterfaceGraphique {
+ afficherPlateau(): void
+ ...()
}
InterfaceGraphique ..|> Interface
class InterfaceConsole {
+ afficherPlateau(): void
+ ...()
}
InterfaceConsole ..|> Interface
@enduml
| false
| true
| false
| false
|
class
|
829ce0278774bc909f8833b1666246581da418b7
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ShoppingListReference.puml
|
43755b37cf21cbbf9bfdfd9d25512da007fe41ba
|
[] |
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
| 526
|
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 ShoppingListReference [[ShoppingListReference.svg]] extends Reference {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[ShoppingList.svg ShoppingList]]
}
interface Reference [[Reference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
}
@enduml
| false
| true
| false
| false
|
class
|
60868048d77f7d5a94fccd1d7b12cfea204b8540
|
a26bbd033192f4ea245a6dd3f166976b39459752
|
/3_Documentazione/design/be/acc.puml
|
6a5137afb00b37475646f320702afedd67b76fdd
|
[] |
no_license
|
giuliobosco/freqline
|
fdc673e09e4cfc96dc67a759788120b81fdbae46
|
e94256cc349797447cf414bbe4267ef45c89723e
|
refs/heads/master
| 2022-04-10T16:22:55.993289
| 2020-04-06T13:28:19
| 2020-04-06T13:28:19
| 206,082,972
| 3
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 5,226
|
puml
|
@startuml
skinparam classAttributeIconSize 0
class Thread {
}
package ch.giuliobosco.freqline.acc {
class AccGenerator{
+ {static} String KEY_C = "AAAAA"
+ {static} void turnGeneratorOn(Connection connection, String keyC, SerialThread serialThread)
+ {static} void turnGeneratorOff(Connection connection, String keyC, SerialThread serialThread)
+ {static} void turnGeneratorOn(Connection connection, String, long timer, SerialThread serialThread)
+ {static} void updateDecibel(Connection connection, int userId, int decibel, SerialThread serialThread)
- {static} void updateFrequence(Connection connection, int userId, int frequence, SerialThread serialThread)
- {static} void initAccStatus(Connection connection, SerialThread serailThread)
- {static} void initAccDecibels(Connection connection, SerialThread serialThread)
- {static} void initAccFrequence(Connection connection, SerialThread serialThread)
+ {static} void initAcc(Connection connection, SerialThread)
}
class SerialCommunication {
+ {static} byte[] EMPTY_BYTE_ARRAY
+ {static} byte INIT 42
+ {static} byte COMMAND_INIT 43
+ {static} byte RESPONSE_INIT 45
+ {static} byte END 10
+ {static} byte TO_BYTE 0x000000FF
- byte sequenceType
- byte sequence
- byte[] message
+ SerialCommunication(byte sequenceType, byte sequence, byte[] message)
+ SerialCommunication(boolean command, byte sequence, byte[] message)
+ SerialCommunication()
+ byte getSequenceType()
+ byte getSequence()
+ byte[] getMessage()
+ void setMessage(byte[] message)
# byte toByteUnsigned(int b)
# byte[] arrayPush(byte[] bytes, byte b)
# byte[] buildBytesToWrite()
+ void readUntilEnd(InputStream in)
+ void write(OutputStream out)
+ boolean isSameSequence(SerialCommunication serialCommunication)
+ boolean isSameSequenceType(SerialCommunication serialCommunication)
+ boolean isSame(SerialCommunication serialCommunication)
+ boolean equals(Object obj)
}
class SerialCommand {
+ {static} byte NULL_BYTE 100, \n ECHO_BYTE 69, \n FREQUENCE_BYTE 102, \n GENERATOR_OFF_BYTE 103, \n GENERATOR_ON_BYTE 71, \n DECIBEL_BYTE 100, \n MIC_BYTE 109, \n REMOTE_BYTE 114
+ {static} SerialCommand NULL
+ {static} SerialCommand ECHO
+ {static} SerialCommand FREQUENCE
+ {static} SerialCommand GENERATOR_ON
+ {static} SerialCommand GENERATOR_OFF
+ {static} SerialCommand DECIBEL
+ {static} SerialCommand MIC
+ {static} SerialCommand REMOTE
+ SerialCommand(byte command, byte[] message)
+ SerialCommand(byte command)
+ SerialCommand()
+ byte getCommand()
+ {static} SerialResponse loadCommand(SerialCommunication serialCommunication)
}
SerialCommunication <|-- SerialCommand
class SerialResponse {
+ {static} byte OK_BYTE 111, ERROR_BYTE 101
+ {static} SerialResponse OK, ERROR
+ SerialResponse(byte response, byte[] message)
+ SerialResponse(byte response)
+ SerialResponse()
+ byte getResponse()
}
SerialCommunication <|-- SerialResponse
interface SerialInputCommand {
SerialResponse buildResponse();
}
class SerialEchoCommand {
+ SerialEchoCommand(byte[] message)
+ SerialEchoCommand(String message)
+ SerialEchoCommand()
+ void setMessage(String message)
}
SerialCommand <|-- SerialEchoCommand
SerialInputCommand <|.. SerialEchoCommand
class SerialMicCommand {
+ SerialMicCommand(SerialThread serialThread)
}
SerialCommand <|-- SerialMicCommand
SerialInputCommand <|.. SerialMicCommand
SerialMicCommand o-- SerialThread
class SerialRemoteCommand {
+ SerialRemoteCommand(SerialThread serialThread)
}
SerialCommand <|-- SerialRemoteCommand
SerialInputCommand <|.. SerialRemoteCommand
SerialRemoteCommand o-- SerialThread
class SerialNullCommand {
+ SerialNullCommand()
}
SerialCommand <|-- SerialNullCommand
SerialInputCommand <|.. SerialNullCommand
class SerialThread {
+ {static} String COM_NAME "Arduino"
+ {static} int TIMEOUT 100000000
- SerialPort serialPort
+ SerialThread()
- void searchArduino()
- void openSerialPort()
- void checkSerialCommunication()
- void readCommandWriteResponse()
- void writeCommandReadResponse()
- void writeOnSerial(SerialCommunication serialCommunication)
- void removeCommand(SerialCommand serialCommand)
+ addCommand(SerialCommand serialCommand)
- void setupInitCommands()
+ run()
}
SerialThread "ArrayList" o-- SerialCommand
Thread <|-- SerialThread
class MicThread {
- long timer
- Connection connection
+ MicThread(SerialThread serialThread, Connection connection, long timer)
+ void run()
}
Thread <|-- MicThread
MicThread o-- SerialThread
}
@enduml
| false
| true
| false
| false
|
class
|
9ec6284e4c8d5b3a3b03b84953ef9f8a881f161a
|
b235754dfb306820fb91f9ec32e4f4467fa6f9d6
|
/docs/img/overview.puml
|
6184b2d77dc553b07c15300ecf0d55aaa2eb3068
|
[
"Apache-2.0"
] |
permissive
|
adorsys/keystore-management
|
30a6a601a5f2cf70532f7761ce75753ba9fca8fe
|
8c7f7529638da7d11cc2f0b08fbd87cc8a06d482
|
refs/heads/develop
| 2023-09-03T17:50:02.631788
| 2023-07-12T12:42:14
| 2023-07-12T12:42:14
| 216,526,613
| 15
| 8
|
Apache-2.0
| 2023-09-06T11:06:01
| 2019-10-21T09:16:28
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 723
|
puml
|
@startuml
skinparam ranksep 20
skinparam nodesep 100
node "Security provider specific (Adapter)" as SPS {
[java.KeyStore]
[KeyStorage]
[Config]
}
node "Generic" as G {
[KeyGenerator]
[KeySetTemplate]
[KeySet]
[KeySetView]
[AliasView]
[KeyView]
}
KeySetTemplate --> KeyGenerator :accepts
note left
Uses generic interfaces
that transfer calls to security provider
so technically is adapter-specific
end note
KeyGenerator --> KeySet :produces
KeySet --> KeyStorage :build
Config -up-> KeyStorage
KeySet --> KeySetView :asView
java.KeyStore -> KeyStorage :load
KeyStorage --> java.KeyStore :save
KeyStorage --> KeySetView :asView
KeySetView --> AliasView
KeySetView --> KeyView
@enduml
| false
| true
| false
| false
|
sequence
|
8437b4dc615c9b3f88f2cefc9edfb837d5c1747f
|
611d84c7ba4dd20baa8582353030ad115d95e446
|
/PlantUML/clientgraphql.plantuml
|
47020c7b9423ace90e1e1d30849a921ea4b6dee0
|
[] |
no_license
|
bendotto/business-operations-framework-docs
|
7de699102e4b43d4b4bdfe522d81f629c2c19264
|
ac8d60db648d6ab51a019f50c6228952a2445736
|
refs/heads/main
| 2023-08-03T03:30:23.859728
| 2021-09-28T07:31:59
| 2021-09-28T07:31:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,231
|
plantuml
|
@startuml
actor Client as client
participant "Identity & Key Management" as wso2
boundary "Ory Oathkeeper" as oathkeeper
participant "Ory Keto" as keto
participant "BC Operational API" as backend
client -> oathkeeper : request graphql api
oathkeeper -> wso2 : introspect token
alt valid bearer token
wso2 -> oathkeeper : returns subject + claims
oathkeeper -> keto : verify subject permission on API
alt authorized
keto -> oathkeeper : authorized
oathkeeper -> backend : forward request
backend -> keto : check permissions for requested resources
alt has permissions on resources
keto -> backend : authorized
backend -> oathkeeper : respond
oathkeeper -> client : respond
else does not have permissions on resources
keto -> backend : not authorized
backend -> oathkeeper : 403
oathkeeper -> client : 403
end
else not authorized
keto -> oathkeeper : unauthorized
oathkeeper -> client : 403
end
else no valid bearer token
wso2 -> oathkeeper : nope
oathkeeper -> client : 401
client -> wso2 : client credentials grant
wso2 -> client : access token
client -> oathkeeper : request graphql api
note right: now we're back at the top
end
@enduml
| false
| true
| false
| false
|
sequence
|
c702eb80b5979a1aa1c5b2e88ed428ac0fe741a7
|
91678f027f1da807dfe4c113028f331f458c3a3d
|
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-content-importexport.puml
|
440a92c9d9c5258c0df2f33a60f09e2670c8ca95
|
[
"MIT",
"LicenseRef-scancode-generic-cla"
] |
permissive
|
amtee/platform
|
fd4b863a98c4302a26782486d173c437dfa98baa
|
3518811b02bcfb746abb8553ae8e5ac6f15338c0
|
refs/heads/trunk
| 2023-08-20T03:41:00.473175
| 2021-09-27T11:20:36
| 2021-09-27T11:20:36
| 410,864,620
| 1
| 0
|
MIT
| 2022-02-06T18:56:01
| 2021-09-27T11:54:21
| null |
UTF-8
|
PlantUML
| false
| false
| 3,334
|
puml
|
@startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreContentImportExportImportExportProfileDefinition, "import_export_profile\n(File profile definition)") {
primary_key(id) id
name string
not_null(label) translated
systemDefault bool
not_null(sourceEntity) string
not_null(fileType) string
not_null(delimiter) string
not_null(enclosure) string
mapping json
config json
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
Table(ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition, "import_export_log\n(Change log)") {
primary_key(id) id
not_null(activity) string
not_null(state) string
not_null(records) int
userId foreignKey
profileId foreignKey
fileId foreignKey
invalidRecordsLogId foreignKey
username string
profileName string
not_null(config) json
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentImportExportAggregateImportExportFileImportExportFileDefinition, "import_export_file\n(Import/Export file)") {
primary_key(id) id
not_null(originalName) string
not_null(path) string
not_null(expireDate) dateTime
size int
not_null(accessToken) string
not_null(createdAt) createdAt
updatedAt updatedAt
}
TranslationTable(ShopwareCoreContentImportExportImportExportProfileTranslationDefinition, "import_export_profile_translation\n((Translations))") {
label string
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(importExportProfileId) foreignKey
primary_key(languageId) foreignKey
}
ForeignTable(ShopwareCoreSystemUserUserDefinition, "user") {
}
ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") {
}
' relationshipd
ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition --> ShopwareCoreContentImportExportImportExportProfileDefinition
ShopwareCoreContentImportExportImportExportProfileTranslationDefinition --> ShopwareCoreContentImportExportImportExportProfileDefinition
ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreContentImportExportAggregateImportExportFileImportExportFileDefinition --> ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition
ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition --> ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition
ShopwareCoreContentImportExportImportExportProfileTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
@enduml
| false
| true
| false
| false
|
uml-unknown
|
2e56cb5a61913c69ce5606f335ac4015fc820440
|
0536d6c2bac3c7dc0899ead49e4d50f582bfc27d
|
/docs/sequecesDiagrammes.puml
|
d4b9875cd7cd92b67474ed5668785cd1c34da7ac
|
[] |
no_license
|
mdiallogn/newclip-service
|
89ad62f5cbce3c3f222080d8fd90dd2fa1ec4a57
|
f27679a6bd2b396c4e070d56dbfac3d1dd991f87
|
refs/heads/main
| 2023-07-30T19:25:25.251746
| 2021-09-15T17:47:25
| 2021-09-15T17:47:25
| 395,239,331
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,248
|
puml
|
@startuml
title Regularization Voucher App
actor User
entity Frontend
entity Keycloak #red
entity Backend #orange
entity Sylob #green
database Base
' AUTHENTICATION PROCESS
User -> Frontend: Type user name and password
Frontend -> Keycloak: Authentication Request
Keycloak -> Keycloak: Log transaction
Keycloak -> User: Authentication Response
Keycloak -> Backend: Give an access to user
'VIEW AVAILABLE KITS
User -> Frontend: Consult available kits
Frontend -> Backend: Sends the request
Backend -> Sylob: Executes the request (through the Proxy)
Sylob -> Backend: Sends Kits for the user hospital
Backend -> Frontend: Sends data
Frontend -> Frontend: Displays kits for user
'VIEW A SPECIFIC KIT CONTENT
User -> Frontend: Consults a specific kit content
Frontend -> Backend: Sends the request
Backend -> Sylob: Executes request (through the Proxy)
Sylob -> Backend: Sends articles for the selected kit
Backend -> Frontend: Sends data
Frontend -> Frontend: Displays the result
' MAKING A REGULARIZATION VOUCHER
User -> Frontend: Selects one or several articles
Backend -> Base: Save voucher (Articles, not the pdf file)
Frontend -> Backend: Make a pdf file with selected articles
Backend -> Backend: Sends email with the pdf file
@enduml
| false
| true
| false
| false
|
usecase
|
40836a8c2bb9cb5e4f7616c5ec5bda96615e9378
|
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
|
/CleanSheets/src/main/java/csheets/worklog/n1140263/sprint4/sendEmail.puml
|
0459c97dd723f19868fe2af2062541b798be1b7c
|
[] |
no_license
|
ABCurado/University-Projects
|
7fb32b588f2c7fbe384ca947d25928b8d702d667
|
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
|
refs/heads/master
| 2021-01-12T05:25:21.614584
| 2017-01-03T15:29:00
| 2017-01-03T15:29:00
| 77,926,226
| 1
| 3
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 616
|
puml
|
@startuml doc-files/sendEmail.png
actor User
participant "<<analysis>>\nConfigureEmailUI" as UI
participant "<<analysis>>\nConfigureEmailCtrl" as ctrl
participant "<<analysis>>\nSpreadsheet" as sheet
participant "<<analysis>>\nCell" as cell
User -> UI : configureMail()
activate UI
UI -> ctrl : configureMail(email, password, server)
User-> UI : sendEmail()
UI -> ctrl : sendEmail()
activate ctrl
'Repeats the steps bellow for destination, subject and body
ctrl -> sheet : getCell()
ctrl -> cell : getContent()
deactivate ctrl
UI -> UI : displayEmail()
deactivate UI
@enduml
| false
| true
| false
| false
|
usecase
|
bcaacfa8b01419b37e4a40bfaef566510dbb81c6
|
72622c91df5b2bc7c4c67b2e6b43b8a0a76df614
|
/DelugeMidi/doc/flow_kit.puml
|
2a812b581400b7326d35b74c799e60d4ccb2451e
|
[] |
no_license
|
cgoehl/deluge-midi
|
d1860989dd2e2f1a53d89369a0364f27fdb314bf
|
351152d0a8af080e8b9ffa87c446563d878a0b07
|
refs/heads/master
| 2021-01-04T04:05:07.435321
| 2020-06-16T18:07:35
| 2020-06-16T18:07:35
| 240,376,277
| 8
| 2
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 766
|
puml
|
@startuml
autoactivate on
' skinparam handwritten true
' skinparam backgroundColor #EEEBDC
participant ":FileProcessor" as FileProcessor
participant ":XDocument" as XDocument
participant "controller :Layout" as controller
participant "kit :Layout" as kit
== Add kit ==
FileProcessor -> FileProcessor : AddKit(kitNode)
loop each soundNode in kitNode
FileProcessor -> FileProcessor : AddKitRow(kitNode, soundNode)
FileProcessor -> kit: Column(0)
return templateMapping
FileProcessor -> controller : Column(i)
return controllerMapping
FileProcessor -> FileProcessor : RenderKnobs(templateMapping, controllerMapping)
return midiKnobs : XNode
FileProcessor -> XDocument : //replace element(soundNode, midiKnobs)//
return
end
return
return
@enduml
| false
| true
| false
| false
|
sequence
|
f45f3ec9ac0f24da879615c23fc4d271c827a3fd
|
c3287e91ce0ebce396cd3966de3d2f7d90131c20
|
/Plantuml/BL/Exceptions/BLPDFCreationException.puml
|
21daccf2f84a2fa2c2a16214a4dd5d75ec497cb5
|
[] |
no_license
|
kretmatt/SWE2-Tourplanner
|
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
|
f064500ae5b913b00671f358a586011affcdaf00
|
refs/heads/main
| 2023-05-12T11:48:29.605417
| 2021-06-06T21:53:11
| 2021-06-06T21:53:11
| 341,115,114
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 227
|
puml
|
@startuml
class BLPDFCreationException {
+ BLPDFCreationException()
+ BLPDFCreationException(message:string)
+ BLPDFCreationException(message:string, inner:Exception)
}
Exception <|-- BLPDFCreationException
@enduml
| false
| true
| false
| false
|
class
|
ed6e6361355801727decb3b2330145b6678cbeb8
|
8346e88afd786d114f567c5efb8ffea7eb8bed86
|
/uml/CustomerArea/Models/Customer/ICustomerUser.puml
|
b6df6f16cf87b1ec13f9edff5956799b2c093738
|
[
"MIT"
] |
permissive
|
lefevbre-organization/eShopOnContainers
|
910e7af562fe4fd7cbffc048c402551dad93cf91
|
620dfaf3b8ca51732417432ea3a15d748368967f
|
refs/heads/lef-main-containers
| 2023-02-18T21:08:56.362792
| 2023-02-09T11:02:48
| 2023-02-09T11:02:48
| 203,787,005
| 0
| 0
|
MIT
| 2023-02-08T05:15:42
| 2019-08-22T12:06:29
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 441
|
puml
|
@startuml
interface ICustomerUser {
Calendars : List<Calendar> <<get>> <<set>>
Fields : List<Field> <<get>> <<set>>
Notifications : List<NotifyTemplate> <<get>> <<set>>
States : List<State> <<get>> <<set>>
Tags : List<Tag> <<get>> <<set>>
Tools : List<Tool> <<get>> <<set>>
DefaultFolders : List<FolderDefault> <<get>> <<set>>
Langs : List<Lang> <<get>> <<set>>
}
ICustomerUserView <|-- ICustomerUser
@enduml
| false
| true
| false
| false
|
class
|
54e363415342fbe0d0110a4dd04c905ef60bdb78
|
b209f48148c07f4c1733694cfccb4f2563b93b9f
|
/MainReport/img/privacyobject.plantuml
|
8d45455c6a697d20b53c50b52d272a62017a414a
|
[] |
no_license
|
songhokun/2DV50E-2019VT
|
4014aa43114b6b5429565c222a3c9996f32400b9
|
a567737edf0342c6f60ade1658be97553385d13e
|
refs/heads/master
| 2020-04-24T04:18:34.411832
| 2019-06-19T10:39:30
| 2019-06-19T10:39:30
| 171,698,047
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 523
|
plantuml
|
@startuml
skinparam dpi 400
object User {
IP address = "194.47.111.x"
}
object Resolver {
Cached = "False"
}
object WHOIS {
country = "SE"
netname = "VAXJO-NET"
descr = "Linnaeus University"
mnt-lower = "SUNET-MNT"
}
object DNSquery {
Request Name = "generate-spam.kr"
Request Type = "MX record"
}
object circumstance {
time = "YY-MM-DD HH:MM (TZ)"
frequency = "First time"
}
User <|-- WHOIS
DNSquery -left- User
DNSquery -down- Resolver
Resolver <|-right- circumstance
@enduml
| false
| true
| false
| false
|
class
|
9ad1361b270b24361cad69e157c5302e03c000a1
|
e682286aa8f6a05f0a6dac1560ac712875d41650
|
/1.0/uml/server.puml
|
c1868ab97f3138081a9c236866c7cb0ee70614eb
|
[] |
no_license
|
jianreader/myim
|
84a7c081001fa279a04978273bb95f5b3c1e9745
|
edae48aa834481547ae6d4bcd8963a284bcfff1d
|
refs/heads/master
| 2016-09-05T22:22:04.336707
| 2015-08-13T04:14:53
| 2015-08-13T04:14:53
| 40,096,267
| 0
| 0
| null | 2015-08-03T00:50:49
| 2015-08-02T23:35:09
| null |
UTF-8
|
PlantUML
| false
| false
| 415
|
puml
|
@startuml
package com.jian.server <<Frame>>{
interface DBService
interface Server
class Account
class DBServiceImpl implements DBService
class ServerImpl implements Server
class DBServicePool
class DBServicePoolFactory
}
Server --> DBServiceFactory : create
DBService --> Account : create
DBServiceImpl *-->"1" DBServicePool : contains
DBServiceFactory --> DBService: create
@enduml
| false
| true
| false
| false
|
sequence
|
18b802ebea8be6244ffbb0ac19603e069a738994
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/GraphQLMaxCartDiscountsReachedError.puml
|
0b35f5230c67d174f3bb8721fa026da5d8791209
|
[] |
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
| 438
|
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 GraphQLMaxCartDiscountsReachedError [[GraphQLMaxCartDiscountsReachedError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
| false
| true
| false
| false
|
class
|
5dbbebffc5ef53f67b0670e44727a69a6d023763
|
1e557a8d0b755ce2d66458e43dcd426dd8f27fec
|
/阅读代码/android/webview.plantuml
|
516a07b8ffca2f7713f47a1da511be2c5d7abe55
|
[] |
no_license
|
rickgit/rickgit.github.io
|
94ff804637d1fe891583c9c1513a9b65b86361f5
|
5891f01bdd8ca1231cd9977a68960e11e28688f4
|
refs/heads/master
| 2023-08-29T21:35:00.999632
| 2023-08-12T04:40:16
| 2023-08-12T04:40:16
| 52,088,713
| 4
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 219
|
plantuml
|
@startuml
skinparam monochrome true
skinparam classBackgroundColor transparent
skinparam style strictuml
'<uses-permission android:name="android.permission.INTERNET"/>
class webview{
Window mWindow;
}
@enduml
| false
| true
| false
| false
|
class
|
1bdf037e04d9c36d6fe2c444b8144fdcbc5d2b46
|
7c52c02af747a0413d53bd373ec154a1826bbd0d
|
/src/main/resources/ex41.puml
|
c87a13f4796b9f5de8262626c1891c8166ef369e
|
[] |
no_license
|
oleksii-kulyk/kulyk-cop3330-assignment3
|
607cbd85f489980938a752c0a952e16bc017b342
|
dd9c0867931157800384b351171a81a62c890d32
|
refs/heads/master
| 2023-06-01T21:15:00.173412
| 2021-06-21T03:58:17
| 2021-06-21T03:58:17
| 378,577,784
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 288
|
puml
|
@startuml
title exercise 41 - Class Diagram
class App {
+File input41
+Scanner input
void main()
}
class Names {
ArrayList<String> namesList
int numOfLines
void read_names()
void sort_names()
void create_file()
void print_names()
}
App <|-down- Names: uses
@enduml
| false
| true
| false
| false
|
class
|
a7139cca289819f55598d9e7bcbeea64faeb651d
|
912d65be9bbd436a671d948abe8dadf356eb5216
|
/src/main/java/com/juc/staticvariable/staticvariable.plantuml
|
267601413d2b0e4194d3067f442a03b64033a603
|
[] |
no_license
|
ljhpole/netty-lecture
|
02318e9992f488f03425c93b981e8718582b1b4b
|
a20bef9e6db5d1061a6f37ec0593087588ea1a0a
|
refs/heads/main
| 2023-02-24T21:52:42.964037
| 2021-01-31T15:35:18
| 2021-01-31T15:35:18
| 334,686,240
| 0
| 1
| null | 2021-01-31T15:35:19
| 2021-01-31T15:19:40
| null |
UTF-8
|
PlantUML
| false
| false
| 686
|
plantuml
|
@startuml
title __STATICVARIABLE's Class Diagram__\n
namespace com.juc.staticvariable {
class com.juc.staticvariable.staticListTest {
{static} + resList : List<String>
{static} ~ static_o : Object
{static} - num : int
{static} + main()
}
}
namespace com.juc.staticvariable {
class com.juc.staticvariable.staticVariableTest {
{static} ~ static_o : Object
{static} - num : int
{static} + main()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false
| true
| false
| false
|
class
|
87d9164b42f00d35c3883a41773e62c078aa2e07
|
939ec2212f87c1894d792e169fce964bec902583
|
/docs/Solution/Services/monitor/UseCases.puml
|
203f42219748cb7a97011d128bef6661054e9fd3
|
[] |
no_license
|
CAADE/fleet
|
37e18246e0a10122a711efccdab3c134232d120e
|
a62d2a82a2100583d84e41ea21efda9512fc4ac7
|
refs/heads/master
| 2020-03-22T00:31:19.695430
| 2018-07-13T03:27:19
| 2018-07-13T03:27:19
| 139,250,021
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 230
|
puml
|
@startuml
left to right direction
actor :User:
actor :SubSystem:
rectangle "monitor Service" {
UseCase UC1 as "Use Case1"
UseCase UC2 as "Use Case2"
User --> UC1
UC1 --> UC2
UC2 --> SubSystem
}
@enduml
| false
| true
| false
| false
|
usecase
|
49d88f9b1bc4f0cba204ed18b2cf23f9cccb2195
|
30dded105d5e7177332bccfd767638f3810929de
|
/diagrams/rolling-update.puml
|
11fe05c206dd1211d8d476b2c14ef345e140b3fa
|
[
"MIT"
] |
permissive
|
aDovbiy/k8s-diagrams
|
63fc2d4535e9f467b690bbd40351245883a2a306
|
50631e57ffba8ef3c603b609c35c85040906796a
|
refs/heads/master
| 2022-11-30T06:52:25.646318
| 2020-08-13T10:01:04
| 2020-08-13T10:01:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,509
|
puml
|
@startuml
!include <tupadr3/common>
!define ICONURL https://raw.githubusercontent.com/Roemer/plantuml-office/master/office2014
!includeurl https://raw.githubusercontent.com/michiel/plantuml-kubernetes-sprites/master/resource/k8s-sprites-unlabeled-25pct.iuml
!includeurl ICONURL/Devices/load_balancer.puml
!define CLOUDOGUURL https://raw.githubusercontent.com/cloudogu/plantuml-cloudogu-sprites/master
!includeurl CLOUDOGUURL/dogus/cloudogu.puml
!includeurl CLOUDOGUURL/tools/k8s.puml
!define CLOUDOGU_BLUE #23a3dd
title <color:blue><$k8s></color> **Rolling updates** <color:blue><$k8s></color>\n
rectangle "Version 1.0 active" as 1 <<rollingUpdateGroup>> {
rectangle "<$svc>\nService" as service_1
rectangle "<$pod>\n1.0\nactive" as pod_1_1
rectangle "<$pod>\n1.0\nactive" as pod_1_2
rectangle "<$pod>\n1.0\nactive" as pod_1_n
service_1 --> pod_1_1
service_1 --> pod_1_2
service_1 --> pod_1_n
}
rectangle "Begin rolling update" as 2 <<rollingUpdateGroup>> {
rectangle "<$svc>\nService" as service_2
rectangle "<$pod>\n2.0\ndeploying" <<rollingUpdateGroup>> as pod_2_1
rectangle "<$pod>\n1.0\nactive" as pod_2_2
rectangle "<$pod>\n1.0\nactive" as pod_2_n
service_2 -[hidden]-> pod_2_1
service_2 --> pod_2_2
service_2 --> pod_2_n
}
rectangle "Both versions active" as 3 <<rollingUpdateGroup>> {
rectangle "<$svc>\nService" as service_3
rectangle "<$pod>\n2.0\nactive" as pod_3_1
rectangle "<$pod>\n2.0\ndeploying" <<rollingUpdateGroup>> as pod_3_2
rectangle "<$pod>\n1.0\nactive" as pod_3_n
service_3 --> pod_3_1
service_3 -[hidden]-> pod_3_2
service_3 --> pod_3_n
}
rectangle "Version 2.0 active" as 4 <<rollingUpdateGroup>> {
rectangle "<$svc>\nService" as service_4
rectangle "<$pod>\n2.0\nactive" as pod_4_1
rectangle "<$pod>\n2.0\nactive" as pod_4_2
rectangle "<$pod>\n2.0\nactive" as pod_4_n
service_4 --> pod_4_1
service_4 --> pod_4_2
service_4 --> pod_4_n
}
pod_1_1 -[hidden]-- pod_3_1
pod_2_1 -[hidden]-- pod_4_1
legend
<color:#23a3dd><$cloudogu></color> [[https://cloudogu.com cloudogu.com]]
end legend
skinparam arrow {
Color CLOUDOGU_BLUE
FontColor WHITE
}
skinparam rectangle {
BackgroundColor CLOUDOGU_BLUE
BorderColor #16688d
FontColor WHITE
backgroundColor<<rollingUpdateGroup>> WHITE
FontColor<<rollingUpdateGroup>> CLOUDOGU_BLUE
}
skinparam legend {
BackgroundColor WHITE
BorderColor #16688d
}
@enduml
| false
| true
| false
| false
|
uml-unknown
|
82027caab6bbb727b1a96ec78dc8aa6f90d56a0b
|
87b13699a92fe26bd2974254727e6859f3ae32f3
|
/src/csheets/userstories/ipc05_01/send_message/i120810/ipc05_01_send_message_design2.puml
|
661426d7ee0c3ae839ceb3b7146163e8308238f8
|
[] |
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
| 796
|
puml
|
@startuml doc-files/ipc05_01_send_message_design2.png
participant "uic: UIController" as uic
participant "uiExtension : UIExtensionSendMessage" as UIExt
participant "SendMessagePanel : JPanel" as cp
participant "SendMessageController" as ctrl
participant "ChatUI : JFrame" as cui
participant "TCP : TCP" as tcp
participant "Socket : Socket" as skt
UIExt -> cp : new(uic)
cp -> ctrl : new(uic)
uic -> cp : ActionPerformed()
cp -> ctrl : ActionPerformed()
alt true
ctrl -> ctrl : startService()
ctrl -> cui : create()
cui -> ctrl : sendMessage(message, ip)
ctrl-> skt : create(ip, port)
ctrl->tcp : sendMessage(message , ip)
end
alt false
ctrl -> ctrl : stopService()
end
@enduml
| false
| true
| false
| false
|
sequence
|
9e56a1c9a8a910106382d6930ac98c1342db318a
|
89dc2d1c3a03529f2553fb4bdd4bc938b1917e71
|
/uml/a4.puml
|
ef73c3b0a7919ddd677247c72a44876c70751731
|
[] |
no_license
|
harminjeong/jeong-cop3330-assignment4
|
24aa8f08f84255e795d133d2ab131548b2c03a74
|
d7192265bfa260c9192557620b90aad70f125d69
|
refs/heads/master
| 2023-08-19T17:59:45.187086
| 2021-11-02T02:30:49
| 2021-11-02T02:30:49
| 420,785,380
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 489
|
puml
|
@startuml
class Controller {
+void descriptionText();
+void datePicker();
+void onEditButtonClick();
+void onEditTitleButtonClick();
+void onDeleteButtonClick();
+void onSaveButtonClick();
}
class App {
+void start();
+void main();
}
class LocalEvent{
+String description;
+LocalDate date;
+void setDescription();
+LocalDate getDate;
+void setDate();
+LocalEvent(LocalDate date,String description);
}
App *- nameSorter
@enduml
| false
| true
| false
| false
|
class
|
c368829aa8aa640328132c156ec446f54f694ada
|
e81ab05344cab4c17cf2183ee2804d64322b7458
|
/diagrams/sequences/is-solution-process.puml
|
cf3b34ff0e82118c41ff87fda8286cf4aa0bac07
|
[] |
no_license
|
buehler/mse-project-thesis-1
|
2b3b177b724f19ad6f969d541eb5dc405729df5d
|
5a1230517aa1dafea47b661a9ffc851fab9ce2f0
|
refs/heads/master
| 2023-08-16T04:09:33.174155
| 2021-08-31T09:22:37
| 2021-08-31T09:22:37
| 342,259,878
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 402
|
puml
|
@startuml
skinparam backgroundcolor transparent
actor Client as c
participant "Identity and Access\nManagement" as i
participant "Cloud Native\nApplication" as a
participant "Legacy System" as b
c -> i : Authenticate with OIDC
i --> c : Return Credentials
c -> a : Call Service with OIDC
a -> a : Transform Credentials to\nBasic Authentication format
a -> b : Call with\nBasic Authentication
@enduml
| false
| true
| false
| false
|
sequence
|
15f261a04d8f5e9c1cf9e12f83518c4a101f107b
|
d26c6b65f2e563277985b3349ceb54d4457c0338
|
/documents/PlantUmlMarkdown/diagrams/2_3.puml
|
3fb9e75ca48bfc665cb801cb88ee79ecc48e626f
|
[] |
no_license
|
ddanilyuk/OBD2019
|
95711347e44e0aba188c5509a519a763ba2740b1
|
d6f0ae91bf32ed6137797a3bd7b64250302e8b84
|
refs/heads/master
| 2020-07-27T03:57:46.754987
| 2019-11-27T09:09:31
| 2019-11-27T09:09:31
| 208,859,440
| 0
| 0
| null | 2019-10-16T09:06:21
| 2019-09-16T17:35:30
| null |
UTF-8
|
PlantUML
| false
| false
| 176
|
puml
|
@startuml
[*] --> active
active -right-> inactive : disable
inactive -left-> active : enable
inactive --> closed : close
active --> closed : close
closed --> [*]
@enduml
| false
| true
| false
| false
|
sequence
|
8045d1a43af4e558aa315284d2ca354dcf12542d
|
39f5d36e159afc4363f2bc098c3530c534b9da28
|
/_md/puml-diagrams/sdd_richiesta_revoca.puml
|
9bdfcae02b76e85c3459cc35ed086ee81af51e37
|
[] |
no_license
|
andreapasuch/readthedocs
|
5607c14276a948d32d9a594da9ec7ab567c95923
|
319f890a6ab3fe39d9d778a69ec6d20028a7c19b
|
refs/heads/main
| 2023-08-17T11:25:45.168974
| 2021-08-19T13:05:52
| 2021-08-19T13:05:52
| 395,005,620
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 625
|
puml
|
@startuml
hide footbox
autonumber
participant PSP
participant NodoSPC
participant EC
PSP -> NodoSPC: nodoInviaRichiestaRevoca
note left PSP : Compone RR \n tipoRevoca=1
NodoSPC->NodoSPC: Validazione Richiesta Revoca
NodoSPC -> EC: paaInviaRichiestaRevoca
EC-[#blue]->NodoSPC: resp OK paaInviaRichiestaRevoca
NodoSPC -[#blue]-> PSP: resp OK nodoInviaRichiestaRevoca
EC ->EC: Predisposizione ER
EC -> NodoSPC: nodoInviaRispostaRevoca
NodoSPC ->NodoSPC: Validazione ER
NodoSPC -> PSP: pspInviaRispostaRevoca
PSP-[#blue]->NodoSPC: resp OK pspInviaRispostaRevoca
NodoSPC -[#blue]-> EC: resp OK nodoInviaRispostaRevoca
@enduml
| false
| true
| false
| false
|
sequence
|
2287fbaf0c88bdc3964b8f87b4c2f223373111f6
|
41189885f0fa6f54ddc6f48ad8cdf6d1e2c9f479
|
/src/capaInterfaz/menuAlumnos/menuAlumnos.plantuml
|
50dfe4602b0169b7e0f572a84bce3278c4412f06
|
[] |
no_license
|
miguel-benito-martin/Practica_Migracion
|
af116a41842d0fb252e00286123710a2da099f85
|
ab3dbd3e60629aab622e84ae84930f7f46a8937e
|
refs/heads/main
| 2023-05-01T18:52:03.590117
| 2021-05-26T10:34:40
| 2021-05-26T10:34:40
| 366,121,731
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 9,848
|
plantuml
|
@startuml
title __MENUALUMNOS's Class Diagram__\n
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.FrameSeleccionarFichero {
- jFileChooser1 : JFileChooser
+ FrameSeleccionarFichero()
- initComponents()
- jFileChooser1ActionPerformed()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuAltaAlumnos {
{static} - MENU_ALTA_ALUMNOS_DESDE_FICHERO : int
{static} - MENU_ALTA_ALUMNOS_INDIVIDUAL : int
{static} - MENU_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
+ PanelMenuAltaAlumnos()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosDesdeFichero {
{static} + strFilePath : String
{static} - FRAME_SELECCIONAR_FICHERO : int
{static} - MENU_ALTA_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
{static} - REALIZAR_ALTA_MASIVA : int
- campo_seleccionar_fichero : JTextField
+ PanelMenuAltaAlumnosDesdeFichero()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosIndividual {
{static} - ALTA_ALUMNO : int
{static} - MENU_ALTA_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- campo_apellidos : JTextField
- campo_dni : JTextField
- campo_grupo_clase : JTextField
- campo_n_mat : JTextField
- campo_nombre : JTextField
+ PanelMenuAltaAlumnosIndividual()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuAlumnos {
{static} - MENU_ALTA_ALUMNOS : int
{static} - MENU_BAJA_ALUMNOS : int
{static} - MENU_CONSULTAR_ALUMNOS : int
{static} - MENU_MODIFICAR_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
+ PanelMenuAlumnos()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuBajaAlumnos {
{static} - LISTADO_BAJA_ALUMNOS : int
{static} - MENU_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- campo_dni : JTextField
- campo_n_mat : JTextField
+ PanelMenuBajaAlumnos()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuConsultarAlumnos {
{static} - LISTADO_CONSULTAR_ALUMNOS : int
{static} - MENU_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- campo_dni_alumno : JTextField
- campo_grupo_clase : JTextField
- campo_n_mat : JTextField
+ PanelMenuConsultarAlumnos()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelMenuModificarAlumnos {
{static} - LISTADO_MODIFICAR_ALUMNOS : int
{static} - MENU_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- campo_dni_alumno : JTextField
- campo_grupo_clase : JTextField
- campo_n_mat : JTextField
+ PanelMenuModificarAlumnos()
+ actionPerformed()
- cargarElementos()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelResultadoBajaAlumnos {
{static} - BORRAR_ALUMNO : int
- INCREMENTOX : int
- INCREMENTOY : int
{static} - MENU_BAJA_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- arrayapellidos : ArrayList<JTextField>
- arraydni : ArrayList<JTextField>
- arraygrupo_clase : ArrayList<JTextField>
- arrayn_mat : ArrayList<JTextField>
- arraynombre : ArrayList<JTextField>
- arrayradio : ArrayList<JRadioButton>
- grupoRadios : ButtonGroup
- no_resul : JLabel
- resultado_consulta : List<ListadoAlumno>
{static} - serialVersionUID : long
- x : int
- y : int
+ BorrarFilaSeleccionada()
+ PanelResultadoBajaAlumnos()
+ actionPerformed()
+ filaSeleccionada()
+ getArrayApellidos()
+ getArrayDNI()
+ getArrayN_Mat()
+ getArrayNombres()
+ mostrarResultados()
+ resetear()
- aniadir()
- aumentarTamanio()
- cargarElementos()
- modificarBoton()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelResultadoConsultarAlumnos {
{static} - GENERAR_TXT : int
- INCREMENTOX : int
- INCREMENTOY : int
{static} - MENU_CONSULTAR_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- arrayapellidos : ArrayList<JTextField>
- arraydni : ArrayList<JTextField>
- arraygrupo_clase : ArrayList<JTextField>
- arrayn_mat : ArrayList<JTextField>
- arraynombre : ArrayList<JTextField>
- botonGenerarTxt : JButton
- no_resul : JLabel
- resultado_consulta : List<ListadoAlumno>
{static} - serialVersionUID : long
- x : int
- y : int
+ PanelResultadoConsultarAlumnos()
+ actionPerformed()
+ getArrayApellidos()
+ getArrayDNI()
+ getArrayGrupoClase()
+ getArrayN_Mat()
+ getArrayNombres()
+ mostrarResultados()
+ resetear()
- aniadir()
- aumentarTamanio()
- cargarElementos()
- modificarBoton()
}
}
}
namespace capaInterfaz {
namespace menuAlumnos {
class capaInterfaz.menuAlumnos.PanelResultadoModificarAlumnos {
{static} - GENERAR_TXT : int
{static} - GUARDAR_MODIFICACIONES_ALUMNOS : int
- INCREMENTOX : int
- INCREMENTOY : int
{static} - MENU_MODIFICAR_ALUMNOS : int
{static} - MENU_PRINCIPAL : int
- arrayapellidos : ArrayList<JTextField>
- arraydni : ArrayList<JTextField>
- arraygrupo_clase : ArrayList<JTextField>
- arrayn_mat : ArrayList<JTextField>
- arraynombre : ArrayList<JTextField>
- no_resul : JLabel
- resultado_consulta : List<ListadoAlumno>
{static} - serialVersionUID : long
- x : int
- y : int
+ PanelResultadoModificarAlumnos()
+ actionPerformed()
+ getArrayApellidos()
+ getArrayDNI()
+ getArrayGrupoClase()
+ getArrayN_Mat()
+ getArrayNombres()
+ mostrarResultados()
+ resetear()
- aniadir()
- aumentarTamanio()
- cargarElementos()
- modificarBoton()
}
}
}
capaInterfaz.menuAlumnos.FrameSeleccionarFichero -up-|> javax.swing.JFrame
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosDesdeFichero .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosDesdeFichero -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosIndividual .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuAltaAlumnosIndividual -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuBajaAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuBajaAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuConsultarAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuConsultarAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelMenuModificarAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelMenuModificarAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelResultadoBajaAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelResultadoBajaAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelResultadoBajaAlumnos o-- capaInterfaz.JButtonOp : botonBack
capaInterfaz.menuAlumnos.PanelResultadoBajaAlumnos o-- capaInterfaz.JButtonOp : botonDelete
capaInterfaz.menuAlumnos.PanelResultadoConsultarAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelResultadoConsultarAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelResultadoConsultarAlumnos o-- capaInterfaz.JButtonOp : botonOK
capaInterfaz.menuAlumnos.PanelResultadoModificarAlumnos .up.|> java.awt.event.ActionListener
capaInterfaz.menuAlumnos.PanelResultadoModificarAlumnos -up-|> javax.swing.JPanel
capaInterfaz.menuAlumnos.PanelResultadoModificarAlumnos o-- capaInterfaz.JButtonOp : botonBack
capaInterfaz.menuAlumnos.PanelResultadoModificarAlumnos o-- capaInterfaz.JButtonOp : botonSaveChanges
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
|
8e38dd7f7f1e3e9a686bd2e06ef65843b3a46092
|
98c049efdfebfafc5373897d491271b4370ab9b4
|
/docs/SPRINT_3/UC42-Cancel_Order/UC40_MD.puml
|
cc2b7a55a332a1245beb03828710ff2d2fc41668
|
[] |
no_license
|
antoniodanielbf-isep/LAPR3-2020
|
3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3
|
7ee16e8c995aea31c30c858f93e8ebdf1de7617f
|
refs/heads/main
| 2023-05-27T14:42:05.442427
| 2021-06-20T18:09:59
| 2021-06-20T18:09:59
| 378,709,095
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 591
|
puml
|
@startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class User {
-String name
-String email
-String password
-Integer NIF
}
class Client {
-Integer credits
}
class Order {
-Integer id
-Date orderDate
-Date deliverDate
-Integer NIF
}
class OrderState {
-Integer id
-String designation
}
/'------------------------------------------------------------------------------------ '/
Client "1" -- "1" User: acts like >
Client "1" -- "*" Order: cancels >
Order "1" -- "1" OrderState: has >
@enduml
| false
| true
| false
| false
|
class
|
d58b320276faecd1a718e315be1e9bdb18a8d737
|
60aadb2730b3830abe44bc8f5d14c641b1634d69
|
/tests/Object-Model.png.puml
|
626a9e7e85b0bf4bc54b4f4b95764db4073ac94a
|
[
"Apache-2.0"
] |
permissive
|
ashwinsajiv/sysl
|
90f4a86c5f618c06c903bc46f2917013c193cd07
|
7fe9896fce2e89156805cd6824cd5178d5a15284
|
refs/heads/master
| 2020-10-02T06:00:37.424362
| 2020-08-12T04:18:09
| 2020-08-12T04:18:09
| 227,716,908
| 1
| 0
|
Apache-2.0
| 2020-02-28T00:45:59
| 2019-12-12T23:43:43
|
Go
|
UTF-8
|
PlantUML
| false
| false
| 576
|
puml
|
@startuml
title empdata
''''''''''''''''''''''''''''''''''''''''''
'' ''
'' AUTOGENERATED CODE -- DO NOT EDIT! ''
'' ''
''''''''''''''''''''''''''''''''''''''''''
class "ObjectModel.Address" as _0 << (D,orchid) >> {
+ city : string
+ line_1 : string
}
class "ObjectModel.Customer" as _1 << (D,orchid) >> {
+ addresses : **Set <Address>**
+ customer_id : int
}
class "ObjectModel.Order" as _3 << (D,orchid) >> {
+ customer : **Customer**
+ order_id : int
}
_1 *-- "0..*" _2
_3 *-- "1..1 " _4
@enduml
| false
| true
| false
| false
|
class
|
7fc1d74b6217ec5e511b9d2181d00499aa2dfa28
|
605cac101260b1b451322b94580c7dc340bea17a
|
/malokhvii-eduard/malokhvii03/doc/plantuml/ua/khpi/oop/malokhvii03/text/PolynomialHash.puml
|
90aac37bdcf8d03ad8664c8c1ed640e2138e2dc8
|
[
"MIT"
] |
permissive
|
P-Kalin/kit26a
|
fb229a10ad20488eacbd0bd573c45c1c4f057413
|
2904ab619ee48d5d781fa3d531c95643d4d4e17a
|
refs/heads/master
| 2021-08-30T06:07:46.806421
| 2017-12-16T09:56:41
| 2017-12-16T09:56:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 431
|
puml
|
@startuml
class PolynomialHash {
{static} -DEFAULT_HASHABLE_CHAR_SEQUENCE_SIZE: int
{static} -POLYNOMIAL_BASE: int
{static} -polynomials: long[]
{static} +ZERO_HASH: long
-PolynomialHash()
{static} -calculatePolynomials(int): void
{static} +charSequenceHash(CharSequence): long
{static} +reversedCharSequenceHash(CharSequence): long
}
@enduml
| false
| true
| false
| false
|
class
|
3da721bebed60ea77167cca7ab78e978948ace37
|
5fdaecaa5af06b8b8bdfae255842d194869010a0
|
/msb_study/src/main/resources/uml/aqs.puml
|
8aad138462f53461958d7a7b6c1b39cd67c3c769
|
[
"Apache-2.0"
] |
permissive
|
imzdong/study
|
6043438558b098bfa000de138face7a817cbf857
|
185ea85d1094704ecbdd21502116e041b86d8d1c
|
refs/heads/master
| 2023-05-03T02:15:24.737918
| 2022-04-30T05:28:38
| 2022-04-30T05:28:38
| 228,578,367
| 0
| 0
|
Apache-2.0
| 2020-05-10T10:08:03
| 2019-12-17T09:16:53
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 340
|
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
|
8201d61da9ffc761af22b4f77611aad61d5a579c
|
8ec1fb16b350f453824ca50174347688b310ce2c
|
/aula06/Ex1/Ex1.plantuml
|
3221f68ff0cc09e6fa2a39e525ff816c84ad4e6a
|
[] |
no_license
|
oEscal/PDS
|
2f32cd491a0a963e3b7182f772d8699ba82f3bf3
|
5feca5f16979319869da5fcf97ae3f3dfbbf1986
|
refs/heads/master
| 2020-04-25T00:23:09.561837
| 2019-06-03T09:17:43
| 2019-06-03T09:17:43
| 172,376,799
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,969
|
plantuml
|
@startuml
title __EX1's Class Diagram__\n
package aula06.Ex1 {
class Database {
- employees : Vector<Employee>
+ Database()
+ addEmployee()
+ deleteEmployee()
+ getAllEmployees()
}
}
package aula06.Ex1 {
class DatabaseAdapter {
+ DatabaseAdapter()
+ addEmployee()
+ addEmployee()
+ deleteEmployee()
+ verify()
+ getAllEmployees()
}
}
package aula06.Ex1 {
interface DatabaseAdapterInterface {
{abstract} + addEmployee()
{abstract} + addEmployee()
{abstract} + deleteEmployee()
{abstract} + verify()
{abstract} + getAllEmployees()
}
}
package aula06.Ex1 {
class Employee {
- name : String
- emp_num : long
- salary : double
+ Employee()
+ getName()
+ getEmpNum()
+ getSalary()
}
}
package aula06.Ex1 {
class Empregado {
- nome : String
- apelido : String
- codigo : int
- salario : double
+ Empregado()
+ apelido()
+ nome()
+ codigo()
+ salario()
}
}
package aula06.Ex1 {
class Pst {
{static} - input : Scanner
{static} + main()
{static} - checkWithoutAdapter()
{static} - checkWithAdapter()
{static} - printTwoDatabases()
}
}
package aula06.Ex1 {
class Registos {
- empregados : ArrayList<Empregado>
+ Registos()
+ insere()
+ remove()
+ isEmpregado()
+ listaDeEmpregados()
}
}
DatabaseAdapter -up-|> DatabaseAdapterInterface
DatabaseAdapter o-- Database : database1
DatabaseAdapter o-- Registos : database2
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
|
e11db5f43a232b819b73e9270f6f609cc1794fdd
|
c5b56464d24f6bed22a273b0a8159bbaac0e70d3
|
/api/src/main/resources/uml/repo.puml
|
58c32999cb248686330b645a744cb0d043468cbb
|
[] |
no_license
|
rquiroga83/call_center_test
|
a67b22abec89a6e1eaf28abb77d5f5a1658eba64
|
18cf6a0152e46f69a79972d8d41bb4fc7f7dfecf
|
refs/heads/master
| 2021-09-10T09:53:40.553369
| 2018-03-11T16:23:07
| 2018-03-11T16:23:07
| 124,590,534
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 259
|
puml
|
@startuml
class Employee
Employee : String id
Employee : String firstName
Employee : String lastName
Employee : String available
class Operator
class Supervisor
class Director
Employee <|-- Operator
Employee <|-- Supervisor
Employee <|-- Director
@enduml
| false
| true
| false
| false
|
class
|
48e6ecd3089882daf24be7c4c3339379f105b1e6
|
7a373b698c73b904ab903c1138f344508840f3bc
|
/doc/ds/sequence_diagram.puml
|
5c3fe1878c79721fe5c44494c96091ed1312192f
|
[] |
no_license
|
karolinaoparczyk/Python_GTK
|
a4c24f9aede1019a496245dfc49529dff2648474
|
5f635358cd8ef45b2fb212f35090bbf3bda3522a
|
refs/heads/master
| 2021-03-12T13:48:03.227258
| 2019-11-25T15:17:17
| 2019-11-25T15:17:17
| 246,626,522
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,120
|
puml
|
------------------------
sequence_diagram.png
@startuml
actor User
control ShowButton
control DeleteButton
control Client
control Server
database Fitness
entity Workout
entity Exercise
entity ExerciseToWorkout
User -> ShowButton : click
User -> DeleteButton : click
ShowButton -> Client : request getting items
DeleteButton -> Client : request deleting items
Client -> Server : send get or delete message
Server -> Fitness : request get or delete items
Fitness -> Workout : get or delete items
Fitness -> Exercise : get or delete items
Fitness -> ExerciseToWorkout : get or delete items
Server -> Client : give items or delete message
Client -> ShowButton : give items
Client -> DeleteButton : give delete message
ShowButton -> User : show items
DeleteButton -> User : show delete message
@enduml
PlantUML version 1.2019.12(Sun Nov 03 10:24:54 UTC 2019)
(GPL source distribution)
Java Runtime: Java(TM) SE Runtime Environment
JVM: Java HotSpot(TM) 64-Bit Server VM
Java Version: 1.7.0_25-b15
Operating System: Linux
Default Encoding: UTF-8
Language: en
Country: US
------------------------
| false
| true
| false
| false
|
usecase
|
292b36f0ba0aa735811a28ce7b01e58caa01afb1
|
6329b68b0cb699a41cd3c1af4ebd3eab83081743
|
/doc/homework7_sequence.puml
|
8d349e998ca02a7ea63adba06ecac545262c1424
|
[] |
no_license
|
guitarbien/senao_oop_laravel
|
bd99460c3c9c9d7b7fa9402e2bba90f811017cab
|
2eddddcfa57a1098cd75f990cbe97d523161b749
|
refs/heads/develop
| 2023-08-09T09:02:53.442947
| 2020-02-27T16:36:05
| 2020-02-27T16:36:05
| 107,300,260
| 0
| 1
| null | 2023-07-22T00:56:16
| 2017-10-17T17:12:59
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 308
|
puml
|
@startuml
actor MyBackupService
MyBackupService -> TaskDispatcher : simpleTask()
TaskDispatcher -> TaskFactory : create()
activate TaskFactory
create SimpleTask
TaskFactory -->> SimpleTask : new
TaskDispatcher <<-- TaskFactory : Task
deactivate TaskFactory
TaskDispatcher -> SimpleTask : Execute()
@enduml
| false
| true
| false
| false
|
sequence
|
918a0fe07d15c2ec35ecf364fa8bad4663e36e73
|
396f553da71617932d6494b8f88d64c1c63307bd
|
/src/main/java/com/portal/dmtt/scriptJobManager/dao/impl/impl.plantuml
|
8db265642865ad4a9d3b7afed83d8ec482356f7b
|
[] |
no_license
|
ashraphs/dev-project_dmtt
|
c8b73a6f69b98b80888f6279261d8f146d8b9e2b
|
6abfe449504d7fcf7d8cea5f293c8d488a083b63
|
refs/heads/master
| 2023-01-29T02:41:21.253649
| 2018-11-16T03:45:47
| 2018-11-16T03:45:47
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 652
|
plantuml
|
@startuml
title __IMPL's Class Diagram__\n
package com.portal.dmtt {
package com.portal.dmtt.scriptJobManager {
package com.portal.dmtt.scriptJobManager.dao {
package com.portal.dmtt.scriptJobManager.dao.impl {
class taskSchJobImpl {
- dataSource : DataSource
+ setDataSource()
+ findTaskSchJob()
}
}
}
}
}
taskSchJobImpl -up-|> taskSchJobDao
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
|
3d60dffac77576aab131a4efa81e396580c6062c
|
a902b259bb4bb41a73a8eff9f400e9a1cb7b991e
|
/umls/decorator.puml
|
e928f1f67d01edaa0d7f803e167116996383dad3
|
[] |
no_license
|
ghadd/Patterns
|
8010d0f2d6a4cc24dd7cb5caf879fe5c3e4ab1c5
|
c9efc09fc674b95ea696f45867d4916900c0ec28
|
refs/heads/master
| 2023-05-04T15:51:57.034217
| 2021-05-26T17:13:39
| 2021-05-26T17:13:39
| 371,007,049
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,559
|
puml
|
@startuml
'https://plantuml.com/class-diagram
'class Board(Modellable):
' """"Facade"""
'
' def __init__(self, **kwargs):
' tasks = kwargs.get('tasks') or []
' repo = kwargs.get('repo')
'
' assert type(tasks) == list
'
' self.__tasks = tasks
' self.__repo = repo
'
' def add_task(self, task):
' self.__tasks.append(task)
'
' def to_dict(self):
' if type(self) != Board:
' self = self.decorated_board
'
' return {
' "tasks": self.__tasks,
' "repo": self.__repo,
' }
interface Modellable {
+{abstract}to_dict() : Dictionary
}
class Board {
+Board(params: Dictionary)
+add_task(task: Task)
-tasks : Task[]
-repo : Repository
}
'class BoardMeta(ABC, Board):
' def __init__(self, decorated_board):
' self.decorated_board = decorated_board
'
abstract class BoardMeta {
+BoardMeta(decorated_board : Board)
-decorated_board : Board
}
'class BackgroundMeta(BoardMeta):
' def __init__(self, decorated_board, background):
' super().__init__(decorated_board)
'
' bg_url = background
' self.decorated_board.background = bg_url
'
' def to_dict(self):
' return super().to_dict() | {
' "background": self.decorated_board.background
' }
class BackgroundMeta {
+BackgroundMeta(decorated_board : Board, background : string)
+to_dict() : Dictionary
}
Modellable <--o BoardMeta
Modellable <|.. BoardMeta
Modellable <|.. Board
BoardMeta <|-- BackgroundMeta
@enduml
| false
| true
| false
| false
|
class
|
2f03cef1c729f436c0f8545dddb0937b56025a9c
|
9fb800bced4689dc1cd56f5fd38f288062d5140c
|
/src/projects-service/Application/Controllers/ProjectsController.puml
|
5debd56516ad56d4a5a9b5dd147b730007b748cc
|
[] |
no_license
|
converge-app/uml-diagrams
|
b0638f3b801ced52b650025b1b81d29f4ff345fe
|
4202d41a464838d7604062e407b065bf512ad8d6
|
refs/heads/master
| 2020-11-25T09:53:56.136779
| 2019-12-17T12:11:29
| 2019-12-17T12:11:29
| 228,607,152
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 818
|
puml
|
@startuml
class ProjectsController {
- <<readonly>> _mapper : IMapper
- <<readonly>> _projectRepository : IProjectRepository
- <<readonly>> _projectService : IProjectService
+ ProjectsController(projectService:IProjectService, projectRepository:IProjectRepository, mapper:IMapper)
+ <<async>> CreateProject(projectDto:ProjectCreationDto) : Task<IActionResult>
+ GetAll() : IActionResult
+ GetByOwnerId(id:string) : IActionResult
+ GetByFreelancerId(id:string) : IActionResult
+ <<async>> GetByUser(userId:string) : Task<IActionResult>
+ <<async>> GetOpen() : Task<IActionResult>
+ GetById(id:string) : IActionResult
+ Update(id:string, projectDto:ProjectUpdateDto) : IActionResult
+ Delete(id:string) : IActionResult
}
ControllerBase <|-- ProjectsController
@enduml
| false
| true
| false
| false
|
class
|
ffde0e706ad43f6b0f9b0e697e011f2add60d14f
|
1459446d946ec0780686fc519d76751f1cfee0c6
|
/input/images-source/overview-app-launch.plantuml
|
f9508879caa3b78d6d8f1b4395418d7c71f2f31d
|
[] |
no_license
|
robstwd/smart-app-launch
|
f5d53ae2415aa49e4685354c8590f06b3d497284
|
1cd595345493fa8449073fd81cceb0215814c483
|
refs/heads/master
| 2023-08-22T15:25:21.546367
| 2021-10-14T18:06:26
| 2021-10-14T18:06:26
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 754
|
plantuml
|
@startuml
participant App
participant "EHR with Authorization Server" as EHR
participant "FHIR Server" as FHIR
opt Precondition: Client Registration
App ->> EHR: (may be out of band)
end
alt EHR Launch
EHR->>EHR: EHR user \nlaunches app
EHR->> App: Launch request
else Standalone Launch
App->>App: App user \nconnects to EHR
end
App ->> FHIR: Discovery request
FHIR ->> App: Discovery response
App ->> EHR: Authorization request
opt
EHR->> EHR: EHR incorporates user input\ninto authorization decision
end
alt Granted
EHR ->> App: Authorization granted
App ->> FHIR: Access token request
EHR ->> App: Access token response
App ->> FHIR: Request Resources
else Denied
EHR ->> App: Authorization error
end
@enduml
| false
| true
| false
| false
|
sequence
|
433c2a812018b9c32b6c7c4b7d17b6c95daa2560
|
d6374fe9363a41031c51eb622cb0cb5e75b78380
|
/docs/technical/account-lookup-service/assets/diagrams/sequence/seq-acct-lookup-admin-delete-oracle-7.3.4.puml
|
3a6a6eecb837db4dde77a6dfa72ee2fbf4e3377c
|
[
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
mojaloop/documentation
|
18a1e58443956b9c718f5f85590f652f803f4748
|
6ad904da0293bb259bd9f5140bcecd719d8c8024
|
refs/heads/master
| 2023-07-26T17:13:14.811484
| 2023-06-26T15:18:57
| 2023-06-26T15:18:57
| 170,135,923
| 24
| 98
|
NOASSERTION
| 2023-09-01T14:57:33
| 2019-02-11T13:45:44
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 3,026
|
puml
|
/'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
--------------
******'/
@startuml
' declare title
title 7.3.4 Delete Oracle Endpoint
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' control - ALS Admin Handler
' database - Database Persistent Store
' declare actors
entity "HUB OPERATOR" as OPERATOR
boundary "Account Lookup Service Admin API" as ALSADM
control "DELETE Oracle Handler" as ORC_HANDLER
database "ALS Store" as DB
box "Account Lookup Service" #LightYellow
participant ALSADM
participant ORC_HANDLER
participant DB
end box
' start flow
activate OPERATOR
group Get Oracle Endpoint
OPERATOR -> ALSADM: Request to Delete Oracle Endpoint -\nDELETE /oracles/{ID}
activate ALSADM
ALSADM -> ORC_HANDLER: Delete Oracle Endpoint
activate ORC_HANDLER
ORC_HANDLER -> DB: Update existing Oracle Endpoint By ID
hnote over DB #lightyellow
Update isActive = false
end note
alt Delete existing Oracle Endpoint (success)
activate DB
DB -> ORC_HANDLER: Return Success
deactivate DB
ORC_HANDLER -> ALSADM: Return success response
deactivate ORC_HANDLER
ALSADM --> OPERATOR: Return <color #000000><b>HTTP Status:</b> 204</color>
deactivate ALSADM
deactivate OPERATOR
end
alt Delete existing Oracle Endpoint (failure)
DB -> ORC_HANDLER: Throws Error (Not Found)
ORC_HANDLER -> ALSADM: Throw Error
note left of ALSADM #yellow
Message:
{
"errorInformation": {
"errorCode": <Error Code>,
"errorDescription": <Msg>,
}
}
end note
ALSADM --> OPERATOR: Return <color #FF0000><b>HTTP Status:</b> 502</color>
end
end
@enduml
| false
| true
| true
| false
|
sequence
|
9eb2456bf8495f81e1db71e63a69977debe996dd
|
89880c1a662b72f2dc7bd39906a04e02ac127050
|
/Models/usecase.puml
|
1a526faf1751308f19c968b40fd031bca04dc7de
|
[] |
no_license
|
adrien88/PingCounter
|
81761e7b9d774793fcd6ce0718229d5485d6385f
|
916037e03927b2a03a9d4fac555e91616b51c4bb
|
refs/heads/main
| 2023-09-03T19:31:26.496440
| 2021-10-14T09:13:57
| 2021-10-14T09:13:57
| 411,169,549
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 387
|
puml
|
@startuml
Title uses case
left to right direction
actor Arbitre as user
package action {
"Enregistrer les joueurs" as (addPlayer)
"Démarrer un match" as (newMatch)
"Démarrer un set" as (newSet)
"Ajouter des points" as (addToScore)
"Lire le score" as (getScore)
}
user --> addPlayer
user --> newMatch
user --> newSet
user --> addToScore
user --> getScore
@enduml
| false
| true
| true
| false
|
usecase
|
52a27e64717cd4960f0e6d07606e3c33d0030682
|
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
|
/CleanSheets/src/main/java/csheets/worklog/n1130383/sprint3/ipc02.2_Analysis.puml
|
612e78904362b600c15064f6e72fa7a636a317d0
|
[] |
no_license
|
ABCurado/University-Projects
|
7fb32b588f2c7fbe384ca947d25928b8d702d667
|
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
|
refs/heads/master
| 2021-01-12T05:25:21.614584
| 2017-01-03T15:29:00
| 2017-01-03T15:29:00
| 77,926,226
| 1
| 3
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 407
|
puml
|
@startuml doc-files/ipc02.2_analysis.png
class AWSExtension {
+NAME: String
}
class AWSUI {
}
class AWSPanel
class AWSController
class WorkbookPreview
note "AWS:Advanced Workbook Search" as N1
AWSExtension -> AWSUI : getUIExtension(UIController)
AWSUI -> AWSPanel : getSideBar():JComponent
AWSPanel-> AWSController
AWSController->WorkbookPreview: new(Workbook)
@enduml
| false
| true
| false
| false
|
sequence
|
65ce7944cf612e7e246d20da65921be89a7df3d4
|
3a996511e297bb5f9bd9cde32145ebad9b224396
|
/WebView/data/class_diag.puml
|
c706a2c64871debae6e705f0d10e1bf31991e2a7
|
[] |
no_license
|
DerRustam/WebInterface
|
16abe72afd2f2dd2324617cd35d350c4f8cc6212
|
680b755f81b9fbe35f098e7922bc46f4f4f9c9f0
|
refs/heads/master
| 2020-09-27T09:18:53.464943
| 2019-12-07T09:29:30
| 2019-12-07T09:29:30
| 226,483,775
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 6,647
|
puml
|
@startuml
abstract class DAOPack.DAO
abstract class control_pack.ServiceController
annotation java.lang.Override
annotation lombok.AllArgsConstructor
annotation lombok.Getter
annotation lombok.Setter
class DAOPack.AccountDAO
class DAOPack.Digital_CopyDAO
class DAOPack.OrderDAO
class DAOPack.Product_FeedbackDAO
class DAOPack.PublisherDAO
class DAOPack.PurchaseDAO
class DAOPack.SoftwareDAO
class DAOPack.Software_ClassDAO
class DTO.SoftwareDTO
class EntityPack.Account
class EntityPack.Digital_Copy
class EntityPack.Order
class EntityPack.Product_Feedback
class EntityPack.Publisher
class EntityPack.Purchase
class EntityPack.Software
class EntityPack.Software_Class
class Servlets.MainServlet
class com.google.gson.Gson
class control_pack.OperationResult
class java.io.File
class java.io.FileInputStream
class java.io.FileOutputStream
class java.io.IOException
class java.io.PrintWriter
class java.nio.file.Files
class java.nio.file.Path
class java.nio.file.Paths
class java.sql.Connection
class java.sql.Date
class java.sql.DriverManager
class java.sql.ResultSet
class java.sql.SQLException
class java.sql.Timestamp
class java.util.ArrayList
class java.util.HashMap
class java.util.List
class java.util.Map
class java.util.Properties
class javax.servlet.ServletException
class javax.servlet.http.HttpServlet
class javax.servlet.http.HttpServletRequest
class javax.servlet.http.HttpServletResponse
DAOPack.DAO ..> java.sql.ResultSet
DAOPack.DAO ..> java.sql.SQLException
DAOPack.DAO ..> java.util.ArrayList
control_pack.ServiceController ..> java.io.File
control_pack.ServiceController ..> java.io.FileInputStream
control_pack.ServiceController ..> java.io.FileOutputStream
control_pack.ServiceController ..> java.io.IOException
control_pack.ServiceController ..> java.nio.file.Files
control_pack.ServiceController ..> java.nio.file.Path
control_pack.ServiceController ..> java.nio.file.Paths
control_pack.ServiceController ..> java.sql.Connection
control_pack.ServiceController ..> java.sql.Date
control_pack.ServiceController ..> java.sql.DriverManager
control_pack.ServiceController ..> java.sql.SQLException
control_pack.ServiceController ..> java.sql.Timestamp
control_pack.ServiceController ..> java.util.ArrayList
control_pack.ServiceController ..> java.util.HashMap
control_pack.ServiceController ..> java.util.Properties
DAOPack.AccountDAO --|> DAOPack.DAO
DAOPack.AccountDAO ..> control_pack.ServiceController
DAOPack.AccountDAO ..> java.lang.Override
DAOPack.AccountDAO ..> EntityPack.Account
DAOPack.AccountDAO ..> java.util.ArrayList
DAOPack.Digital_CopyDAO --|> DAOPack.DAO
DAOPack.Digital_CopyDAO ..> control_pack.ServiceController
DAOPack.Digital_CopyDAO ..> java.lang.Override
DAOPack.Digital_CopyDAO ..> EntityPack.Digital_Copy
DAOPack.Digital_CopyDAO ..> java.io.IOException
DAOPack.Digital_CopyDAO ..> java.util.ArrayList
DAOPack.OrderDAO --|> DAOPack.DAO
DAOPack.OrderDAO ..> control_pack.ServiceController
DAOPack.OrderDAO ..> java.lang.Override
DAOPack.OrderDAO ..> EntityPack.Order
DAOPack.OrderDAO ..> java.io.IOException
DAOPack.OrderDAO ..> java.util.ArrayList
DAOPack.Product_FeedbackDAO --|> DAOPack.DAO
DAOPack.Product_FeedbackDAO ..> control_pack.ServiceController
DAOPack.Product_FeedbackDAO ..> java.lang.Override
DAOPack.Product_FeedbackDAO ..> EntityPack.Product_Feedback
DAOPack.Product_FeedbackDAO ..> java.io.IOException
DAOPack.Product_FeedbackDAO ..> java.util.ArrayList
DAOPack.PublisherDAO --|> DAOPack.DAO
DAOPack.PublisherDAO ..> control_pack.ServiceController
DAOPack.PublisherDAO ..> java.lang.Override
DAOPack.PublisherDAO ..> EntityPack.Publisher
DAOPack.PublisherDAO ..> java.io.IOException
DAOPack.PublisherDAO ..> java.util.ArrayList
DAOPack.PurchaseDAO --|> DAOPack.DAO
DAOPack.PurchaseDAO ..> control_pack.ServiceController
DAOPack.PurchaseDAO ..> java.lang.Override
DAOPack.PurchaseDAO ..> EntityPack.Purchase
DAOPack.PurchaseDAO ..> java.io.IOException
DAOPack.PurchaseDAO ..> java.util.ArrayList
DAOPack.SoftwareDAO --|> DAOPack.DAO
DAOPack.SoftwareDAO ..> control_pack.ServiceController
DAOPack.SoftwareDAO ..> java.lang.Override
DAOPack.SoftwareDAO ..> DTO.SoftwareDTO
DAOPack.SoftwareDAO ..> EntityPack.Software
DAOPack.SoftwareDAO ..> java.io.IOException
DAOPack.SoftwareDAO ..> java.util.ArrayList
DAOPack.Software_ClassDAO --|> DAOPack.DAO
DAOPack.Software_ClassDAO ..> control_pack.ServiceController
DAOPack.Software_ClassDAO ..> java.lang.Override
DAOPack.Software_ClassDAO ..> EntityPack.Software_Class
DAOPack.Software_ClassDAO ..> java.io.IOException
DAOPack.Software_ClassDAO ..> java.util.ArrayList
EntityPack.Account ..> lombok.AllArgsConstructor
EntityPack.Account ..> lombok.Getter
EntityPack.Account ..> lombok.Setter
EntityPack.Account ..> java.sql.Date
EntityPack.Digital_Copy ..> lombok.AllArgsConstructor
EntityPack.Digital_Copy ..> lombok.Getter
EntityPack.Digital_Copy ..> lombok.Setter
EntityPack.Order ..> lombok.AllArgsConstructor
EntityPack.Order ..> lombok.Getter
EntityPack.Order ..> lombok.Setter
EntityPack.Order ..> java.sql.Timestamp
EntityPack.Product_Feedback ..> lombok.AllArgsConstructor
EntityPack.Product_Feedback ..> lombok.Getter
EntityPack.Product_Feedback ..> lombok.Setter
EntityPack.Publisher ..> lombok.AllArgsConstructor
EntityPack.Publisher ..> lombok.Getter
EntityPack.Publisher ..> lombok.Setter
EntityPack.Purchase ..> lombok.AllArgsConstructor
EntityPack.Purchase ..> lombok.Getter
EntityPack.Purchase ..> lombok.Setter
EntityPack.Software ..> lombok.AllArgsConstructor
EntityPack.Software ..> lombok.Getter
EntityPack.Software ..> lombok.Setter
EntityPack.Software ..> java.sql.Date
EntityPack.Software_Class ..> lombok.AllArgsConstructor
EntityPack.Software_Class ..> lombok.Getter
EntityPack.Software_Class ..> lombok.Setter
Servlets.MainServlet ..> control_pack.ServiceController
Servlets.MainServlet ..> java.lang.Override
Servlets.MainServlet ..> com.google.gson.Gson
Servlets.MainServlet ..> control_pack.OperationResult
Servlets.MainServlet ..> java.io.IOException
Servlets.MainServlet ..> java.io.PrintWriter
Servlets.MainServlet ..> java.sql.SQLException
Servlets.MainServlet ..> java.util.ArrayList
Servlets.MainServlet ..> java.util.HashMap
Servlets.MainServlet ..> java.util.List
Servlets.MainServlet ..> java.util.Map
Servlets.MainServlet ..> javax.servlet.ServletException
Servlets.MainServlet --|> javax.servlet.http.HttpServlet
Servlets.MainServlet ..> javax.servlet.http.HttpServletRequest
Servlets.MainServlet ..> javax.servlet.http.HttpServletResponse
@enduml
| false
| true
| false
| false
|
class
|
d833a88df1fe5d668883ba160883a118a3fd4a81
|
8fc309b2349f4592d4c78219f6248bb32f28fa0f
|
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-checkout-order.puml
|
45f5da806577f6025339a356b24f5fc02e444e3e
|
[
"MIT",
"LicenseRef-scancode-generic-cla"
] |
permissive
|
xzillen/platform
|
81175b30161afabef25a9732ed840d17827ddf91
|
b301424916a14006391c241aaee6260e782c79f3
|
refs/heads/master
| 2022-12-31T01:24:21.476994
| 2020-10-23T13:14:18
| 2020-10-23T13:14:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 10,060
|
puml
|
@startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreCheckoutOrderOrderDefinition, "order\n(Order root table)") {
primary_key(id) id
primary_key(versionId) version
autoIncrement int
orderNumber numberRange
not_null(billingAddressId) foreignKey
not_null(billingAddressVersionId) referenceVersion
not_null(currencyId) foreignKey
not_null(languageId) foreignKey
not_null(salesChannelId) foreignKey
not_null(orderDateTime) dateTime
orderDate date
price cartPrice
amountTotal float
amountNet float
positionPrice float
taxStatus string
shippingCosts calculatedPrice
shippingTotal float
not_null(currencyFactor) float
deepLinkCode string
affiliateCode string
campaignCode string
customerComment longText
not_null(stateId) stateMachineState
ruleIds list
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition, "order_address\n(Order address)") {
primary_key(id) id
primary_key(versionId) version
not_null(countryId) foreignKey
countryStateId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
not_null(street) string
not_null(zipcode) string
not_null(city) string
company string
department string
title string
vatId string
phoneNumber string
additionalAddressLine1 string
additionalAddressLine2 string
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition, "order_customer\n(Order customer)") {
primary_key(id) id
primary_key(versionId) version
customerId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(email) string
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
company string
title string
customerNumber string
customFields customFields
remoteAddress remoteAddress
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition, "order_delivery\n(Delivery)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(shippingOrderAddressId) foreignKey
not_null(shippingOrderAddressVersionId) referenceVersion
not_null(shippingMethodId) foreignKey
not_null(stateId) stateMachineState
not_null(trackingCodes) list
not_null(shippingDateEarliest) dateTime
not_null(shippingDateLatest) dateTime
shippingCosts calculatedPrice
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition, "order_delivery_position\n(Delivery position)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderDeliveryId) foreignKey
not_null(orderDeliveryVersionId) referenceVersion
not_null(orderLineItemId) foreignKey
not_null(orderLineItemVersionId) referenceVersion
price calculatedPrice
unitPrice float
totalPrice float
quantity int
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition, "order_line_item\n(Order line item)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
productId foreignKey
not_null(productVersionId) referenceVersion
parentId parentFk
not_null(parentVersionId) referenceVersion
coverId foreignKey
not_null(identifier) string
referencedId string
not_null(quantity) int
not_null(label) string
payload json
good bool
removable bool
stackable bool
not_null(position) int
not_null(price) calculatedPrice
priceDefinition priceDefinition
unitPrice float
totalPrice float
description string
type string
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition, "order_tag\n(M:N Mapping)") {
primary_key(orderId) foreignKey
primary_key(orderVersionId) referenceVersion
primary_key(tagId) foreignKey
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition, "order_transaction\n(Order transaction)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(paymentMethodId) foreignKey
not_null(amount) calculatedPrice
not_null(stateId) stateMachineState
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
ForeignTable(ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition, "state_machine_state") {
}
ForeignTable(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency") {
}
ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreCheckoutDocumentDocumentDefinition, "document") {
}
ForeignTable(ShopwareCoreSystemCountryCountryDefinition, "country") {
}
ForeignTable(ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition, "country_state") {
}
ForeignTable(ShopwareCoreSystemSalutationSalutationDefinition, "salutation") {
}
ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") {
}
ForeignTable(ShopwareCoreCheckoutShippingShippingMethodDefinition, "shipping_method") {
}
ForeignTable(ShopwareCoreContentMediaMediaDefinition, "media") {
}
ForeignTable(ShopwareCoreContentProductProductDefinition, "product") {
}
ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") {
}
ForeignTable(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method") {
}
' relationshipd
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
@enduml
| false
| true
| false
| false
|
uml-unknown
|
8ea0383818cd7caf9ea56859228a8e3e98457663
|
fce2d7964ab73c9a3ecae18177ad8115ee370d06
|
/strategy/doc/example/class.puml
|
4c2a86e1d9a3c930154cb7d0d50e0f34e3a213e6
|
[] |
no_license
|
nsanitate/design-patterns
|
56bfcd97e6a98572a897a49483513dba133e4113
|
6056a264c8b0dbe512084d47f7ee2e9c3550f78f
|
refs/heads/master
| 2021-09-14T09:35:33.889605
| 2018-05-11T11:04:27
| 2018-05-11T11:04:27
| 125,198,854
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 434
|
puml
|
@startuml Strategy Pattern example class diagram
title Strategy Pattern example class diagram
class List {
ISortBehaviour sortBehaviour
List sort()
}
interface ISortBehaviour {
List sort(List list)
}
class BubbleSortBehaviour {
List sort(List list)
}
class MergeSortBehaviour {
List sort(List list)
}
List -> ISortBehaviour
ISortBehaviour <|-- BubbleSortBehaviour
ISortBehaviour <|-- MergeSortBehaviour
@enduml
| false
| true
| false
| false
|
class
|
ea5f8bdc167e01459cefbb90d5e3ded4b420fb08
|
115c39b76697b3cc996768a0ae01bc98a9f7afee
|
/Assets/UML/Device.puml
|
c969558ad12f2649620f0b08ae05d9a4bbc3f196
|
[
"MIT"
] |
permissive
|
Edy-kun/GGJ-Game
|
2d93a0664951861e2c3218bac1dfbae5d8a868c4
|
e0ae41ae679bb06a00db2c7e8f5723c387b8312f
|
refs/heads/master
| 2021-07-06T23:36:33.549698
| 2020-02-01T16:48:38
| 2020-02-01T16:48:38
| 237,224,883
| 0
| 0
|
MIT
| 2021-04-21T19:53:20
| 2020-01-30T14:00:15
|
C#
|
UTF-8
|
PlantUML
| false
| false
| 501
|
puml
|
@startuml
!define DARKBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
class device {
+ DeviceConfig config
# AudioSource AudioSource
}
class DeviceConfig{
+particlesystem Repair;
+particlesystem Break;
+AudioClip Break;
+AudioClip Repaired;
}
interface IRepairable{
+ List<Element> RequiredElements()
+ void Repair()
+ void Break()
}
interface IDamagable
device -> IRepairable
IRepairable-> IDamagable
ScriptableObject <-- DeviceConfig
@enduml
| false
| true
| true
| false
|
class
|
20ccd6ff4e02e8e2c26e712cafc9c3ed514c0437
|
0d2a35c13be1c9575d0ec63a49a88778f523ead3
|
/doc/diagrams/puml/stateDiagram.puml
|
336f221a6ee9b717ef641dbf2e4242ad7d22cb4f
|
[] |
no_license
|
Karolina606/Safari
|
fb99904d4cc093bf4d2508181ae77756dc0540a7
|
b22e49ba55ce94d896f2dd3848e04dd059ebe1c9
|
refs/heads/master
| 2022-07-29T03:01:51.781883
| 2020-05-26T10:29:02
| 2020-05-26T10:29:02
| 254,879,029
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 825
|
puml
|
@startuml
title Animal state diagram
[*] --> Initialised
MakingAction: check energyLevel
Sleeping: increase energyLevel
NoSleeping: move
Moving: decrease energyLevel
Reacting: check met object and react
Eating: increase energy energyLevel
Reproducing: make new animal
Settling: settle down
Checking: Chceck if enough moves in that iteration
Initialised --> MakingAction: put on the map
MakingAction --> Sleeping: fall asleep or continue sleeping
MakingAction --> NoSleeping: wake up or continue not sleeping
NoSleeping --> Moving: make move
Moving --> Reacting: found\n position
Reacting --> Settling: no object met
Reacting --> Eating: object to eat
Reacting --> Reproducing: object of the same type
Settling --> Checking
Eating --> Checking
Reproducing --> Checking
Checking --> Moving: yes
Checking --> [*]: no
@enduml
| false
| true
| false
| false
|
sequence
|
97e1c7f8c1937b1feadcdbad7522bc1f1f23314c
|
67b794119881212426459655fed63b9cdc0dfe1e
|
/docs/proposals/images/controlplane/controlplane-init-6.plantuml
|
31e2a90d846e1b57f0c27230e088934bd589d4d4
|
[
"Apache-2.0"
] |
permissive
|
kubernetes-sigs/cluster-api
|
203e1912a218222cffc2b0f15cd1b025d32f3d73
|
b3e0615367f421302933c5ff6bcc48ecdcf9a8da
|
refs/heads/main
| 2023-09-01T04:53:16.329644
| 2023-08-31T18:16:48
| 2023-08-31T18:16:48
| 124,157,517
| 3,053
| 1,232
|
Apache-2.0
| 2023-09-14T20:07:21
| 2018-03-07T00:49:50
|
Go
|
UTF-8
|
PlantUML
| false
| false
| 1,976
|
plantuml
|
@startuml
title User scales up a KubeadmControlPlane
actor User
' -- GROUPS START ---
box #lightgreen
participant "API Server"
end box
box #violet
participant "KubeadmControlPlane Controller"
end box
' -- GROUPS END ---
User->"API Server":kubectl scale cp/my-control-plane -replicas=3
"API Server"-->>"KubeadmControlPlane Controller": KubeadmControlPlane Updated
"KubeadmControlPlane Controller"-> "KubeadmControlPlane Controller":Enqueues KubeadmControlPlane Reconcile
"KubeadmControlPlane Controller"-> "KubeadmControlPlane Controller":KubeadmControlPlane Controller Reconcile
activate "KubeadmControlPlane Controller"
note over "KubeadmControlPlane Controller": - ✅ KubeadmControlPlane.OwnerReferences \ncontains a Cluster
"KubeadmControlPlane Controller"->"API Server": Get Cluster
"KubeadmControlPlane Controller"<<--"API Server": Response
note over "KubeadmControlPlane Controller": - ✅ Cluster.Status.InfrastructureReady is true\n- ✅ KubeadmControlPlane instance is valid
"KubeadmControlPlane Controller"->"API Server": Get Machines matching label selector
"KubeadmControlPlane Controller"<<--"API Server": Response
opt #FFFFFFCC KubeadmControlPlane.Spec.Replicas >= 1, all existing Machines "Ready", num Machines < Replicas
"KubeadmControlPlane Controller"->"API Server": Create KubeadmConfig from KubeadmControlPlane.Spec.KubeadmConfigSpec
"KubeadmControlPlane Controller"<<--"API Server": Response
"KubeadmControlPlane Controller"->"API Server": Create InfrastructureMachine from KubeadmControlPlane.Spec.InfrastructureTemplate
"KubeadmControlPlane Controller"<<--"API Server": Response
"KubeadmControlPlane Controller"->"API Server": Create Machine using refs from created KubeadmConfig and InfrastructureMachine resources
"KubeadmControlPlane Controller"<<--"API Server": Response
end
"KubeadmControlPlane Controller"->"API Server": Update KubeadmControlPlane
"KubeadmControlPlane Controller"<<--"API Server": Response
hide footbox
@enduml
| false
| true
| true
| false
|
sequence
|
f7430296d485c6205c1752def4cd35dcae015cf5
|
9a0f20f04060f1a030a22197558dcecf7b936dd3
|
/doc/class_diagram.plantuml
|
0c43a53680bfeffc13b6d5b7672f2ba7b433a05f
|
[] |
no_license
|
Xiirf/acme-explorer-frontend
|
28e973bf749b536536961c028964823ce069dbae
|
3d7c1fba8a0ec156051861069b4e9219b2ae8605
|
refs/heads/master
| 2023-01-11T08:03:16.073810
| 2020-06-01T15:48:28
| 2020-06-01T15:48:28
| 246,382,449
| 0
| 0
| null | 2023-01-07T15:47:58
| 2020-03-10T18:52:12
|
TypeScript
|
UTF-8
|
PlantUML
| false
| false
| 4,690
|
plantuml
|
@startuml Class Diagram
Enum Status {
REJECTED,
PENDING,
DUE,
ACCEPTED,
CANCELLED
}
Enum Priority {
HIGH,
NEUTRAL,
LOW
}
Enum Mode {
DRAFT,
FINAL
}
Abstract Actor {
name: String {NotBlank}
surname: String {NotBlank}
email: String {NotBlank}
password: String {NotBlank}
phone: String
address: String
banned: Boolean = false {NotBlank}
}
Class Administrator
Class Manager
Class Ranger
Class Explorer
Class Auditor
Class Sponsor
Class SocialIdentity {
nickname: String {NotBlank}
name_network: String {NotBlank}
link: String {NotBlank}
photo: Image
}
Class EmergencyContact {
name: String {NotBlank}
email: String
phone: String
}
Class Message {
date: Date {NotBlank}
subject: String {NotBlank}
body: String {NotBlank}
priority: Priority
}
Class Folder {
name: String {NotBlank}
}
Class Trip {
ticker: String {NotBlank}
title: String {NotBlank}
description: String {NotBlank}
price: Float {NotBlank}
requirements: Array[String] {NotBlank}
publicationDate: Date {NotBlank}
start: Date {NotBlank}
end: Date {NotBlank}
cancelled: Boolean = False
reasonCancelling: String
}
Class LegalText {
title: String {NotBlank}
body: String {NotBlank}
numberApplicableLaws: Number {NotBlank}
createdAt: Date {NotBlank}
mode: Mode
}
Class Stage {
title: String {NotBlank}
description: String {NotBlank}
price: Float
}
Class Category {
name: String {NotBlank}
}
Class Application {
status: Status = Status.PENDING
payedAt: Date {NotBlank}
comments: String
reasonRejected: String
createdAt: Date {NotBlank}
}
Class CreditCard {
holderName: String {NotBlank}
brandName: String {NotBlank}
number: Number {NotBlank}
ExpirationMonth: Number {NotBlank}
ExpirationYear: Number {NotBlank}
CVV: Number {NotBlank}
}
Class Curriculum {
ticker: String {NotBlank}
}
Class PersonalRecord {
name: String {NotBlank}
photo: Image {NotBlank}
email: String {NotBlank}
LinkedIn: String {NotBlank}
}
Class EducationRecord {
diplomaTitle: String {NotBlank}
studiyingPeriod: String {NotBlank}
institution: String {NotBlank}
attachmentLink: String
comments: Array[String]
}
Class ProfessionalRecord {
companyName: String {NotBlank}
timePeriod: String {NotBlank}
role: String {NotBlank}
attachmentLink: String
comments: Array[String]
}
Class EndorserRecord {
endorserName: String {NotBlank}
email: String {NotBlank}
phone: String {NotBlank}
LinkedIn: String {NotBlank}
comments: Array[String]
}
Class MiscellaneousRecord {
title: String {NotBlank}
attachmentLink: String {NotBlank}
comments: Array[String]
}
Class Finder {
keyWord: String
priceMin: Float
priceMax: Float
dateMin: Date
dateMax: Date
}
Class Note {
createdAt: Date {NotBlank}
remark: String {NotBlank}
reply: String
repliedAt: Date
}
Class Audit {
createdAt: Date {NotBlank}
title: String {NotBlank}
description: String {NotBlank}
attachments: Array[String]
mode: Mode {NotBlank}
}
Class Sponsorship {
banner: String {NotBlank}
link: String {NotBlank}
}
Class GlobalVars {
cacheTimeOutFinderResults: Integer {NotBlank}
maxNumberFinderResults: Integer {NotBlank}
VatTaxe: Integer {NotBlank}
}
Class SurvivalClasses {
title: String {NotBlank}
description: String {NotBlank}
date: Date {NotBlank}
locationName: String {NotBlank}
locationCoordinates: String {NotBlank}
}
Class Story {
title: String {NotBlank}
text: String {NotBlank}
attachmentsLinks: Array[String] {NotBlank}
}
Actor <|-- Administrator
Actor <|-- Manager
Actor <|-- Explorer
Actor <|-- Ranger
Actor <|-- Auditor
Trip *-- "1..*" Stage
Manager *--> "*" Trip: Organize
Explorer "*" --> "*" Trip: Apply/Write
(Explorer, Trip).. Application
Explorer *-- "1" Finder
Actor "1" --> "1" Message: Send
Actor "1" --> "1" Message: Receive
Actor *-- "1..*" SocialIdentity
Explorer *-- "1..*" EmergencyContact
Ranger *-- "1..*" Trip: Guide
LegalText *--> "*" Trip
Category *--> "*" Category: Parent
Folder *--> "*" Message
Actor *--> "5..*" Folder
Ranger "1" --> "1" Curriculum
Curriculum *--> "1..*" PersonalRecord
Curriculum *--> "1..*" EducationRecord
Curriculum *--> "1..*" ProfessionalRecord
Curriculum *--> "1..*" EndorserRecord
Curriculum *--> "1..*" MiscellaneousRecord
Auditor "*" --> "*" Trip
(Auditor, Trip).. Note
(Auditor, Trip).. Audit
Sponsor "*" --> "*" Trip: Sponsor
(Sponsor , Trip) .. Sponsorship
CreditCard *--> "*" Sponsorship
Trip *--> "*" SurvivalClasses
(Explorer, Trip).. Story
@enduml
| false
| true
| false
| false
|
usecase
|
101ea108d524f2273f3b10edc1c8ca643c1a301b
|
1484f4a4d4c5b4689f8525742d1e4cda8fdb6d3a
|
/docs/diagrams/entrytracker/entryTrackerEditEntrySeqDiagram2.puml
|
8869f556b3b9a88d394d4d06fb53dc5f76fe33dc
|
[] |
no_license
|
AY2021S1-CS2113-T16-1/tp
|
8abd1e1798a8ecc64b4b3ae28dd5da618714b972
|
6ef0845c809addb46fef872101ef528780571b5d
|
refs/heads/master
| 2023-01-13T17:13:34.579399
| 2020-11-16T05:03:49
| 2020-11-16T05:03:49
| 300,199,426
| 0
| 1
| null | 2020-11-16T05:03:50
| 2020-10-01T08:10:30
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,888
|
puml
|
@startuml
autoactivate on
scale 900 width
skinparam shadowing false
skinparam sequence {
ActorBorderColor white
ActorBackgroundColor white
ActorFontColor white
ActorFontSize 17
ActorFontName ""
}
box "Data Tracker" #LightYellow
participant ":EntryTracker" as entryTracker <<class>>
endBox
box "Logic" #LightBlue
participant "retrieveEntryHandler:RetrieveEntryHandler"
participant ":ParamChecker"
endBox
box "Data" #LightGreen
participant "entryList:EntryList"
endBox
group "sd [handlePacket (Phase 1)]"
entryTracker-> "retrieveEntryHandler:RetrieveEntryHandler" : handlePacket
== Handling of Params in packet \nfor retrieval ==
"retrieveEntryHandler:RetrieveEntryHandler" -> "retrieveEntryHandler:RetrieveEntryHandler" : handleParams
"retrieveEntryHandler:RetrieveEntryHandler" -> ":ParamChecker" : setPacket(packet)
return
loop For all paramType in the command packet
note left: "Note: The entry to be edited is first retrieved \nusing the retrieve command."
"retrieveEntryHandler:RetrieveEntryHandler" -> "retrieveEntryHandler:RetrieveEntryHandler" : handleSingleParam
alt "paramType = PARAM_INDEX"
"retrieveEntryHandler:RetrieveEntryHandler" ->":ParamChecker": checkAndReturnIndex(paramType, entryList.getItems())
return index
note left: "Note: Set index to modify at entry list\nso that the entry of interest can be retrieved \nvia regular getter methods from entrylist"
"retrieveEntryHandler:RetrieveEntryHandler" -> "entryList:EntryList" : setIndexToModify(index)
return
end
return
end
return
return
end
@enduml
| false
| true
| false
| false
|
sequence
|
2c69ef9c87c8af9de994135846ec46d87e0129cd
|
483b8f52aa15b5ea6b40e2e33392a98f6e1fc617
|
/android_app/app/src/main/java/com/example/receiptApp/pages/aggregatePage/AggregatePageStructure.puml
|
d1aa330dafc96c81f476012a1f9ae8460f1649c4
|
[] |
no_license
|
simone-viozzi/progetto-programmazione-mobile
|
5f5cac1787ec429d00f7cca603fad85ff6ea747d
|
51d2abe857b110882682ee291d3af2cac9b553a6
|
refs/heads/main
| 2022-02-13T15:12:45.273485
| 2022-01-20T19:31:50
| 2022-01-20T19:31:50
| 414,304,943
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,548
|
puml
|
@startuml
'https://plantuml.com/class-diagram
class AppDatabase
{
}
class DbRepository {
}
class AttachmentRepository {
}
class ArchiveRepository
{
}
class App {
AppDatabase
DbRepository
AttachmentRepository
SharedPrefRepository
GraphsRepository
ArchiveRepository
DashboardRepository
onCreate()
}
AppDatabase ---* App
DbRepository ---* App
AttachmentRepository --* App
ArchiveRepository --* App
AppDatabase <. DbRepository
DbRepository -o ArchiveRepository
AttachmentRepository -o ArchiveRepository
App <. AggregatePageFragment
class AggregatePageFragment
{
args: AggregatePageFragmentArgs
viewModel: AggregatePageViewModel
binding: AggregatePageFragmentBinding
aggregatePageAdapter: AggregatePageAdapter
onCreateView()
onViewCreated()
}
class AggregatePageAdapter
{
attachmentRepository: AttachmentRepository
onCreateViewHolder()
onBindViewHolder()
getItemViewType()
}
AttachmentRepository ---o AggregatePageAdapter
AggregatePageFragment *-- AggregatePageAdapter
class AggregatePageViewModelFactory
{
attachmentRepository: AttachmentRepository
archiveRepository: ArchiveRepository
aggregate_id: Long
create()
}
class AggregatePageViewModel
{
attachmentRepository: AttachmentRepository
archiveRepository: ArchiveRepository
aggregate_id : Long
loadData()
deleteAggregate()
}
AggregatePageFragment ..> AggregatePageViewModelFactory
AggregatePageViewModelFactory *-- AggregatePageViewModel
AggregatePageFragment o--- AggregatePageViewModel
AttachmentRepository ---o AggregatePageViewModel
ArchiveRepository ---o AggregatePageViewModel
class AggregatePageDiffCallback
{
areItemsTheSame()
areContentsTheSame()
}
class AggregatePageViewHolder
{
}
AggregatePageAdapter *-- AggregatePageDiffCallback
AggregatePageAdapter *-- AggregatePageViewHolder
class AggregateViewHolder
{
bind()
}
class ElementViewHolder
{
bind()
}
AggregatePageViewHolder <|- AggregateViewHolder
AggregatePageViewHolder <|- ElementViewHolder
class ArchiveDataModel
class Aggregate
{
id: Int
aggr_id: Long
tag: String?
str_date: String?
thumbnail: Uri?
tot_cost: Float
}
class Element{
id: Int
name: String?
num: Int?
elem_tag: String?
cost: Double?
}
ArchiveDataModel <|-- Aggregate
ArchiveDataModel <|-- Element
AggregateViewHolder ..> Aggregate
ElementViewHolder ..> Element
AggregatePageViewModel ..> ArchiveDataModel
ArchiveRepository ...> AggregatePageViewHolder
@enduml
| false
| true
| false
| false
|
class
|
3f1f2fa27b3150e2b79cf4d347d2db8cacfcdefa
|
56c3d96069bdb4cdeadfae340022e3b90511afc0
|
/src/incl/symfony/component/console/input/input-option.puml
|
8734bd25ba5ce1f4be9bf4840a2a4117ef369bb1
|
[] |
no_license
|
nibralab/joomla-architecture
|
38db6234c9e12298716e529e46c907387e214166
|
99ab82e904fc56dc6113cf58a5990b295951aa12
|
refs/heads/master
| 2021-01-19T04:06:37.675771
| 2017-07-07T17:13:48
| 2017-07-07T17:13:48
| 36,740,646
| 3
| 5
| null | 2016-04-09T15:01:23
| 2015-06-02T14:57:25
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 598
|
puml
|
@startuml
namespace Symfony.Component.Console.Input {
class InputOption {
__
+<b>__construct</b>(string [, string|array, int, string, mixed)
--
+string <b>getShortcut</b>()
+string <b>getName</b>()
--
+bool <b>acceptValue</b>()
+bool <b>isValueRequired</b>()
+bool <b>isValueOptional</b>()
+bool <b>isArray</b>()
--
+<b>setDefault</b>([mixed])
+mixed <b>getDefault</b>()
--
+string <b>getDescription</b>()
--
+bool <b>equals</b>(InputOption)
}
}
@enduml
| false
| true
| false
| false
|
class
|
1955b8edb572e34c5f37cf3d5449df954ac09ce4
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/QuoteRenegotiationRequestedMessagePayload.puml
|
ea95395cc1dbd3ab1ede8b819f94e6f362d0c582
|
[] |
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
| 463
|
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 QuoteRenegotiationRequestedMessagePayload [[QuoteRenegotiationRequestedMessagePayload.svg]] extends MessagePayload {
type: String
buyerComment: String
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false
| true
| false
| false
|
class
|
1e6824149105c341ad604ea129fe0908b9c0d05e
|
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
|
/docs/uml/tests/device/service_test/interfaces/IDeviceNoteServiceTest.puml
|
21c275b01421dba12a9e7dd4aa254f5195c9dbef
|
[] |
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
| 181
|
puml
|
@startuml
class IDeviceNoteServiceTest {
+ get_file_path_test() : void
+ add_entry_test() : void
+ delete_entry_test() : void
+ read_entries_test() : void
}
@enduml
| false
| true
| false
| false
|
class
|
4dc452dc17dc195ea7b0032d3383ea5452bb8493
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/BusinessUnitAddressRemovedMessagePayload.puml
|
3fbb10856867b9acd2f2e216fb99da61e618edf1
|
[] |
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
| 473
|
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 BusinessUnitAddressRemovedMessagePayload [[BusinessUnitAddressRemovedMessagePayload.svg]] extends MessagePayload {
type: String
address: [[Address.svg Address]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false
| true
| false
| false
|
class
|
9fcf332914e26a2888c687492ff0984c00467ca8
|
365f05842a6b057745d77af3093e909e6e3622e6
|
/doc/cd.puml
|
4c2708c4b1e7bdf325749413b5357fffae8ddcfc
|
[] |
no_license
|
sosuisen/sosuisen-my-inventory-gatsby
|
ca475303e66c34d8d4dfd851893f8cd55b019cfb
|
9f3d582b595469f3e01fa6349f09e117a9762eaf
|
refs/heads/main
| 2023-03-17T18:00:05.987366
| 2021-03-11T09:53:56
| 2021-03-11T09:53:56
| 337,953,673
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,943
|
puml
|
' PlantUML
@startuml cd
title An example of Continuous Deployment using GitDocumentDB
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.2.0
!includeurl ICONURL/common.puml
!includeurl ICONURL/devicons/github_badge.puml
!includeurl ICONURL/devicons/git.puml
!includeurl ICONURL/font-awesome-5/cogs.puml
!define SPRITESURL https://raw.githubusercontent.com/plantuml-stdlib/gilbarbara-plantuml-sprites/v1.0/sprites
!includeurl SPRITESURL/gatsby.puml
!includeurl SPRITESURL/netlify.puml
!includeurl SPRITESURL/electron.puml
node "<$electron> Electron App\n(Inventory Manager)" {
database "GitDocumentDB" #f0f0ff;line:blue{
DEV_GIT(localrepos, Local Git repository, database) #f0f0ff;line:blue;line.dashed;{
collections "JSON files" as localjson #3030f0;text:white
}
}
}
DEV_GITHUB_BADGE(generatorrepos, Generator Git repository\n(sosuisen-my-inventory-gatsby), database) #f0fff0;line:green{
DEV_GIT(submodule, git submodule, database) #fff0f0;line:red;line.dashed;{
collections "JSON files" as repjson #3030f0;text:white
}
component "<$gatsby>Gatsby" {
component "gatsby-source-filesystem" #line.dashed{
component "gatsby-transformer-json"as transformer #f0fff0;line:909090;line.dashed
}
}
}
DEV_GITHUB_BADGE(sourcerepos, Source Git repository\n(sosuisen-my-inventory), database) #fff0f0;line:red{
FA5_COGS(githubactions, GitHub actions, control) #ffffff
collections "JSON files" as json #3030f0;text:white
}
node "<$netlify>Netlify" {
FA5_COGS(githubapps, GitHub Apps, control)
collections "Static website" as website
githubapps -> website: generate
}
localrepos <-down-> sourcerepos : Synchronize\n (pull, resolve conflicts and push)
sourcerepos <-- submodule : "read\n(update --remote)"
submodule <-- transformer : "read"
githubactions --> githubapps : webhook
generatorrepos --> githubapps: hook
generatorrepos <-- githubapps: read
@enduml
| false
| true
| false
| false
|
sequence
|
50a33991085c21bbb413f8ac20bfac0ceda26629
|
91cc372e0ac19fe7dd67f5c712801de341d975b8
|
/uml/keb 208/empty.puml
|
15da5f2bf7bd430fa6d9d7cd48ae2c2efa295671
|
[] |
no_license
|
Alser69rus/A3135
|
76d62eb826d22e96da22774d9210927c4f7a397d
|
c06155783a1ffa8ff79f746edf441c6df1e82f2f
|
refs/heads/master
| 2022-12-07T12:10:41.344543
| 2020-08-30T14:51:52
| 2020-08-30T14:51:52
| 291,405,161
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 312
|
puml
|
@startuml
[*]-->prepare_pressure
prepare_pressure-->set_ptc
set_ptc-->auto
auto-->wait035:True
wait035->wait035:upd
wait035-->measure:done (ptc2<=0.35)
measure->measure:upd
measure-->show_result:done\n(ptc2<0.005)
show_result-->[*]:back
note right of set_ptc:rdkp.state_two
note right of show_result:t<=4
@enduml
| false
| true
| false
| false
|
sequence
|
7f2e46a88c0999868d3e5bd630f2eeb4842edc80
|
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
|
/metrics/ci_integrations/docs/diagrams/add_coverage_data_sequence_diagram.puml
|
4a548bebb12de03e454d246fe05f89d116bb42d2
|
[
"Apache-2.0"
] |
permissive
|
solid-vovabeloded/flank-dashboard
|
7e952fa1399585d3f15cae2ed2cab435fb82df3f
|
15dae0c40823cc12886a1bb0c087442c0697ac89
|
refs/heads/master
| 2023-07-11T19:54:58.430004
| 2021-08-06T10:29:26
| 2021-08-06T10:29:26
| 389,593,827
| 0
| 0
|
Apache-2.0
| 2021-07-26T10:33:52
| 2021-07-26T10:25:59
| null |
UTF-8
|
PlantUML
| false
| false
| 638
|
puml
|
@startuml add_coverage_data_sequence_diagram
'https://plantuml.com/sequence-diagram
skinparam SequenceMessageAlignment center
skinparam ParticipantPadding 80
participant BuildsSyncStage
participant SourceClient
?-> BuildsSyncStage ++ : addCoverageData(//builds//)
note right of BuildsSyncStage: //final result = []//
||8||
loop for each //build// in //builds//
BuildsSyncStage -> SourceClient ++ : fetchCoverage(//build//)
return //coverage//
note right of BuildsSyncStage: //final newBuild = build.copyWith(coverage: coverage)//
note right of BuildsSyncStage: //result.add(newBuild)//
end
||8||
return result
@enduml
| false
| true
| false
| false
|
sequence
|
95101c19c2082ed36a91b80c6144738c12dbfe0e
|
4e162b5483004189980b6f010a787cd88c782802
|
/src/design/parametric-los-class-diagram.puml
|
ba4d0e49b516523789774217be02d918d5597020
|
[
"EPL-1.0",
"Apache-2.0"
] |
permissive
|
CS-SI/Rugged
|
407e32bc80d589b32d133a8d2c0fb1e6530f4ab6
|
acf902ea88dcd4c8df1afafa4b15d49ad949e9da
|
refs/heads/master
| 2023-06-07T19:19:24.995766
| 2023-03-23T10:49:18
| 2023-03-23T10:49:18
| 45,696,988
| 6
| 4
|
Apache-2.0
| 2022-07-03T18:15:18
| 2015-11-06T17:35:21
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 3,065
|
puml
|
' Copyright 2013-2022 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You 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.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB/CCC9C5
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
package org.orekit.rugged #ECEBD8 {
package utils #DDEBD8 {
interface ParametricModel {
+getNbEstimatedParameters()
+getEstimatedParameters(parameters, start, length)
+setEstimatedParameters(parameters, start, length)
}
enum ParameterType {
+FIXED
+ESTIMATED
}
}
package linesensor #DDEBD8 {
class LineSensor
}
package los #DDEBD8 {
interface TimeDependentLOS {
+getNbPixels()
+getLOS(index, date)
+getLOS(index, date, parameters)
}
interface LOSTransform {
+transformLOS(i, los, date)
}
interface TimeIndependentLOSTransform {
+transformLOS(i, los)
}
class LOSBuilder {
+LOSBuilder(List<Vector3D> rawLOS)
+LOSBuilder addTransform(TimeIndependentLOSTransform transform)
+LOSBuilder addTransform(LOSTransform transform)
+TimeDependentLOS build()
}
ParametricModel <|.. TimeDependentLOS
ParametricModel <|.. LOSTransform
ParametricModel <|.. TimeIndependentLOSTransform
PolynomialRotation --|> LOSTransform
ParameterType <--* PolynomialRotation
FixedRotation --|> TimeIndependentLOSTransform
ParameterType <--* FixedRotation
TimeDependentLOS <-- LOSBuilder : builds
TimeIndependentLOSTransform <-- LOSBuilder : combines
LOSTransform <-- LOSBuilder : combines
LineSensor "1" *--> TimeDependentLOS
}
}
package o.a.c.m.analysis.differentiation #C4D2C5 {
class DerivativeStructure #D5E0D5/E2EBE2 {
+getOrder()
+getValue()
+getPartialDerivatives(order1, order2, ...)
}
LOSTransform --> DerivativeStructure
TimeIndependentLOSTransform --> DerivativeStructure
}
@enduml
| false
| true
| false
| false
|
class
|
7e0aaa801352c9885b13fb28274c5dd9ecdd2f51
|
fa13be4c94434971f61e1f1ba5d7b46b0168b85d
|
/docs-dev/plantuml/est-ca-provisioning-simple.plantuml
|
ff369850f2a7ad761389bfd67e159e898864522e
|
[
"MIT"
] |
permissive
|
Azure/iot-identity-service
|
244b907465d6a859491f12c3b30d547735345d96
|
33825efda701ae451cf6bb5e0f8b92f924c42acd
|
refs/heads/main
| 2023-08-08T13:06:49.644336
| 2023-07-27T22:35:44
| 2023-07-27T22:35:44
| 279,231,136
| 35
| 44
|
MIT
| 2023-09-14T18:53:27
| 2020-07-13T06:35:03
|
Rust
|
UTF-8
|
PlantUML
| false
| false
| 3,280
|
plantuml
|
@startuml
title Device Provisioning
skinparam maxMessageSize 300
participant "EST" as est
participant "DPS" as dps
participant "IoT Hub" as hub
box Device #LightBlue
participant "Edge runtime" as runtime
end box
autonumber
note over hub
These are the kinds of certs involved in the EST flow:
1. The EST identity cert. This is the cert that the device uses for TLS client auth to authenticate itself with the EST endpoint. The device rotates this periodically via the EST enrolment workflow, using the current EST identity cert for TLS client auth.
2. The boostrap identity cert. This is the initial EST identity cert.
3. The device CA cert. The device requests this cert from the EST endpoint if it needs it for minting any other certs locally (see the next two points).
4. The device identity cert. Depending on the user's choice, the device either gets this cert from the EST endpoint (after the initial enrolment that granted it an EST identity cert), or it mints it locally via the device CA cert.
5. Module certs. Depending on the user's choice, the device either gets these certs from the EST endpoint (after the initial enrolment that granted it an EST identity cert), or it mints them locally via the device CA cert.
end note
runtime -> runtime: At first, the bootstrap ID cert is used as the EST identity cert
loop for creating and renewing EST identity cert
runtime -> runtime: Create TLS client using current EST identity cert
runtime -> runtime: Generate new key and CSR for new EST identity cert
runtime -> est ++: Connect using TLS client and perform EST enrolment to get a new EST identity cert corresponding to the CSR
est -> est: Verify client cert against CA
est -> est: Sign CSR
return Signed cert
runtime -> runtime: Set signed cert to be the EST identity cert for future requests
runtime -> runtime: Wait for the EST identity cert to be near expiry
end
loop for creating and renewing device CA cert (if needed)
runtime -> runtime: Create TLS client using current EST identity cert
runtime -> runtime: Generate new key and CSR for new device CA cert
runtime -> est ++: Connect using TLS client and send request for new device CA cert corresponding to the CSR
est -> est: Verify client cert against device identity CA
est -> est: Sign CSR
return Signed cert
runtime -> runtime: Set signed cert to be the device CA cert for future requests
runtime -> runtime: Wait for the device CA cert to be near expiry
end
loop for creating and renewing device identity cert
alt if user configured device identity to be obtained from EST
runtime -> est ++: Similar process as for device CA cert above
return Signed cert
else if user configured device identity to be minted locally
runtime -> runtime: Generate new key and CSR for new device identity cert
runtime -> runtime: Sign CSR using device CA cert
runtime -> runtime: Wait for the device identity cert to be near expiry
end
end
loop for (re-)provisioning
runtime -> runtime: Create TLS client using current device identity cert
runtime -> dps ++: Connect using TLS client and send provisioning request
dps -> dps: Verify client cert against device identity CA
dps -> hub ++: Register device
return
return Provisioning info (IoT Hub + device identity)
end
@enduml
| false
| true
| false
| false
|
sequence
|
11473a7457186dedd9bbc700cf9b668ddf8d9337
|
8664bf2165c807e312c4ddc0cbab2815c56119e1
|
/documentss/premium_packs/delete_pack.puml
|
aa3a4f5a3b4334489a53b80a2293824c2f8ed1f4
|
[
"MIT"
] |
permissive
|
tuanlvse294/CHome
|
3f36afcfd9c0b8a327b0bc81622da5fff095b492
|
115e898e8f734f90de915d73e8a98d3044afad58
|
refs/heads/master
| 2020-04-13T09:21:03.904078
| 2019-05-09T18:00:56
| 2019-05-09T18:00:56
| 163,108,106
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 842
|
puml
|
@startuml
actor Admin
boundary list_packs_view
control PremiumPackController
entity PremiumPackModel
activate Admin
Admin -> list_packs_view: view pack list
activate list_packs_view
Admin <-- list_packs_view: pack list
Admin -> list_packs_view: click delete pack
Admin <-- list_packs_view: confirm box
Admin -> list_packs_view: click confirm
list_packs_view-> PremiumPackController: request delete pack
deactivate list_packs_view
activate PremiumPackController
PremiumPackController -> PremiumPackController : validate
PremiumPackController -> PremiumPackModel : delete pack
activate PremiumPackModel
PremiumPackModel ->PremiumPackModel:delete pack
PremiumPackModel --> PremiumPackController : deleted
deactivate PremiumPackModel
PremiumPackController --> Admin: return to pack list
deactivate PremiumPackController
deactivate Admin
@enduml
| false
| true
| false
| false
|
sequence
|
66b649971b6ff37e3358868e8b5c7668ca5ff28e
|
d5a82e56e8c04bda3f2fe67489f7544c33684f27
|
/dzienne/gr2/monopoly/class_diagram.plantuml
|
4214386a24c6683cfc32cf635d3b311330f07698
|
[] |
no_license
|
kpodlaski/ProjObj2019
|
099f74373ce51f61c0faae3ddae988dc92352ecb
|
96b3e53e3eeb2fbb20618867966b120d51f71097
|
refs/heads/master
| 2020-09-09T20:05:46.434288
| 2020-01-26T10:22:35
| 2020-01-26T10:22:35
| 221,554,102
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,931
|
plantuml
|
@startuml
Game "dices" *-- Dice
Game -- Board
Board *-- Place
PlaceWithCard -- Card
Player *-- Card
Bank *-- Card
Hotel --|> House
PlaceWithCardAndHouses *-- House
Game -- Bank
Game *-- Player
SpecialPlace --|> Place
PlaceWithCard --|> Place
PlaceWithCardAndHouses --|> PlaceWithCard
Game *-- LoteryCoupon
class Dice{
+roll()
+showValue():int
}
'Controller of the game process'
class Game{
-activePlayer: Player
+nextPlayer()
'implements move activity diagram'
+moveProcess()
}
class Board{
+getPlaceOnPosition(p:int):Place
}
class Bank{
-cashAmmount:int
+isPlaceOwned(place:Place):boolean
/'
sell - operations:
increase ammount,
remove card from bank,
invoke buy on player
'/
+sell(card:Card, player:Player)
}
note top
add information about houses to buy
endnote
class Place {
+id : int
+name: String
+icon : Image
}
class SpecialPlace {
+acion():void
}
class PlaceWithCard {}
class PlaceWithCardAndHouses {}
class Player{
-cashAmmount:int
+position:int
+move(distance:int)
/'
buy - operations:
decrease ammount,
add card
'/
+buy(card:Card)
}
note top
we can use Visitor pattern
for count the wealth of player
---
what to do with
lotery coupon :"you can leave jail earlier"
endnote
class Card{
id:int
price:int
rent:int
country:String
countrySize:int
}
note left
id on Card is the same
as id on connected Place
---
we can create composite pattern
for Country if Player has all Cards
from one country.
---
how we add Houses and "countries"
without houses (via inheritance or fields)
---
add information about house price,
rent depends on houses,
how many houses are placed
end note
class House
class Hotel
class LoteryCoupon{
+text: String
+action():void
}
@enduml
| false
| true
| false
| false
|
class
|
5d442635cd1e12ce2a74617a0f020bfe90e3e23c
|
4e66b60562009e54e3249595d08d88573c1d7fba
|
/test/PlantUmlClassDiagramGeneratorTest/uml/CurlyBrackets.puml
|
692287e0130937f3d6f506ab6a4aad32fd4e8241
|
[
"MIT"
] |
permissive
|
pierre3/PlantUmlClassDiagramGenerator
|
a17a7ec5e3b547b0a9d5afee1d74436c6d602782
|
00bd84d543a14f05c95857426060e677c4668cc8
|
refs/heads/master
| 2023-07-06T01:15:15.436366
| 2023-05-31T13:39:56
| 2023-06-02T10:24:02
| 41,860,665
| 598
| 123
|
MIT
| 2023-08-20T06:56:51
| 2015-09-03T13:17:42
|
C#
|
UTF-8
|
PlantUML
| false
| false
| 258
|
puml
|
@startuml
class CurlyBrackets {
+ openingBracket : string = @"
{
"
+ openingBrackets : string = @"
{{
"
+ closingBracket : string = @"
}
"
+ closingBrackets : string = @"
}}
"
+ bothBrackets : string = @"
{{
}}
"
}
@enduml
| false
| true
| false
| false
|
class
|
5d880331f1f89c0ecf46ec976611d0aa42e787dd
|
18f69cbe571bd1436574892525efd6ab7526d6a8
|
/reports/uml/fproject_layout.puml
|
ca7d9fd68ace1a33dee02aef65fbe834fa0b62ba
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
fredgrott/fproject_layout
|
34e32280bbaaccde64eec1d9ba82a208f3d76a08
|
bcbc93d7943ff97e9493c18ee9672e89febc984c
|
refs/heads/master
| 2023-04-25T10:30:49.895914
| 2021-04-29T13:09:08
| 2021-04-29T13:09:08
| 360,334,049
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,156
|
puml
|
@startuml
set namespaceSeparator ::
class "fproject_layout::app::data::models::counter_mixin.dart::CounterMixin" {
{static} -int _counter
+int myCounter
}
class "fproject_layout::app::modules::my_app.dart::MyApp" {
+Widget build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "fproject_layout::app::modules::my_app.dart::MyApp"
class "fproject_layout::app::screens::myhomepage::managers::my_home_page.dart::MyHomePage" {
+dynamic title
+MyHomePageState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "fproject_layout::app::screens::myhomepage::managers::my_home_page.dart::MyHomePage"
class "fproject_layout::app::screens::myhomepage::statecontainers::my_home_page_state.dart::MyHomePageState" {
-void _incrementCounter()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "fproject_layout::app::screens::myhomepage::statecontainers::my_home_page_state.dart::MyHomePageState"
"fproject_layout::app::data::models::counter_mixin.dart::CounterMixin" <|-- "fproject_layout::app::screens::myhomepage::statecontainers::my_home_page_state.dart::MyHomePageState"
@enduml
| false
| true
| false
| false
|
class
|
097606b726626b394ab57c9c42e898994e48e0d7
|
c83a04a4fbab368af268b855e158be1d0098ff30
|
/puml/Sequence-RqP-SharedWithMe.puml
|
a802dad16949fbff083dd437dae7c88d4b0c0116
|
[
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] |
permissive
|
ForgeRock/frdp-uma-resource-server
|
f2ad7346cab73d87f2777e4c55475498a4d0eb54
|
d0c2d72aa1f1c96cf5dce3f03c7a74c6ff075130
|
refs/heads/master
| 2023-01-28T20:03:04.395299
| 2021-08-19T20:22:27
| 2021-08-19T20:22:27
| 228,416,835
| 10
| 2
|
MIT
| 2023-01-23T10:54:18
| 2019-12-16T15:26:09
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,330
|
puml
|
@startuml
title Requesting Party - Shared With Me
hide footbox
actor "Requesting Party\n(RqP)" as RQP
box "Client Application (CA)\n<<Custom Application>>" #palegreen
participant "User Interface" as CAUI
end box
box "Resource Server (RS)\n<<Custom Application>>" #peachpuff
participant "REST API" as RSREST
database "Resource" as RSRESOURCE
database "Credential" as RSCRED
end box
box "Authorization Server (AS)\nForgeRock Access Manager" #antiquewhite
participant "AM API" as AMREST
participant "UMA API" as UMAREST
participant "OAuth API" as OAUTHREST
end box
box "Content Server (CS)\n<<Custom Application>>" #paleturquoise
participant "REST API" as CSREST
database "Data" as CSDATA
end box
RQP->AMREST: Authenticate
activate AMREST
AMREST-->RQP: Authenticated (SSO Token)
deactivate AMREST
activate RQP
RQP->CAUI: Access Interface
deactivate RQP
activate CAUI
CAUI->RSREST: GET /share/withme
deactivate CAUI
activate RSREST
RSREST-> OAUTHREST: GET .../oauth2/resources/sets
deactivate RSREST
activate OAUTHREST
OAUTHREST-->RSREST: List of resources
deactivate OAUTHREST
activate RSREST
RSREST->RSRESOURCE: Get resource info\n (for each)
deactivate RSREST
activate RSRESOURCE
RSRESOURCE-->RSREST
deactivate RSRESOURCE
activate RSREST
RSREST-->CAUI: Array of resources
deactivate RSREST
@enduml
| false
| true
| false
| false
|
usecase
|
acb87aff1bb8f4c87621f8e2f9c1365ce5df705f
|
876ab73fada04eb39f6e706e4fe6b7eb94735a18
|
/Assignment2/bin/ca/utoronto/utm/paint/paint.plantuml
|
1bd9435ce8ee566b931bc3b1827d6d19812f889d
|
[] |
no_license
|
Lost-Accountant/CSC207
|
f4e77625a02ee7e5b2e8ed3a26093021453fbd5d
|
b0320d8f3c812523f56fd91bd07a6f328cbaabd2
|
refs/heads/master
| 2023-02-20T01:48:32.761740
| 2021-01-23T03:30:43
| 2021-01-23T03:30:43
| 294,289,255
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,303
|
plantuml
|
@startuml
title __PAINT's Class Diagram__\n
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.Shape.Circle {
- radius : int
+ Circle()
+ getCentre()
+ getRadius()
+ setCentre()
+ setRadius()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.Paint {
+ Paint()
{static} + main()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.PaintModel {
- circles : ArrayList<Circle>
- points : ArrayList<Point>
+ PaintModel()
+ addCircle()
+ addPoint()
+ getCircles()
+ getPoints()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.PaintPanel {
- i : int
- mode : String
+ PaintPanel()
+ mouseClicked()
+ mouseDragged()
+ mouseEntered()
+ mouseExited()
+ mouseMoved()
+ mousePressed()
+ mouseReleased()
+ paintComponent()
+ setMode()
+ update()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.Point {
~ x : int
~ y : int
+ getX()
+ getY()
+ setX()
+ setY()
~ Point()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.ShapeChooserPanel {
+ ShapeChooserPanel()
+ actionPerformed()
}
}
namespace ca.utoronto.utm.paint {
class ca.utoronto.utm.paint.View {
{static} - serialVersionUID : long
+ View()
+ actionPerformed()
+ getPaintPanel()
+ getShapeChooserPanel()
- createMenuBar()
}
}
ca.utoronto.utm.paint.Shape.Circle o-- ca.utoronto.utm.paint.Point : centre
ca.utoronto.utm.paint.Paint o-- ca.utoronto.utm.paint.PaintModel : model
ca.utoronto.utm.paint.Paint o-- ca.utoronto.utm.paint.View : view
ca.utoronto.utm.paint.PaintModel -up-|> java.util.Observable
ca.utoronto.utm.paint.PaintPanel .up.|> java.awt.event.MouseListener
ca.utoronto.utm.paint.PaintPanel .up.|> java.awt.event.MouseMotionListener
ca.utoronto.utm.paint.PaintPanel .up.|> java.util.Observer
ca.utoronto.utm.paint.PaintPanel -up-|> javax.swing.JPanel
ca.utoronto.utm.paint.PaintPanel o-- ca.utoronto.utm.paint.Shape.Circle : circle
ca.utoronto.utm.paint.PaintPanel o-- ca.utoronto.utm.paint.PaintModel : model
ca.utoronto.utm.paint.PaintPanel o-- ca.utoronto.utm.paint.View : view
ca.utoronto.utm.paint.ShapeChooserPanel .up.|> java.awt.event.ActionListener
ca.utoronto.utm.paint.ShapeChooserPanel -up-|> javax.swing.JPanel
ca.utoronto.utm.paint.ShapeChooserPanel o-- ca.utoronto.utm.paint.View : view
ca.utoronto.utm.paint.View .up.|> java.awt.event.ActionListener
ca.utoronto.utm.paint.View -up-|> javax.swing.JFrame
ca.utoronto.utm.paint.View o-- ca.utoronto.utm.paint.PaintModel : model
ca.utoronto.utm.paint.View o-- ca.utoronto.utm.paint.PaintPanel : paintPanel
ca.utoronto.utm.paint.View o-- ca.utoronto.utm.paint.ShapeChooserPanel : shapeChooserPanel
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
|
f01b529d65d6ffe8e82b8ebcc4ab8bb07fbaff91
|
981063906ac661e930b3a9c23eade2b0d98ee692
|
/dmtp.plantuml
|
f98b4fbc3358feb319b194eb444533d53cdc20a1
|
[] |
no_license
|
Wissben/Data-Mining-ToolKit
|
55e49645e964e8d9581e6d234912142cc11a198b
|
d83aac3876a842bf096fe40a85007ce8fc8720e6
|
refs/heads/master
| 2020-04-07T09:49:36.520024
| 2019-01-02T00:21:18
| 2019-01-02T00:21:18
| 158,266,366
| 5
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,713
|
plantuml
|
@startuml
title __DMTP's Class Diagram__\n
package Front {
package Front.AprioriUI {
class AprioriController {
}
}
}
package Algorithms.Apriori {
class AprioriInstanceReader {
}
}
package Algorithms.DBScan {
class Cluster {
}
}
package Front {
class Controller {
}
}
package Algorithms.DBScan {
class DBSCANClusterer {
}
}
package Front {
package Front.DBSCAN {
class DBSCANController {
}
}
}
package Processing {
class DataCleaner {
}
}
package Algorithms.Apriori {
class InstanceApriori {
}
}
package Algorithms.KNN {
class KNNClassifier {
}
}
package Front {
package Front.KNN {
class KNNController {
}
}
}
package Front {
class Main {
}
}
package Processing {
class Plotter {
}
}
package Algorithms.DBScan {
class Point {
}
}
package Algorithms.Apriori {
class Searcher {
}
}
package Processing {
class StatisticsRetriever {
}
}
AprioriController -up-|> Initializable
AprioriController o-- InstanceApriori : currentIntance
AprioriInstanceReader o-- InstanceApriori : instance
Cluster -up-|> Comparable
Controller -up-|> Initializable
DBSCANController -up-|> Initializable
DataCleaner o-- StatisticsRetriever : sr
KNNController -up-|> Initializable
Point -up-|> Comparable
Searcher o-- InstanceApriori : instance
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
|
feffd91e54a5b9121ab24b134701d956b3aa257b
|
5fd60573e9dc5f7fcc90bf914532cf287fe43956
|
/2 Class Diagram.puml
|
6818f0e2746b320ecbcf3bd7d4f769d9ff8c5bf5
|
[] |
no_license
|
govorun17/diplom
|
c53b978289237832c883f4d8dbffc66191380164
|
c689a27aa5db8f06c28d6e08cfb46a67509a9ca1
|
refs/heads/main
| 2023-05-09T23:25:38.883358
| 2021-05-30T19:18:20
| 2021-05-30T19:18:20
| 221,156,960
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,424
|
puml
|
@startuml
title Class Diagram \n
entity Message {
- Long id
- String message
- Timestamp datetime
+ getters()
+ setters()
}
entity VkUser {
- Long id
- String vkId
- Modes mode
- List<Message> request
- List<Message response
+ getters()
+ setters()
{static} + newUser(String vkId)
}
enum Modes {
DEFAULT
CHAT
}
entity Group {
- Long groupId
- String code
- String secret
- String token
+ getters()
+ setters()
}
entity Phrase {
+ {static} String COMMON_PHRASES
+ {static} String ELUSIVE_ANSWERS
+ {static} String PATTERNS_FOR_ANALYSIS
+ {static} String ANSWERS_BY_PATTERNS
- Long id
- String type
- String key
- String value
+ getters()
+ setters()
}
entity Role {
- Long id
- String name
+ getters()
+ setters()
}
enum Events {
+ CONFIRMATION - "confirmation"
+ MESSAGE - "message_new"
+ EVENT - "message_event"
+ OK - "ok"
- String label
- Events(String label)
+ String label()
}
class JsonDto {
- String type
- Long groupId
- String secret
- JsonNode json
}
class CallbackController {
}
class AppStartService {
}
class CallbackService {
}
class GroupService {
}
class RoleService {
}
interface GroupRepo {
}
interface RoleRepo {
}
interface JpaRepository<T, ID>
note left of JpaRepository : System interface
@enduml
| false
| true
| false
| false
|
sequence
|
5ad224da0b4e69abadaa861268616fd5d84205be
|
ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd
|
/ch07-state-patterns/diagrams/state-pattern-light-state-class-diagram.puml
|
153ab81933015f2c853251f5f8b731935e5686f8
|
[] |
no_license
|
outofworld98/java-design-patterns
|
d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427
|
75964a5387cad3f54726d0f7ba98b0765ca0d650
|
refs/heads/master
| 2022-03-29T17:38:14.238273
| 2019-01-17T11:10:00
| 2019-01-17T11:10:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 461
|
puml
|
@startuml
class Light {
- state : State
+ on_button_pushed()
+ off_button_pushed()
+ setState(state : State)
}
interface State {
+ on_button_pushed(light : Light)
+ off_button_pushed(light : Light)
}
class ON {
+ on_button_pushed(light : Light)
+ off_button_pushed(light : Light)
}
class OFF {
+ on_button_pushed(light : Light)
+ off_button_pushed(light : Light)
}
Light o-> State
State <|.. ON
State <|.. OFF
@enduml
| false
| true
| false
| false
|
state
|
20852172c7587ddaa5cf3bab7d8e6f27769204d3
|
f5f59016295a183565af167a861e2c8db9f1b070
|
/diagrams/src/Application/Startup.puml
|
701902aa9da5b90ba9ba8395cdf5e490c602978f
|
[
"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
| 369
|
puml
|
@startuml
class Startup {
+ Startup(configuration:IConfiguration, loggerFactory:ILoggerFactory)
- <<readonly>> _loggerFactory : ILoggerFactory
+ Configuration : IConfiguration <<get>>
+ ConfigureServices(services:IServiceCollection) : void
+ Configure(app:IApplicationBuilder, env:IHostingEnvironment, loggerFactory:ILoggerFactory) : void
}
@enduml
| false
| true
| false
| false
|
class
|
9b1557c4a1f8a521586bfb2613bcf6ce7e0ba507
|
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
|
/documentation/serviceApi/order/media/src/useCases.puml
|
3269812dc1f372a77a9fc9797ed6641c02571192
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Legato-SDK
|
b2ed422108f4bbb5d3aff27123d3f31305fd808f
|
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
|
refs/heads/working-draft
| 2023-07-06T06:44:01.113378
| 2023-06-23T14:14:48
| 2023-06-23T14:14:48
| 94,903,642
| 5
| 4
|
Apache-2.0
| 2022-05-04T10:22:56
| 2017-06-20T15:00:38
| null |
UTF-8
|
PlantUML
| false
| false
| 599
|
puml
|
@startuml
left to right direction
actor SOF
actor BUS
rectangle {
BUS --> (1: Create Service Order)
(1: Create Service Order) --> (1c: Service Order Item to Delete Existing Service)
(1: Create Service Order) --> (1b: Service Order Item to Modify Existing Service)
(1: Create Service Order) --> (1a: Service Order Item to Add New Service)
BUS --> (2: Retrieve List of Service Orders)
BUS --> (3: Retrieve Service Order by Service Order Identifier)
BUS --> (4: Register for Notifications)
(5. Send Notifications) <-- SOF
' SOF -[hidden]l-> (1a: Service Order Item to Add New Service)
}
@enduml
| false
| true
| false
| false
|
usecase
|
8f58e2f8bc37aee9775a69fb7bc4f25308f9556f
|
90ee33679e35673bc4f4cf775e608b2c32fa47d1
|
/IServer/src/resources/dataflow.puml
|
3e688babc71c724009bf4027a9dfaaf087430ccd
|
[
"Apache-2.0"
] |
permissive
|
scalavision/IWebDev
|
fe760837c56e6253924df953f36e7ace5c5e6448
|
df913b46197d6f586df84697eec525ece63dbc16
|
refs/heads/master
| 2021-09-26T22:11:24.737490
| 2018-11-03T12:36:54
| 2018-11-03T12:36:54
| 114,566,445
| 0
| 0
|
Apache-2.0
| 2018-11-03T12:36:55
| 2017-12-17T20:30:24
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 157
|
puml
|
@startuml
(*) --> "Css4s"
"Css4s" -> "WebServer"
"WebServer" -> "Node"
"Node" -> WebServer
"WebClient" ---> "WebServer"
"WebServer" -> "WebClient"
@enduml
| false
| true
| false
| false
|
uml-unknown
|
610a081d865bc15696a51877cc94f086cb0f0e1f
|
fbd2f521e4d6be910979ce5941865f0b6d51370b
|
/src/test/resources/PlantUmlImageGeneratorSpec/input/umls/badsample.puml
|
f1e2afa6c04e08bd2410d54c773882d3844f6679
|
[] |
no_license
|
Shinsuke-Abe/Thoth
|
290fc1477b84ba1331d1b9749debe29ae8261149
|
b15fa5917ffa344d59b5349820d45d6a42b62aff
|
refs/heads/master
| 2016-08-12T12:38:35.220106
| 2015-10-28T06:22:41
| 2015-10-28T06:22:41
| 43,479,151
| 1
| 0
| null | 2015-10-28T06:22:42
| 2015-10-01T04:55:56
|
Scala
|
UTF-8
|
PlantUML
| false
| false
| 10
|
puml
|
actor hoge
| false
| true
| false
| false
|
sequence
|
c502e13164fcad0a48d6424b0b8832d5a32a6c85
|
c3679277db13cee150496904963ef5d624c1d144
|
/test/src/main/java/com/gaga/pumlTest/class/TestCase2.puml
|
e1c6f3c0523cd7648a7cbbb3d30dd75856125fb7
|
[] |
no_license
|
jialiu123/dataTodata
|
1d7f392bc8e9df53d7ac21023b94f0fe4ce069c3
|
56702a45afe8f1a6b199c45a9c744594ab96c2cd
|
refs/heads/master
| 2023-03-12T21:40:29.489302
| 2021-03-03T00:51:41
| 2021-03-03T00:51:41
| 293,486,188
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 211
|
puml
|
@startuml
Object <|-- ArrayList
Object : equals()
class ArrayList<E> {
Object[] elementData
void size()
+boolean add(E e)
}
class Dummy {
-field1
#field2
~method1()
+method2()
-method3()
}
@enduml
| false
| true
| false
| false
|
class
|
4a0074f9e5b8cda99b373d22f107f8d1d386d981
|
0095abfe511004d34d83200fe7813320aa375d8d
|
/doc/circuit/circuit.iuml
|
74ffa58691a2ffbe0c647e93419deb7ef90a7528
|
[
"MIT"
] |
permissive
|
Perococco/quamputer
|
b20919a38fd1893df7439c07e2bd2a727fe29191
|
378fab8b14884b532a4e2b290f025c64bd9bf1b7
|
refs/heads/develop
| 2023-07-07T06:43:39.337318
| 2021-07-20T08:14:07
| 2021-07-20T08:14:07
| 365,513,484
| 0
| 0
| null | 2021-05-08T12:54:03
| 2021-05-08T12:51:31
|
Rust
|
UTF-8
|
PlantUML
| false
| false
| 341
|
iuml
|
@startuml
interface CircuitElement
class Circuit
class Loop
class Gate
class Measure
class Circuit {
nb_qbit:u8
elements:CircuitElement[]
}
class Loop {
circuit:Circuit,
stop_condition:StopCondition
}
class Measure {
id:String,
target:u8
}
class Gate {
type:GateWithoutControl,
controls:u8[]
}
@enduml
| false
| true
| false
| false
|
class
|
591155062fda31dd922773e253dc859e01a70b2d
|
a73a9f5a79597c7bd1d406dfdbf04f0de6114672
|
/gpstrackapp/src/main/java/com/anto/gpstrack/api/api.plantuml
|
f85fd465712abcda6eaf3aa70481593437107724
|
[] |
no_license
|
Antonio9227/proiectscd
|
b49531138a41769bbecab2db1a87618457231cc3
|
62ddd9de50e58b548a025a585322f8de2fa39617
|
refs/heads/master
| 2023-02-16T22:00:46.420780
| 2021-01-05T12:28:46
| 2021-01-05T12:28:46
| 307,406,033
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,633
|
plantuml
|
@startuml
title __API's Class Diagram__\n
namespace com.anto.gpstrack {
namespace api {
class com.anto.gpstrack.api.PhoneController {
{static} - MAGIC_NUMBER : int
+ acquireToken()
+ deleteData()
+ register()
- isImeiValid()
}
}
}
namespace com.anto.gpstrack {
namespace api {
class com.anto.gpstrack.api.PositionController {
+ PositionController()
+ submitPosition()
}
}
}
namespace com.anto.gpstrack {
namespace api {
class com.anto.gpstrack.api.WebController {
+ getDevices()
+ getPositions()
+ login()
+ validate()
}
}
}
com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.PhoneService : phoneService
com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.PositionService : positionService
com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.AccessTokenService : tokenService
com.anto.gpstrack.api.PositionController o-- com.anto.gpstrack.service.PositionService : positionService
com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.PhoneService : phoneService
com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.PositionService : positionService
com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.AccessTokenService : tokenService
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
|
f097a04d144c1e7d1c143ba662055eef8bd18543
|
2da050bbc599cc0f1d0805858b5770a0bd4689f7
|
/docs/diagrams/showApptGuiSequenceDiagram.puml
|
fd3e1cd216887f70cae74ee6652aab6667126915
|
[
"LicenseRef-scancode-other-permissive",
"MIT"
] |
permissive
|
AY2021S1-CS2103T-W15-3/tp
|
a660e53942a5771419cfbf6daad6fa937ceb7adc
|
56bb6c3c9839c303bfb976a472e1f446ce247924
|
refs/heads/master
| 2023-02-18T01:07:46.962335
| 2021-01-19T10:49:35
| 2021-01-19T10:49:35
| 292,806,741
| 0
| 5
|
NOASSERTION
| 2021-01-19T10:49:36
| 2020-09-04T09:27:14
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 373
|
puml
|
@startuml
skinparam sequenceArrowThickness 2
actor User
participant "JohnCard:PatientCard" as A
participant ":AppointmentWindow" as B <<Class>>
participant "John:Patient" as C
User -> A: onDoubleClick()
A -> B: setAppointmentWindow(patient)
activate B
B -> C: getAppointments()
activate C
C --> B: Appointments
deactivate C
B --> User: Show()
deactivate B
@enduml
| false
| true
| false
| false
|
usecase
|
48545208b9723a39d839fb0d91ece1d98c2be316
|
a249c2addc54fa5250d268f1c9cb71c1f555fec4
|
/learn-design-pattern/src/main/java/com/hqbhoho/bigdata/design/pattern/responsibility_chain/responsibility_chain.puml
|
ccd827669d0db92181923812c80c98097eec4e29
|
[] |
no_license
|
hqbhoho/learn-bigdata
|
3bb16248eed5498758bf3f98179242078ed6ddf7
|
cb2eca9b1b795a4a8712850f0ec49a32b2f7922d
|
refs/heads/master
| 2022-11-21T16:48:22.455348
| 2020-09-15T01:30:16
| 2020-09-15T01:30:28
| 173,652,937
| 19
| 7
| null | 2022-11-16T11:46:09
| 2019-03-04T01:31:39
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 572
|
puml
|
@startuml
abstract class Leader{
{field} - Leader next;
{method} + void SetNext(Leader next);
{abstract} + void approveVacation(int dayNum);
}
class SchoolMaster{
{method} + void approveVacation(int dayNum);
}
class CollegeMaster{
{method} + void approveVacation(int dayNum);
}
class Teacher{
{method} + void approveVacation(int dayNum);
}
class Client
Leader <|.. SchoolMaster
Leader <|.. CollegeMaster
Leader <|.. Teacher
Leader o.. Leader
Leader <.. Client
SchoolMaster <.. Client
CollegeMaster <.. Client
Teacher <.. Client
@enduml
| false
| true
| false
| false
|
class
|
f059f1a52a7a9aa5b27ee345df0732a8385c6d00
|
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
|
/1 Sequence Diagram/25b Stereotypes and Spots.puml
|
ff786542eaa5e4c20c36229e351953dbfa788f59
|
[
"MIT"
] |
permissive
|
jys129/PlantUML
|
38dd154cc9a45d3206abf26f95bfb45e32d4c186
|
f0e62bf90332a1a541ded76d2101ebdd9215adaa
|
refs/heads/master
| 2023-03-16T15:54:12.053012
| 2020-10-18T15:49:08
| 2020-10-18T15:49:08
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 167
|
puml
|
@startuml
skinparam guillemet false
participant "Famous Bob" as Bob << Generated >>
participant Alice << (C,#ADD1B2) Testable >>
Bob -> Alice: First message
@enduml
| false
| true
| false
| false
|
sequence
|
7ee0c6eae5ee0fbfb593c841e7c4573aae0a5c11
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/CartSetCustomLineItemCustomFieldAction.puml
|
c9d01e311113e500dd5fbdfb6b9e200aeea82278
|
[] |
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 CartSetCustomLineItemCustomFieldAction [[CartSetCustomLineItemCustomFieldAction.svg]] extends CartUpdateAction {
action: String
customLineItemId: String
customLineItemKey: String
name: String
value: [[Object.svg Object]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false
| true
| false
| false
|
class
|
68403133cd47c7cb377d461ffcc0ed3d1707bb96
|
f90c39ffff44a5a39493336c9c18331db8f8760f
|
/docs/logicView/analysisView/useCaseAnalysis/MoveFromTableauToTableau.plantuml
|
861d457c682ed8ee2b8bfaebfc268bea739b478b
|
[] |
no_license
|
Sertinell/klondike
|
e60d49defc893f459218c491a084e1872fddaa44
|
7c10f627fda6caf8b1ddc9e2cd6a59b218f34c53
|
refs/heads/master
| 2023-04-11T08:18:00.482272
| 2021-04-22T12:46:28
| 2021-04-22T12:46:28
| 338,658,308
| 0
| 9
| null | 2021-04-22T12:46:29
| 2021-02-13T19:59:43
| null |
UTF-8
|
PlantUML
| false
| false
| 943
|
plantuml
|
@startuml UCAnalysis_MoveFromTableauToTableau
mix_actor Player
package views {
class MenuView
class ErrorView
class GameView
class BoardView
GameView *--> BoardView
note on link: showBoard()
GameView *--> MenuView
}
package controllers {
class PlayController
class MoveFromTableauToTableau
PlayController *-right-> MoveFromTableauToTableau
}
package models {
class Game
class Pile
class Tableau
Tableau ..> Pile
Tableau ..> Card
Game *-->Tableau
}
PlayController --> GameView
note on link: readAction()
Player -down-> GameView
note on link: Select action\
\nSelect Card\
\nSelect destination\
MoveFromTableauToTableau --> Game
note on link : MoveFromTableauToTableau(Card, tableauPileNumber)
MoveFromTableauToTableau --> ErrorView
note on link: showError()
MoveFromTableauToTableau --> GameView
note on link: showBoard()
ErrorView -left[hidden]-> GameView
@enduml
| false
| true
| false
| false
|
class
|
9b024360c2a8f254570155d6249d08257537a1fc
|
34bbc1a7d0fb3462b4853b50e9b2f4530191a9e5
|
/docs/flowdiagram.puml
|
47f9b3f9d4edc271c9a17e734d89f177e6dd05f0
|
[] |
no_license
|
vuongkhoa/mobi-data
|
93263d563fd6a0530cc32bd7bf95fd7fe3e88c69
|
68a2bc453cd9e50a2bf29ce6bfc8e592e4352a7e
|
refs/heads/master
| 2023-05-07T22:19:29.932653
| 2021-06-06T16:43:41
| 2021-06-06T16:43:41
| 374,413,408
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 617
|
puml
|
@startuml
'https://plantuml.com/sequence-diagram
autonumber
Client -> PurchaseService: Get List Vouchers
PurchaseService -> Client: List Vouchers
... ...
Client -> VoucherService: Order Voucher (telco, price, dataPlan)
VoucherService -> 3rdService: Request a voucher code(telco, price, dataPlan)
3rdService --> 3rdService: Generate Voucher
3rdService -> VoucherService: Voucher code
VoucherService --> VoucherService: Save Voucher and PhoneNumber
alt timeout < 5s
VoucherService -> Client: Return Voucher code
else timeout > 5s
VoucherService -> Client: "Your code will be sent via SMS"
end
... ...
@enduml
| false
| true
| false
| false
|
sequence
|
ab189590375ae8a43189fdfb50676d5e8969fe8d
|
112e511928937b8ec60004ca94f1dd996bd9fd1a
|
/Documents/Shos.Chatter.Server/Controllers/UsersController.puml
|
7854e20cd739162477b7a0e700f55ce56c063364
|
[
"MIT"
] |
permissive
|
Fujiwo/Shos.Chatter.NetFramework
|
2c143b390b1588e38e5967a8b8f1c51bf5487362
|
3c7061398e790c2fc856585fdbf60a18705f11e0
|
refs/heads/master
| 2023-03-23T09:31:02.071913
| 2021-03-11T05:27:48
| 2021-03-11T05:27:48
| 323,569,895
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 469
|
puml
|
@startuml
class UsersController {
+ <<async>> GetUsers() : Task<IEnumerable<UserBase>>
+ <<async>> GetUser(id:int) : Task<IHttpActionResult>
+ <<async>> PutUser(id:int, user:UserBase) : Task<IHttpActionResult>
+ <<async>> PostUser(user:UserBase) : Task<IHttpActionResult>
+ <<async>> DeleteUser(id:int) : Task<IHttpActionResult>
UserExists(id:int) : bool
}
ApiController <|-- UsersController
UsersController o-> "context" ChatterContext
@enduml
| false
| true
| false
| false
|
class
|
47f2a8313425f7c7c2db53d98331ab744e769210
|
c7a9569fd6b2479cb11b97292bdaf569703c5ea8
|
/plantuml/vehicle_detection.puml
|
863ef8e7ecd34a79b3e3b60cb08b24e0740ffbb7
|
[] |
no_license
|
Labonneguigue/CarND-Vehicle-Detection
|
a48f5bbfffcd9007e254e988bb3bf2a73873a2bc
|
d62a5fcff554f4b0b4a36aad2cb03dee79fd116b
|
refs/heads/master
| 2020-12-30T09:27:32.606427
| 2018-03-14T23:48:16
| 2018-03-14T23:48:16
| 100,420,080
| 0
| 0
| null | 2017-08-15T21:16:49
| 2017-08-15T21:16:49
| null |
UTF-8
|
PlantUML
| false
| false
| 1,934
|
puml
|
@startuml
title Top-level class diagram
class Database {
+ csvFile
+ pickleFileName
+ ...
+ GetOutputVideoPath()
+ GetImageSize()
+ GetImagesAndLabels()
+ GetRandomImage()
+ GetListOfImages()
+ SaveObject()
+ LoadObject()
}
class Renderer {
+ SaveImagesSideBySide(image1, image2, fname[, title1, title2, grayscale])
+ Save3ImagesSideBySide(imgA, imgB, imgC, fname[,titleA, titleB, titleC, grayscale, plots)
+ SaveImage(image, fname)
+ {static} DrawSlidingBoxes(img, bboxes)
+ {static} AggregateViews(views)
}
class Test {
+ TestHOG(image)
+ TestNormalizationFeatures()
+ TestTrainClassifier()
+ TestSlidingWindows()
+ TestClassification()
+ TestHeatMap()
+ TestProcessImagePipeline()
+ RunTests()
}
class VehicleDetector {
+ bool outputToImages
+ string outputVideoName
+ ProcessImage : image
}
class Classifier {
+ float testTrainingRatio
+ int nbOrientations
+ int pixels_per_cell
+ int cells_per_block
+ color_space
+ hist_bins
+ hog_channels
+ Run()
+ RunHOG()
+ ExtractFeatures()
+ TrainClassifier()
}
class Filter {
+ trackedCars[]
+ FilterBBoxes(bBoxes) : bBoxes
}
class Utils {
+ {static} BinSpatial() : features
+ {static} ColorHist() : features
+ {static} GetHOGFeatures() : features
+ {static} ExtractListImagesFeatures() : features
+ {static} ExtractFeatures() : features
+ {static} NormalizeFeatures() : transform(X), X
+ {static} GetSlidingWindows() ; sWindows
}
Test *-- VehicleDetector : owns
Test *-- Renderer : owns
Test *-- Database : owns
Test *-- Classifier : owns
VehicleDetector -- Database : uses
VehicleDetector *-- Classifier
VehicleDetector *-- Filter
VehicleDetector --> Utils : uses
VehicleDetector --> Renderer : uses
@enduml
| false
| true
| false
| false
|
sequence
|
5c6af3ebf1a590602122e616e70774c105c08bdd
|
d71ed2fa791190c4146f235d5d2c8c00280582c1
|
/mybatis-from-novice-to-expert/mybatis-only/src/test/java/com/xjs1919/mybatis/chapter_3_5/一级缓存类图.puml
|
889fdcb99c48886488073b2691322ed99bb217d8
|
[] |
no_license
|
xjs1919/enumdemo
|
6b8a50f5a58cee547b52eb75dc1a0041e9113711
|
e61e3390be42116fdfa0b54b335e5b6f2397266b
|
refs/heads/master
| 2023-09-01T11:03:49.583340
| 2023-09-01T02:21:50
| 2023-09-01T02:21:50
| 186,528,758
| 43
| 37
| null | 2022-12-16T15:47:22
| 2019-05-14T02:21:25
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 474
|
puml
|
@startuml
'https://plantuml.com/class-diagram
interface SqlSession
SqlSession <|-- DefaultSqlSession
class DefaultSqlSession{
Executor executor
}
interface Executor
abstract class BaseExecutor
Executor <|- BaseExecutor
BaseExecutor <|-- CachingExecutor
BaseExecutor <|-- SimpleExecutor
abstract class BaseExecutor{
PerpetualCache localCache
}
class CachingExecutor{
Executor delegate
}
SimpleExecutor <-- CachingExecutor
CachingExecutor <-- DefaultSqlSession
@enduml
| false
| true
| false
| false
|
class
|
858887eae564d6bc49d3f93c52150012ef3e3a24
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/AttributeGroupUpdateAction.puml
|
8e47964ee8522f06366a5bbc9cc025ba504c3602
|
[] |
no_license
|
commercetools/commercetools-api-reference
|
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
|
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
|
refs/heads/main
| 2023-09-01T05:22:42.100097
| 2023-08-31T11:33:37
| 2023-08-31T11:33:37
| 36,055,991
| 52
| 30
| null | 2023-08-22T11:28:40
| 2015-05-22T06:27:19
|
RAML
|
UTF-8
|
PlantUML
| false
| false
| 2,150
|
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 AttributeGroupUpdateAction [[AttributeGroupUpdateAction.svg]] {
action: String
}
interface AttributeGroupAddAttributeAction [[AttributeGroupAddAttributeAction.svg]] {
action: String
attribute: [[AttributeReference.svg AttributeReference]]
}
interface AttributeGroupChangeNameAction [[AttributeGroupChangeNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface AttributeGroupRemoveAttributeAction [[AttributeGroupRemoveAttributeAction.svg]] {
action: String
attribute: [[AttributeReference.svg AttributeReference]]
}
interface AttributeGroupSetAttributesAction [[AttributeGroupSetAttributesAction.svg]] {
action: String
attributes: [[AttributeReference.svg List<AttributeReference>]]
}
interface AttributeGroupSetDescriptionAction [[AttributeGroupSetDescriptionAction.svg]] {
action: String
description: [[LocalizedString.svg LocalizedString]]
}
interface AttributeGroupSetKeyAction [[AttributeGroupSetKeyAction.svg]] {
action: String
key: String
}
interface AttributeGroupUpdate [[AttributeGroupUpdate.svg]] {
version: Long
actions: [[AttributeGroupUpdateAction.svg List<AttributeGroupUpdateAction>]]
}
AttributeGroupUpdateAction --> AttributeGroupAddAttributeAction #blue;text:blue : "action : addAttribute"
AttributeGroupUpdateAction --> AttributeGroupChangeNameAction #blue;text:blue : "action : changeName"
AttributeGroupUpdateAction --> AttributeGroupRemoveAttributeAction #blue;text:blue : "action : removeAttribute"
AttributeGroupUpdateAction --> AttributeGroupSetAttributesAction #blue;text:blue : "action : setAttributes"
AttributeGroupUpdateAction --> AttributeGroupSetDescriptionAction #blue;text:blue : "action : setDescription"
AttributeGroupUpdateAction --> AttributeGroupSetKeyAction #blue;text:blue : "action : setKey"
AttributeGroupUpdateAction --> AttributeGroupUpdate #green;text:green : "actions"
@enduml
| false
| true
| false
| false
|
sequence
|
c7356a2ccea0b20767ca0d5bd376c1a4bb5b4c31
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/CustomerRemoveStoreAction.puml
|
7d504f34caaf3923800dece665aee2bb325978bf
|
[] |
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
| 495
|
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 CustomerRemoveStoreAction [[CustomerRemoveStoreAction.svg]] extends CustomerUpdateAction {
action: String
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
}
interface CustomerUpdateAction [[CustomerUpdateAction.svg]] {
action: String
}
@enduml
| false
| true
| false
| false
|
class
|
3f58645c2b0e9a0451951e6b31ad69baef6498cd
|
13a3d4bdf8ee0c5f2df7028d3792d5b631fbf481
|
/docs/elementCreationFlow.puml
|
c28d8c5963949f4600cb17682e36e3f090868d0c
|
[] |
no_license
|
LarexSetch/arches
|
f8ee65f4d95f7073f2a0f6adde944235eda7ec12
|
98f5b112441b251ea00292058fcb51dcecf4ae55
|
refs/heads/master
| 2021-05-23T08:54:38.722446
| 2020-04-13T22:30:09
| 2020-04-13T22:30:09
| 253,208,598
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 667
|
puml
|
@startuml
(Create element) as (Element)
(Create relation) as (Relation)
(Create property) as (Property)
(Create method) as (Method)
(Create method argument) as (Argument)
User --> (Element)
(Element) --> (Property)
(Element) --> (Method)
(Property) --> (Relation)
(Method) --> (Relation)
(Method) --> (Argument)
(Argument) ---> (Relation)
note right of (Relation) : Relation creating automatically\nwhen create property and method
note right of (Property) : Create type and relation\nSet name
note left of (Method) : Create return type and relation\nCreate method argument\nSet name
note left of (Argument) : Create return type and relation\nSet name
@enduml
| false
| true
| false
| false
|
uml-unknown
|
267e8f8f73a15d85a4d2b60fe4850e0512892152
|
5f138671e1fe29fe57a7476602cd3e1272d7ce2f
|
/entwurf/initBot.plantuml
|
cb8c9f0aa229808a2b297ac1ff651952ab4152e8
|
[] |
no_license
|
erlangh8er/Nachrichtendienst
|
60585b30d4bd6f7e059407339cd34d654a41a730
|
6318fa96bded4c0105f1edecf278a6f9b7b08a71
|
refs/heads/main
| 2023-04-01T03:29:14.601625
| 2021-04-07T13:44:26
| 2021-04-07T13:44:26
| 355,560,416
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,000
|
plantuml
|
@startuml
skinparam monochrome true
box Bot1
participant Bot
participant BotManager
participant BotReceiver
participant BotSender
end box
participant Tower
Bot --> BotReceiver : startBotReceiver()
BotReceiver --> BotReceiver : Auf go warten
BotReceiver --> Bot : botReceiverPID
Bot --> BotSender : startBotSender(botReceiverPID)
BotSender --> BotSender : Auf go warten
BotSender --> Bot : botSenderPID
Bot --> BotManager : startBotManager(botSenderPID, botReceiverPID)
Bot --> Bot : logge Manager, Receiver, Sender PIDs
destroy Bot
BotManager -> Tower : {getID,ReceiverPIDn,PIDn}
Tower --> BotManager : {vc,Pnum,VCList}
BotManager -> vectorC : initVT(Pnum)
vectorC --> BotManager : {Pnum,[<P1>,<P2>,…,<Pn>]}
BotManager --> BotReceiver : {go, botManagerPID}
BotManager --> BotSender : {go, botManagerPID}
BotManager --> BotManager : Starte Timer für Sendeereignisse
BotManager --> BotManager : Starte Timer für lokale Ereignisse
BotManager --> BotManager : Starte Timer für Terminierung
@enduml
| false
| true
| true
| false
|
sequence
|
737e2f5e15b618faa58d8eb4af2df630afa50eab
|
1ecff489e86a8f4256945c76fae3649be2a9bc2e
|
/app/src/main/java/com/example/pis_entrega1/Note/Note.plantuml
|
6af60b08955335e95165eaa96a3eac7514e6a323
|
[] |
no_license
|
SergioFerrando/Unobliviate
|
42632b15bf4055a7f30f291dbdb651d90afa56bd
|
0f82ce3b886f3e1e02a31cfaa503c300e1a7297e
|
refs/heads/master
| 2023-05-14T19:57:28.590312
| 2021-06-04T12:09:48
| 2021-06-04T12:09:48
| 351,016,418
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,485
|
plantuml
|
@startuml
title __NOTE's Class Diagram__\n
namespace com.example.pis_entrega1 {
namespace Note {
abstract class com.example.pis_entrega1.Note.Notes {
- checked : boolean
- date : String
- id : String
- name : String
+ Notes()
+ Notes()
+ Notes()
{abstract} + delete()
+ getDate()
+ getID()
+ getName()
+ isChecked()
{abstract} + saveNote()
+ setChecked()
+ setDate()
+ setID()
+ setName()
}
}
}
namespace com.example.pis_entrega1 {
namespace Note {
class com.example.pis_entrega1.Note.Photo {
- address : String
- url : String
+ Photo()
+ Photo()
+ Photo()
+ delete()
+ getAddress()
+ getUrl()
+ modify()
+ saveNote()
+ setAddress()
+ setUrl()
}
}
}
namespace com.example.pis_entrega1 {
namespace Note {
class com.example.pis_entrega1.Note.Recording {
- address : String
- url : String
+ Recording()
+ Recording()
+ Recording()
+ delete()
+ getAddress()
+ getUrl()
+ modify()
+ saveNote()
+ setAddress()
+ setUrl()
}
}
}
namespace com.example.pis_entrega1 {
namespace Note {
class com.example.pis_entrega1.Note.Text {
- text : String
+ Text()
+ Text()
+ Text()
+ delete()
+ getText()
+ modify()
+ saveNote()
+ setText()
}
}
}
com.example.pis_entrega1.Note.Photo -up-|> com.example.pis_entrega1.Note.Notes
com.example.pis_entrega1.Note.Photo o-- com.example.pis_entrega1.Model.DatabaseAdapter : adapter
com.example.pis_entrega1.Note.Recording -up-|> com.example.pis_entrega1.Note.Notes
com.example.pis_entrega1.Note.Recording o-- com.example.pis_entrega1.Model.DatabaseAdapter : adapter
com.example.pis_entrega1.Note.Text -up-|> com.example.pis_entrega1.Note.Notes
com.example.pis_entrega1.Note.Text o-- com.example.pis_entrega1.Model.DatabaseAdapter : adapter
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
|
e9dcb4771bd0dcfd4301c44aafd811aafd947f1c
|
d6374fe9363a41031c51eb622cb0cb5e75b78380
|
/docs/technical/account-lookup-service/assets/diagrams/sequence/seq-acct-lookup-get-participants-7.1.0.plantuml
|
09be5f1df30de588e9927a1c2b275da3d7b51a15
|
[
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
mojaloop/documentation
|
18a1e58443956b9c718f5f85590f652f803f4748
|
6ad904da0293bb259bd9f5140bcecd719d8c8024
|
refs/heads/master
| 2023-07-26T17:13:14.811484
| 2023-06-26T15:18:57
| 2023-06-26T15:18:57
| 170,135,923
| 24
| 98
|
NOASSERTION
| 2023-09-01T14:57:33
| 2019-02-11T13:45:44
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 9,932
|
plantuml
|
/'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Georgi Georgiev <georgi.georgiev@modusbox.com>
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
--------------
******'/
@startuml
' declare title
title 7.1.0. Get Participant Details
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' entity - Database Access Objects
' database - Database Persistence Store
' declare actors
actor "Payer FSP" as PAYER_FSP
boundary "Account Lookup\nService (ALS)" as ALS_API
control "ALS Participant\nHandler" as ALS_PARTICIPANT_HANDLER
entity "ALS Endpoint Type\nConfig DAO" as ALS_TYPE_ENDPOINT_CONFIG_DAO
entity "ALS CentralService\nEndpoint DAO" as ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
entity "ALS Participant\nOracle DAO" as ALS_PARTICIPANT_ORACLE_DAO
entity "ALS Participant Endpoint\nOracle DAO" as ALS_PARTICIPANT_ORACLE_DAO
database "ALS Database" as ALS_DB
boundary "Oracle Service API" as ORACLE_API
boundary "Central Service API" as CENTRALSERVICE_API
box "Financial Service Provider" #LightGrey
participant PAYER_FSP
end box
box "Account Lookup Service" #LightYellow
participant ALS_API
participant ALS_PARTICIPANT_HANDLER
participant ALS_TYPE_ENDPOINT_CONFIG_DAO
participant ALS_PARTICIPANT_ORACLE_DAO
participant ALS_DB
participant ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
end box
box "Central Services" #LightGreen
participant CENTRALSERVICE_API
end box
box "ALS Oracle Service/Adapter" #LightBlue
participant ORACLE_API
end box
' START OF FLOW
group Get Participant's FSP Details
PAYER_FSP ->> ALS_API: Request to get participant's FSP details \nGET - /participants/{TYPE}/{ID}?currency={CURRENCY}\n<color #388724><b>Response code:</b> 202</color> \n<color #red><b>Error code:</b> 200x, 300x, 310x, 320x</color>
activate ALS_API
note left ALS_API #lightgray
Validate request against
Mojaloop Interface Specification.
<color #red><b>Error code:</b> 300x, 310x</color>
end note
ALS_API -> ALS_PARTICIPANT_HANDLER: Request to get participant's FSP details
alt oracleEndpoint match found
group #lightskyblue IMPLEMENTATION: Get Oracle Routing Config Sequence [CACHED]
activate ALS_PARTICIPANT_HANDLER
ALS_PARTICIPANT_HANDLER -> ALS_TYPE_ENDPOINT_CONFIG_DAO: Fetch Oracle Routing information based on\n{TYPE} and {CURRENCY} if provided\n<color #red><b>Error code:</b> 200x</color>
activate ALS_TYPE_ENDPOINT_CONFIG_DAO
ALS_TYPE_ENDPOINT_CONFIG_DAO -> ALS_DB: Retrieve oracleEndpoint\n<color #red><b>Error code:</b> 200x</color>
activate ALS_DB
hnote over ALS_DB #lightyellow
oracleEndpoint
endpointType
partyIdType
currency (optional)
end note
ALS_DB --> ALS_TYPE_ENDPOINT_CONFIG_DAO: Return oracleEndpoint result set
deactivate ALS_DB
ALS_TYPE_ENDPOINT_CONFIG_DAO --> ALS_PARTICIPANT_HANDLER: List of **oracleEndpoint** for the Participant
deactivate ALS_TYPE_ENDPOINT_CONFIG_DAO
opt #lightskyblue oracleEndpoint IS NULL
ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_HANDLER: <color #red><b>Error code:</b> 3200</color>
end
end group
group #lightskyblue IMPLEMENTATION: Request Participant Information from Oracle Sequence
ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_ORACLE_DAO: Request to get participant's FSP details \nGET - /participants/{TYPE}/{ID}?currency={CURRENCY}\n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate ALS_PARTICIPANT_ORACLE_DAO
ALS_PARTICIPANT_ORACLE_DAO -> ORACLE_API: Request to get participant's FSP details \nGET - /participants/{TYPE}/{ID}?currency={CURRENCY}\n<color #388724><b>Response code:</b> 200</color> \n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate ORACLE_API
ORACLE_API --> ALS_PARTICIPANT_ORACLE_DAO: Return list of Participant information
deactivate ORACLE_API
ALS_PARTICIPANT_ORACLE_DAO --> ALS_PARTICIPANT_HANDLER: Return list of Participant information
deactivate ALS_PARTICIPANT_ORACLE_DAO
end group
' group #lightskyblue IMPLEMENTATION: Get Switch Routing Config Sequence [CACHED]
' note right of ALS_PARTICIPANT_HANDLER #lightgray
' **REFERENCE**: Get Oracle Routing Config Sequence: oracleEndpoint
' end note
' alt #lightskyblue oracleEndpoint IS NOT NULL
' ALS_PARTICIPANT_HANDLER -> ALS_TYPE_ENDPOINT_CONFIG_DAO: Fetch Switch Routing information\n<color #red><b>Error code:</b> 200x</color>
' ALS_TYPE_ENDPOINT_CONFIG_DAO -> ALS_DB: Retrieve switchEndpoint\n<color #red><b>Error code:</b> 200x</color>
' activate ALS_DB
' hnote over ALS_DB #lightyellow
' switchEndpoint
' endpointType
' end note
' ALS_DB -> ALS_TYPE_ENDPOINT_CONFIG_DAO: Return switchEndpoint result set
' deactivate ALS_DB
' ALS_TYPE_ENDPOINT_CONFIG_DAO -> ALS_PARTICIPANT_HANDLER: Return **switchEndpoint**
' else
' ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_HANDLER: <color #red><b>Error code:</b> 2000</color>
' end alt
' end group
'********************* Get PayerFSP Participant End-point Information - START ************************
ALS_PARTICIPANT_HANDLER -> ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO: Retrieve the PayerFSP Participant Callback Endpoint\n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO -> CENTRALSERVICE_API: Retrieve the PayerFSP Participant Callback Endpoint\nGET - /participants/{FSPIOP-Source}/endpoints\n<color #388724><b>Response code:</b> 200</color> \n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate CENTRALSERVICE_API
CENTRALSERVICE_API --> ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO: List of PayerFSP Participant Callback Endpoints
deactivate CENTRALSERVICE_API
ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO --> ALS_PARTICIPANT_HANDLER: List of PayerFSP Participant Callback Endpoints
deactivate ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_HANDLER: Match PayerFSP Participant Callback Endpoints for\nFSPIOP_CALLBACK_URL_PARTICIPANT_PUT
'********************* Get PayerFSP Participant End-point Information - END ************************
ALS_PARTICIPANT_HANDLER --> ALS_API: Return list of Participant information
ALS_API ->> PAYER_FSP: Callback: PUT - /participants/{TYPE}/{ID}?currency={CURRENCY}
else oracleEndpoint IS NULL OR error occurred
'********************* Get PayerFSP Participant End-point Information - START ************************
ALS_PARTICIPANT_HANDLER -> ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO: Retrieve the Participant Callback Endpoint\n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO -> CENTRALSERVICE_API: Retrieve the Participant Callback Endpoint\nGET - /participants/{FSPIOP-Source}/endpoints. \n<color #388724><b>Response code: </b>200</color> \n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
activate CENTRALSERVICE_API
CENTRALSERVICE_API --> ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO: List of Participant Callback Endpoints
deactivate CENTRALSERVICE_API
ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO --> ALS_PARTICIPANT_HANDLER: List of Participant Callback Endpoints
deactivate ALS_CENTRALSERVICE_ENDPOINT_CONFIG_DAO
ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_HANDLER: Match Participant Callback Endpoints for\nFSPIOP_CALLBACK_URL_PARTICIPANT_PUT_ERROR
'********************* Get PayerFSP Participant End-point Information - END ************************
ALS_PARTICIPANT_HANDLER --> ALS_API: Handle error\n<color #red><b>Error code:</b> 200x, 310x, 320x</color>
ALS_API ->> PAYER_FSP: Callback: PUT - /participants/{TYPE}/{ID}/error
else switchEndpoint IS NULL
ALS_PARTICIPANT_HANDLER -> ALS_PARTICIPANT_HANDLER: Handle error\n<color #red><b>Error code:</b> 200x</color>
hnote right ALS_PARTICIPANT_HANDLER #red
<color #white>Error Handling Framework</color>
end note
end alt
deactivate ALS_API
deactivate ALS_PARTICIPANT_HANDLER
end
@enduml
| false
| true
| true
| false
|
usecase
|
cd9c004b11c36a4783690a8b3155dab78ce9ffab
|
9bcd4da5e5454922139d0afefc782a997988ad1f
|
/docs/SprintD/US/US16/US16_SSD.puml
|
1f195ae79a4172539703efde02b1ae6d184fa744
|
[
"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
| 777
|
puml
|
@startuml
autonumber
actor "Laboratory Coordinator" as OE
activate OE
OE -> ":System" : asks to make a new performance report
activate ":System"
":System" --> OE : requests start and end date for the analysis
deactivate ":System"
OE -> ":System" : select dates
activate ":System"
":System" --> OE : request selection of analysis algorithm
deactivate ":System"
OE -> ":System" : select algorithm
activate ":System"
":System" --> OE : ask for confirm
deactivate ":System"
OE -> ":System" : confirms the tests
activate ":System"
":System" --> OE : show all graphs and statistic information and ask if its for save
deactivate ":System"
OE -> ":System" : asks for save
activate ":System"
":System" --> OE : informs operation success
deactivate ":System"
deactivate OE
@enduml
| false
| true
| false
| false
|
sequence
|
25d11f6a6d17c4e8c008bc3ee043e4a6831f13b6
|
17f581e0c588dc68067a12e2642dc25a0acfc9f2
|
/source/images/developer_guide/ethereum_components.plantuml
|
5cb3bcd86c2988b83afea1feabc0bbfa636d25c1
|
[
"CC-BY-4.0"
] |
permissive
|
jvasile/dst-doc
|
cfab869e06821131b144b5b75a69471c2e9d6bae
|
f076417cb28a715ac6048f4f839b9ebc681f0177
|
refs/heads/master
| 2020-08-19T05:26:35.085732
| 2019-10-11T14:35:17
| 2019-10-14T23:14:30
| 215,883,342
| 0
| 0
| null | 2019-10-17T20:50:24
| 2019-10-17T20:50:23
| null |
UTF-8
|
PlantUML
| false
| false
| 712
|
plantuml
|
@startuml ethereum_components
title Ethereum Components\n
skinparam {
TitleFontSize 20
ClassFontSize 14
DefaultTextAlignment center
LegendFontSize 12
LegendBackgroundColor LightGrey
LegendBorderColor White
}
'Platform Specific Components
package "Ethereum" as Platform_Specific_Components {
component "Contract" as Contract_Manager
component "Keystore" as OnChain_Key_Handler
component "Adapter" as Transaction_Adapter
component "Types" as Ethereum_Types
}
'Cross package dependencies
Transaction_Adapter ..> OnChain_Key_Handler
Transaction_Adapter .right.> Contract_Manager
Transaction_Adapter .left.> Ethereum_Types
OnChain_Key_Handler .up.> Ethereum_Types
@enduml
| false
| true
| false
| false
|
class
|
d3ffe62b99bbf2b1d158af703bfad8660560c77d
|
9e418a0fb69b8ee356d5c1d5d009706394edf54d
|
/class - design/rollcall/updateBonusPoint.plantuml
|
7c6d8a3c30e6691649f02914c137c34a76df4cc6
|
[] |
no_license
|
anonyhostvn/OOAD-Diagram
|
67f3a3a4aa976ee8459d3f4801147ddd1382e41e
|
f8f7a0e4ba826335cc964d3b73bebea3f4f857e4
|
refs/heads/master
| 2023-01-10T04:26:29.983705
| 2020-11-13T10:08:12
| 2020-11-13T10:08:12
| 311,749,932
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,339
|
plantuml
|
@startuml updateBonusPoint
class UpdateBonusPointForm {
- classroom_id: bigint
- token: string
- bonus_point: bigint
+ update_bonus_point(token, classroom_id, bonus_point)
}
class IStudentForm <<interface>> {
+ update_bonus_point(token, classroom_id, bonus_point)
}
class StudentController {
+ view_profile(token, classroom_id)
}
class ClassroomMember {
- id: bigint
- user_id: bigint
- classroom_id: bigint
- created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IClassroomMemberDB <<interface>> {
+ create(classroom_id, user_id): void
+ read(classroom_id)
+ read(user_id)
+ read(classroom_member_id)
+ read(classroom_id, user_id)
+ update_rollcall(classroom_member_id, created_at, is_presented)
+ update_bonus_point(classroom_member_id, created_at, point)
+ update_score(classroom_member_id, created_at, test_title, score)
+ delete(classroom_id, user_id)
+ get_user(classroom_member)
+ get_classroom(classroom_member)
}
class BonusPoint {
- id: bigint
- classroom_member_id: bigint
- date: date
- point: int
- created_at: datetime
- updated_at: datetime
+ get_id(): bigint
+ get_classroom_member_id(): bigint
+ set_classroom_member_id(bigint)
+ get_date(): date
+ set_date(date)
+ get_point(): int
+ set_point(int)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IBonusPointDB <<interface>> {
+ create(classroom_member_id, date, point)
+ read(classroom_member_id)
+ read(classroom_member_id, bonus_point_id)
+ delete(classroom_member_id, bonus_point_id)
}
hide UpdateBonusPointForm circle
hide IStudentForm <<interface>> circle
hide StudentController circle
hide IClassroomMemberDB <<interface>> circle
hide ClassroomMember circle
hide IBonusPointDB <<interface>> circle
hide BonusPoint circle
IStudentForm .down.> UpdateBonusPointForm
IClassroomMemberDB .down.> ClassroomMember
IBonusPointDB .down.> BonusPoint
IStudentForm "1"-left-"1" StudentController
StudentController "1"-left-"1" IClassroomMemberDB
StudentController "1"-down-"1" IBonusPointDB
@enduml
| false
| true
| false
| false
|
class
|
43d6918e3830028242a0652e929a35572fd7f5b5
|
695505adbd8f82f3ec54191717bbe2ff79fb3885
|
/exercise43/docs/Class Diagram.puml
|
d27dc106f10c8d2ba9ec2e95ac3230e6751f9df8
|
[] |
no_license
|
BlakeLoch/lochmandy-a04
|
7abe971225188bdb2ab95bd42e0c38362e1a2839
|
0764ec66d475a68a406870ff0707aa0be76848ad
|
refs/heads/main
| 2023-09-03T15:48:58.583547
| 2021-10-28T20:08:20
| 2021-10-28T20:08:20
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 535
|
puml
|
@startuml
class InputClass {
+getSiteNameFromUser()
+getAuthorFromUser()
+askIfJavaScriptFolder()
+askIfCssFolder()
-getYesOrNo()
}
class OutputClass {
+createWebFolder(String siteName)
+buildIndexHtml(String siteName, String author)
+createIndexHtml(String siteName, List<String> indexHtml)
+createJavaScriptFolder(String siteName, Boolean javaScriptFolder)
+createCssFolder(String siteName, Boolean cssFolder)
}
class Solution43 {
+main(String[])
}
Solution43 -- InputClass
Solution43 -- OutputClass
@enduml
| false
| true
| false
| false
|
class
|
77272b19bd3784f285325846ea9d1d7b34c2e51f
|
be6f3c2838e9be8dce8f8ac10de1ce485d030eaa
|
/docs/internals/phpdocumentor3/components/docblock.puml
|
cb151ed81a23f8fee8d34a40e1b88c689b5b975d
|
[
"MIT"
] |
permissive
|
zonuexe/phpDocumentor2-ja
|
79718326856fba3945ea16ed26eb023b87c3c9fe
|
aa085f2f10878f0b856cb1d673b5784e115145f9
|
refs/heads/doc/ja-translation
| 2021-08-09T12:55:10.460481
| 2016-08-18T16:15:50
| 2016-08-18T16:15:50
| 65,297,906
| 0
| 1
|
MIT
| 2021-01-25T14:35:51
| 2016-08-09T13:38:24
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 4,548
|
puml
|
@startuml
class DocBlock {
+ __construct(Summary $summary, Description $description = null, Tag[] $tags = [])
+ getSummary() : DocBlocks.Summary
+ getDescription() : DocBlocks.Description
+ getTags() : Tag[]
+ fetchTagByName(string $name) : Tag[]
}
class DocBlockFactory {
+ __construct(string[] tagToClassMapping)
+ create(string $docBlock)
}
namespace DocBlocks {
class Summary {
+ __construct(string $summary)
+ __toString() : string
}
class Description {
+ __construct(string $summary)
+ getTags() : Tag[]
+ __toString() : string
}
interface Tag {
+ {static} create($tagString) : static
+ getName() : string
}
class Api implements Tag {
+ {static} create($tagString) : Api
+ getName() : string
}
class Author implements Tag {
+ {static} create($tagString) : Author
+ getName() : string
}
class Category implements Tag {
+ {static} create($tagString) : Category
+ getName() : string
}
class Copyright implements Tag {
+ {static} create($tagString) : Copyright
+ getName() : string
}
class Deprecated implements Tag {
+ {static} create($tagString) : Deprecated
+ getName() : string
}
class Example implements Tag {
+ {static} create($tagString) : Example
+ getName() : string
}
class Filesource implements Tag {
+ {static} create($tagString) : Filesource
+ getName() : string
}
class Global implements Tag {
+ {static} create($tagString) : Global
+ getName() : string
}
class Ignore implements Tag {
+ {static} create($tagString) : Ignore
+ getName() : string
}
class Internal implements Tag {
+ {static} create($tagString) : Internal
+ getName() : string
}
class License implements Tag {
+ {static} create($tagString) : License
+ getName() : string
}
class Link implements Tag {
+ {static} create($tagString) : Link
+ getName() : string
}
class Method implements Tag {
+ {static} create($tagString) : Method
+ getName() : string
}
class Package implements Tag {
+ {static} create($tagString) : Package
+ getName() : string
}
class Param implements Tag {
+ {static} create($tagString) : Param
+ getName() : string
}
class Property implements Tag {
+ {static} create($tagString) : Property
+ getName() : string
}
class PropertyRead implements Tag {
+ {static} create($tagString) : PropertyRead
+ getName() : string
}
class PropertyWrite implements Tag {
+ {static} create($tagString) : PropertyWrite
+ getName() : string
}
class Return implements Tag {
+ {static} create($tagString) : Return
+ getName() : string
}
class See implements Tag {
+ {static} create($tagString) : See
+ getName() : string
}
class Since implements Tag {
+ {static} create($tagString) : Since
+ getName() : string
}
class Source implements Tag {
+ {static} create($tagString) : Source
+ getName() : string
}
class Subpackage implements Tag {
+ {static} create($tagString) : Subpackage
+ getName() : string
}
class Throws implements Tag {
+ {static} create($tagString) : Throws
+ getName() : string
}
class Todo implements Tag {
+ {static} create($tagString) : Todo
+ getName() : string
}
class Uses implements Tag {
+ {static} create($tagString) : Uses
+ getName() : string
}
class Var implements Tag {
+ {static} create($tagString) : Var
+ getName() : string
}
class Version implements Tag {
+ {static} create($tagString) : Version
+ getName() : string
}
interface Type {
}
namespace Types {
class Composite implements Type
class String_ implements Type
class Integer_ implements Type
class Float_ implements Type
class Resource_ implements Type
class Array_ implements Type
class Null_ implements Type
class Object_ implements Type
class Mixed_ implements Type
}
}
DocBlockFactory -- DocBlock
DocBlock o-- DocBlocks.Summary
DocBlock o-- DocBlocks.Description
DocBlock o-- DocBlocks.Tag
@enduml
| false
| true
| false
| false
|
class
|
481a5093f70610660b5f2ff703e2dc95ae5b6ca5
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.puml
|
78e7cca9fd48d9854973f461a27832a1c9ed3366
|
[] |
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
| 91
|
puml
|
@startuml
class TMP_TextInfoDebugTool {
}
MonoBehaviour <|-- TMP_TextInfoDebugTool
@enduml
| false
| true
| false
| false
|
class
|
f0103aa5c52a6d6c96b364f28d027049c26adbc4
|
776a3d6fd4db435bb7413d936e994ca5405a0528
|
/sequence.diagram.puml
|
dbf73132a51a0dcfaa8a82f5929e522a576bc9f7
|
[] |
no_license
|
tao-yi/system-design
|
92c882d6cf5af2feaba98662e4052ff72bab3c96
|
d352aa597564b830ed77abb78043964191fa20a7
|
refs/heads/master
| 2023-01-10T08:03:45.330307
| 2020-10-25T08:05:32
| 2020-10-25T08:09:16
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,089
|
puml
|
@startuml
actor "Driver App" as Driver
actor "Passenger App" as Passenger
participant "Load Balancer" as LB
collections "Kafka REST proxy" as KafkaRest
collections "Dada-Core-Service" as Coordinator
collections "Apache Kafka" as Kafka
collections "Kafka Connect Worker" as Connect
collections "City-Dispatch-Service" as CityDispatcher
database Cassandra
database MongoDB
database Redis
group upload location data
Driver -> LB: [HTTPS] upload driver location
Passenger -> LB: [HTTPS] upload passenger location
LB -> KafkaRest: [HTTP] forward
KafkaRest -> Kafka: publish location data to message broker in real time
Kafka --> KafkaRest: message received
KafkaRest --> Driver: [HTTP] success
KafkaRest --> Passenger: [HTTP] success
Kafka -> Connect: publish to subscriber
Connect -> Cassandra: pipe all location data directly into cassandra
Connect -> Coordinator: [RPC] send most recent location data with driverID
Coordinator -> Coordinator: - hash location into CityDispatchServiceID
Coordinator -> Coordinator: - route request to corresponding service
Coordinator -> CityDispatcher: [RPC] send most recent location of drivers
CityDispatcher -> CityDispatcher: save most recent location\nin memory
CityDispatcher -> CityDispatcher: update vehicle state, e.g. isOnTrip or not
CityDispatcher -> Redis: save most recent location in Redis for backup
CityDispatcher --> Coordinator: [RPC] success
Coordinator --> Connect: [RPC] success
Connect --> Kafka: ack
end
group passenger needs a ride
Passenger -> LB: [Websocket] request a ride
LB -> Coordinator: [Websocket] forward
Coordinator -> Coordinator: hash location into CityDispatchServiceID\n- route request to corresponding service
Coordinator -> CityDispatcher: [RPC] get closest drivers to the passenger
CityDispatcher --> Coordinator: [RPC] return closest drivers to the passenger
Coordinator -> Coordinator: found match, calculate ETA, create TRIP data
Coordinator -> MongoDB: insert TRIP data
Coordinator --> LB: [Websocket]: return TRIP
LB --> Passenger: [Websocket]: forward notification, TRIP created for passenger
end
@enduml
| false
| true
| false
| false
|
sequence
|
6bea18b32bbaa86aeaa65288542469dd79930730
|
1aa9654c18c622dcec50c65d01a4075c601f692d
|
/WisherApp/app/src/main/java/ru/omegapps/wisherapp/fragments/fragments.plantuml
|
aafe4860bff9a003c999d071aab05affaa43cc99
|
[] |
no_license
|
iCatOK/wisher-app-android
|
52e217f01757f969f9a1c7609db708d5770dbb0f
|
32de7790360a816da32c86704f9bdd74021b91f0
|
refs/heads/master
| 2023-06-15T07:22:44.548594
| 2021-07-12T16:15:06
| 2021-07-12T16:15:06
| 370,042,960
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,278
|
plantuml
|
@startuml
title __FRAGMENTS's Class Diagram__\n
namespace ru.omegapps.wisherapp {
namespace fragments {
class ru.omegapps.wisherapp.fragments.HomeFragment {
~ currentUser : FirebaseUser
~ mAuth : FirebaseAuth
~ plusButton : FloatingActionButton
~ progressBar : RelativeLayout
~ recyclerView : RecyclerView
~ wishRef : DatabaseReference
~ wishes : ArrayList<Wish>
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
{static} - WISH_KEY : String
- mParam1 : String
- mParam2 : String
+ HomeFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
+ onMyItemClick()
+ onMyItemLongClick()
+ onStart()
+ onViewCreated()
- deleteWishByPosition()
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
class ru.omegapps.wisherapp.fragments.WishBlocksFragment {
~ progressBar : RelativeLayout
~ wishBlocks : ArrayList<WishBlock>
{static} - PUBLIC_WB_KEY : String
{static} - WBLOCK_KEY : String
- childEventListener : ChildEventListener
- currentUser : FirebaseUser
- mAuth : FirebaseAuth
- publicWishBlockRef : DatabaseReference
- valueEventListener : ValueEventListener
- wishBlockRef : DatabaseReference
+ onCreate()
+ onCreateView()
+ onStop()
- deleteWishBlockByPosition()
- goToEditWB()
- showAlertDialogToDeleteWishBlock()
}
}
}
ru.omegapps.wisherapp.fragments.HomeFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.HomeFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemLongClickListener
ru.omegapps.wisherapp.fragments.HomeFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.WishBlocksFragment -up-|> androidx.fragment.app.Fragment
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
|
8d026a2a62126bd29804ec0e50b3980a7e77c70b
|
535dca469320dec5b0a348ab927bf887fe5672b0
|
/src/main/java/UML/EditProducts.puml
|
5b020822d06ef7fb74a19f54a26d088051912e33
|
[] |
no_license
|
Camaz993/Info202Project
|
b13f4a7d1c864685c9e033880f6c963186aa1bbf
|
7a43c35b37fb1782166ea39b616fdb86eb620b12
|
refs/heads/master
| 2023-01-09T23:04:29.538283
| 2020-11-05T07:41:30
| 2020-11-05T07:41:30
| 310,222,521
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,123
|
puml
|
@startuml
'worked with Bradley WindyBank on UML Diagrams'
'Also Sourced from reference document'
' style tweaks to make the diagram a little more readable
skinparam {
Style strictuml
RoundCorner 8
Sequence {
' make activations yellow too
LifeLineBackgroundColor #FDFDCD
' make stereotypes less ugly
Stereotype {
Font {
Size 11
Style plain
}
}
}
DatabaseBorderColor #A80036
}
title Edit Products
actor User as user
participant "Main" as main << main >>
participant "MainMenu" as menu << frame >>
participant "ProductReportDialog" as report << dialog >>
participant "ProductDatabaseDAO" as dao << DAO >>
participant "ProductDialog" as editor << dialog >>
participant "ValidationHelper" as validator
database "Database" as db
create menu
main -> menu : « create »
user -> menu : clicks 'View Products'
activate menu
create report
menu -> report : « create »
activate report
create dao
report -> dao: « create »
note over report: as shown in\n'View Products'\ndiagram
user <-- report : list of products displayed
deactivate report
user -> report++ : selects a product in the list
report--
user -> report : clicks 'Edit' button
activate report
report -> report : jList.getSelectedValue() : product
create editor
report -> editor++ : « create(product) »
create validator
editor -> validator : « create »
editor -> editor: textField.setValue(product.getValue()) \n For all values of editor
user <-- editor : product details displayed, ready for editing
deactivate editor
user -> editor++ : edits product details
editor--
user -> editor : clicks 'Save' button
editor++
editor -> validator++ : isValid(product)
return valid
opt if valid
note over editor: existing save code as\nshown in 'Add Product'\ndiagram
end
editor --> report
editor--
destroy editor
report -> dao++ : getProducts()
dao -> db ++ : "select * from product order by id"
return ResultSet
return products
report -> report : productsModel.updateItems(products)
note left: updated product\ndisplayed in report
@enduml
| false
| true
| true
| false
|
usecase
|
1e34da8a15b1730ba3b4f621b70071218842579e
|
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
|
/documentation/serviceApi/pm/performance/media/src/performanceMonitoringNotificationModel.puml
|
91ef8b9a59e1777555138e213c83c0c9e14ee8b6
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Legato-SDK
|
b2ed422108f4bbb5d3aff27123d3f31305fd808f
|
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
|
refs/heads/working-draft
| 2023-07-06T06:44:01.113378
| 2023-06-23T14:14:48
| 2023-06-23T14:14:48
| 94,903,642
| 5
| 4
|
Apache-2.0
| 2022-05-04T10:22:56
| 2017-06-20T15:00:38
| null |
UTF-8
|
PlantUML
| false
| false
| 2,803
|
puml
|
@startuml performanceMonitoringNotificationModel
class Event {
eventId*: string
eventTime*: date-time
}
class PerformanceJobEvent {
eventType*: PerformanceJobEventType
}
Event <|-- PerformanceJobEvent
PerformanceJobEvent *-->"1" PerformanceJobEventPayload : event
class PerformanceJobEventPayload {
href: string
id*: string
state: string
}
class PerformanceJobReportReadyEvent {
eventType*: PerformanceJobReportReadyEventType
}
Event <|-- PerformanceJobReportReadyEvent
PerformanceJobReportReadyEvent *-->"1" PerformanceJobReportReadyEventPayload : event
class PerformanceJobReportReadyEventPayload {
href: string
id*: string
reportHref: string
reportId*: string
}
class PerformanceJobReportPreparationErrorEvent {
eventType*: PerformanceJobReportPreparationErrorEventType
}
Event <|-- PerformanceJobReportPreparationErrorEvent
PerformanceJobReportPreparationErrorEvent *-->"1" PerformanceJobReportPreparationErrorEventPayload : event
class PerformanceJobReportPreparationErrorEventPayload {
href: string
id*: string
reportPreparationFailedReason: string
}
class PerformanceJobProcessEvent {
eventType*: PerformanceJobProcessEventType
}
Event <|-- PerformanceJobProcessEvent
PerformanceJobProcessEvent *-->"1" PerformanceJobProcessEventPayload : event
class PerformanceJobProcessEventPayload {
href: string
id*: string
}
class PerformanceProfileEvent {
eventType*: PerformanceProfileEventType
}
Event <|-- PerformanceProfileEvent
PerformanceProfileEvent *-->"1" PerformanceProfileEventPayload : event
class PerformanceProfileEventPayload {
href: string
id*: string
}
class PerformanceReportEvent {
eventType*: PerformanceReportEventType
}
Event <|-- PerformanceReportEvent
PerformanceReportEvent *-->"1" PerformanceReportEventPayload : event
class PerformanceReportEventPayload {
href: string
id*: string
}
enum PerformanceReportEventType {
performanceReportCreateEvent
performanceReportStateChangeEvent
}
enum PerformanceJobProcessEventType {
cancelPerformanceJobStateChangeEvent
modifyPerformanceJobStateChangeEvent
resumePerformanceJobStateChangeEvent
suspendPerformanceJobStateChangeEvent
}
enum PerformanceProfileEventType {
performanceProfileCreateEvent
performanceProfileStateChangeEvent
performanceProfileDeleteEvent
performanceProfileAttributeValueChangeEvent
}
enum PerformanceJobEventType {
performanceJobCreateEvent
performanceJobStateChangeEvent
performanceJobAttributeValueChangeEvent
}
enum PerformanceJobReportReadyEventType {
performanceJobReportReadyEvent
}
enum PerformanceJobReportPreparationErrorEventType {
performanceJobReportPreparationErrorEvent
}
@enduml
| false
| true
| false
| false
|
sequence
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.