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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
84e02c12b8b365033a1d15821ae54a22745a23c3 | 6eaf66fc944fe74f27cb20dd063ed41629684093 | /uml/ae_methods.puml | d27382678f5c10aaa157ee8be050f350bca7ea6d | [] | no_license | littleroys/redis-aeloop | 591c450fff16c532116520ae88946abb9e4389f6 | d7439baddb07f1dbc66b58ec44acaae53c977c66 | refs/heads/master | 2022-12-13T04:56:23.223191 | 2020-09-19T16:04:27 | 2020-09-19T16:04:27 | 296,884,840 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,198 | puml | @startuml
object aeEventLoop {
aeEventLoop *aeCreateEventLoop(int setsize);
void aeDeleteEventLoop(aeEventLoop *eventLoop);
void aeStop(aeEventLoop *eventLoop);
int aeCreateFileEvent(aeEventLoop *eventLoop, int fd, int mask,
aeFileProc *proc, void *clientData);
void aeDeleteFileEvent(aeEventLoop *eventLoop, int fd, int mask);
int aeGetFileEvents(aeEventLoop *eventLoop, int fd);
long long aeCreateTimeEvent(aeEventLoop *eventLoop, long long milliseconds,
aeTimeProc *proc, void *clientData,
aeEventFinalizerProc *finalizerProc);
int aeDeleteTimeEvent(aeEventLoop *eventLoop, long long id);
int aeProcessEvents(aeEventLoop *eventLoop, int flags);
int aeWait(int fd, int mask, long long milliseconds);
void aeMain(aeEventLoop *eventLoop);
char *aeGetApiName(void);
void aeSetBeforeSleepProc(aeEventLoop *eventLoop, aeBeforeSleepProc *beforesleep);
void aeSetAfterSleepProc(aeEventLoop *eventLoop, aeBeforeSleepProc *aftersleep);
int aeGetSetSize(aeEventLoop *eventLoop);
int aeResizeSetSize(aeEventLoop *eventLoop, int setsize);
void aeSetDontWait(aeEventLoop *eventLoop, int noWait);
}
@enduml | false | true | false | false | object |
7ea987cb7a7f415715d70a35fa04d87fba43537f | 9d1ae03aa26f4ccb54dcf772acab8844158e448c | /05-sequence-examples.puml | 7088e922aca07697932e0835f27041402f1b74e0 | [] | no_license | rostamiani/plantuml-course | d0342e93d13eed813d86f03c77bca4e06433e8d6 | 2af51c577b2c7f76b8043cbb686c25f37b8c1529 | refs/heads/master | 2023-02-25T21:14:35.176091 | 2021-01-31T07:58:35 | 2021-01-31T07:58:35 | 334,340,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,971 | puml | @startuml
actor Client as client #red
participant "Kong-Gateway" as kong #APPLICATION
participant "Auth-Service" as auth
queue "Rabbit-MQ" as rabbit #orange
participant "User-Service" as user
note across
Case 'request for Register':
- user sends signup Request to gateway
- gateway proxy Request to User Service
- user service create new user and produce Event along hashed permission and user data to Auth service
- Auth service generate Token and store in a cookie then sent to client via gateway
end note
autonumber
client->kong:signup request
kong->user:proxy to User Service
user-->rabbit:Produce signup event
rabbit-->auth:Consume signup event
auth-->kong:Add JWT to request
kong-->client:request redirect to profile page
note across
Case 'request for Particular Services':
- user is registered and logged in
- gateway proxy Request to User Service
- user has all permissions and roles necessary to access particular-service
- or does not have all permissions
- user get needed data or recives an error due to permissions
end note
autonumber 1
client->kong:added JWT and Request particular service
kong->auth:rquest for Authentication
alt on authentication faliure
auth-->kong:failing identity
kong-->client:unAuthorized error
end
autonumber 3
auth-->kong:Add hashed permission to header
kong->user:send request + user permission to particular service
user->:Send request \nto other services
user<--: Get the result
user-->kong:Send back Required Data
alt on role/permission absent or error
autonumber 7
user-->kong:Return error
end alt
kong->client:send back to client
note across
Case 'request for LOG IN':
- user is registered and not logged in
- user send credential request
- user is valid or not valid
end note
autonumber 1
client->kong:login request
kong->auth:request for checking identity
auth->kong:Add JWT to request
kong-->client:request redirect to profile page
auth-->kong:Fail identity
kong-->client:unAuthorized error
@enduml | false | true | false | false | sequence |
c0d32d972156aecec25cbd462befcf07647aa55d | fbe37a3ac9e68a255e424a67551db13b1970a3d8 | /src/main/java/game/test.plantuml | ff7c7d724c2edb4806130257668fd3d80990c385 | [] | no_license | fm65/elpresidente | ff79c50b2b736a32642aae4a145aac6413d42c71 | 3c3c7cfad67c6308e9d44e8044088f6aec4a267b | refs/heads/main | 2023-03-23T14:32:43.195385 | 2021-03-09T20:00:20 | 2021-03-09T20:00:20 | 339,170,937 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,993 | plantuml | @startuml
title __TEST's Class Diagram__\n
namespace java{
namespace test {
class test.Event {
- description : String
- eventChoices : ArrayList<EventChoice>
+ Event()
+ choose()
+ displayChoices()
}
}
}
namespace java{
namespace test {
class test.EventChoice {
- description : String
- eventChoiceEffectList : ArrayList<EventChoiceEffect>
- relatedEventsList : ArrayList<Event>
+ EventChoice()
+ applyEffects()
}
}
}
namespace java{
namespace test {
class test.EventChoiceEffect {
- actionType : String
- affectedObjectName : String
- unitNumberChange : int
+ EventChoiceEffect()
+ affectFaction()
+ affectFactor()
+ affectPartisans()
- affectAgriculture()
- affectFood()
- affectIndustry()
- affectTreasury()
}
}
}
namespace java{
namespace test {
class test.Faction {
- isAlive : boolean
- name : String
- satisfaction : int
- totalPartisans : int
+ Faction()
+ isAlive()
}
}
}
namespace java{
namespace test {
class test.LoadJSON {
- filePath : String
- parser : JSONParser
+ LoadJSON()
+ extractAll()
+ extractChoiceEffects()
+ extractEffectsActions()
+ extractEventChoices()
+ extractEvents()
+ extractFactions()
+ extractStartParameters()
}
}
}
namespace java{
namespace test {
class test.Main {
{static} + main()
}
}
}
namespace java{
namespace test {
class test.ScenarioSelector {
+ ScenarioSelector()
+ displayScenarioNameStoryDifficulty()
+ listScenarios()
+ selectScenario()
}
}
}
namespace java{
namespace test {
class test.World {
{static} + data : WorldData
- filePath : String
- scenarioName : String
- yearNumber : int
+ World()
+ createData()
+ createDataWithJSON()
+ executeActions()
{static} + waitForEnter()
}
}
}
namespace java{
namespace test {
class test.WorldActions {
- seasons : String[]
+ WorldActions()
+ applyChoiceEffects()
+ callEvent()
+ endYear()
+ iterateSeasons()
+ iterateYears()
}
}
}
namespace java{
namespace test {
class test.WorldData {
- agriculturePercentage : int
- difficulty : String
- events : ArrayList<Event>
- factionsList : ArrayList<Faction>
- foodUnits : int
- globalPopulation : int
- globalSatisfaction : double
- industryPercentage : int
- treasury : int
+ WorldData()
+ calculateGlobalPopulationWithUpdate()
+ calculateGlobalSatisfactionWithUpdate()
+ factionExists()
}
}
}
namespace java{
namespace test {
class test.YearEnding {
+ YearEnding()
+ bribe()
+ bribeChoice()
+ foodMarket()
+ reviewAgriculture()
+ reviewIndustry()
+ updatePopulation()
+ yearReview()
- bribeFaction()
}
}
}
test.EventChoiceEffect o-- test.WorldData : data
test.LoadJSON o-- test.WorldData : data
test.World o-- test.WorldActions : actions
test.WorldActions o-- test.WorldData : data
test.YearEnding o-- test.WorldData : data
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 |
5989501bff09a117d46f12756905765a14889927 | 84039bf9a80039400f9dcfe303222145ca354e10 | /puml/MedComCorePatient.puml | 60426e96b511540b4c6e17c28a747be600d18e65 | [
"MIT"
] | permissive | tmsMedcom/dk-medcom | d570d7aa5842ec50f19c594113568e88dbcb67b8 | 6ecf74788e2839327015e569fd06de93e41aa9d8 | refs/heads/master | 2023-06-12T07:42:56.063194 | 2021-06-29T08:28:01 | 2021-06-29T08:28:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 194 | puml | @startuml MedComCorePatient
hide empty members
class "MedComCorePatient" as patient
class "MedComCoreOrganization" as serviceProvider
patient -- serviceProvider : "service provider"
@enduml | false | true | false | false | class |
096ab5fdca481d952634ca996acb928681f9199f | ad3b81b946aa6b5b72ba5d34de72f99829b2c6f7 | /diagrams/viewAllProducts.puml | 942acbc66d533e92f51282741e639d601948ef1f | [] | no_license | meadows115/ShoppingSysteminfo | 5cae33ad4a2b0caa29ba17cefe359d418d98d860 | ad984dcfae0716456f0748d8fa205a9fd6075565 | refs/heads/master | 2022-07-09T12:25:31.758679 | 2020-05-06T06:29:57 | 2020-05-06T06:29:57 | 261,670,956 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 901 | puml | @startuml
' use strict UML mode
skinparam style strictuml
'Creating a user actor
actor "User" as user
'creating the Administration class
participant "Administration" as admin <<main>>
admin++
'Creating the main menu frame
create "Main Menu" as mainmenu <<JFrame>>
admin->mainmenu:construct
user->mainmenu++ : click "view products" button
'Creating the view products dialog
create "View Products" as viewproducts <<dialog>>
mainmenu->viewproducts++ :construct
'Creating the DAO
create "Collectiondao" as dao <<DAO>>
viewproducts->dao:construct
'retrieve the products, returns all of the products
viewproducts->dao++ :getProducts()
dao--
'Creating the gui helper model
create "SimpleListModel" as listmodel <<gui helpers>>
dao->listmodel:construct
'return the array of products
listmodel->viewproducts:SimpleListModel(items)
viewproducts->viewproducts:dispose()
destroy viewproducts
@enduml
| false | true | false | false | usecase |
90f0053a6940e60c6b5bcb4f7d73b1b2091e6cdf | 03228ce8285976940109091238aa404833a3c892 | /docs/designs/datamodel-ssi.puml | 5e9a412e2dd59723804886fb3414b392dedf71e5 | [
"Apache-2.0"
] | permissive | rabobank-blockchain/universal-ledger-agent | b9a74a7839e9a150b5d907bd35a1ac075cc0f526 | 11e71b0bc04b1d93f2430334e7fc7f7f7d1b691e | refs/heads/develop | 2023-01-07T04:26:31.900795 | 2020-07-31T07:59:04 | 2020-07-31T07:59:04 | 207,501,031 | 21 | 7 | Apache-2.0 | 2023-01-06T02:24:30 | 2019-09-10T08:08:51 | TypeScript | UTF-8 | PlantUML | false | false | 1,002 | puml | @startuml ssi
object Attestor
object Transaction
object Attestation
skinparam roundcorner 20
hide empty members
Attestor -right-|> Transaction
Transaction --|> Attestation
Attestor --|> Attestation
Attestor : name: string
Attestor : icon: string
Attestor : pubKey: string
Attestor : datetime: Date | string
Attestor : transactions?: ITransaction[]
Attestor : receivedAttestations?: IAttestation[]
Attestor : issuedAttestations?: IAttestation[]
Transaction : uuid?: string
Transaction : attestorPubKey: string
Transaction : datetime: Date | string
Transaction : attest: IAttestation[]
Transaction : revoke: IAttestation[]
Transaction : verifyRequest: IAttestation[]
Transaction : state?: string
Transaction : error?: string
Attestation : uuid?: string
Attestation : attestorPubKey: string
Attestation : forPubKey?: string
Attestation : context: string[]
Attestation : type: string[]
Attestation : expires?: Date | string
Attestation : datetime: Date | string
Attestation : statements: any
@enduml
| false | true | false | false | class |
931b84080d2cb8cbfbe3193a88d77cffc38180b3 | 462b9598f08a48ab835f0b189d4d344560965227 | /src/main/java/csheets/worklog/n1950689/sprint3/lang03_01_conditional_formating_SD.puml | a218bdd00604d2172c0f237f3e911a5da9639894 | [] | no_license | VitorMascarenhas/LAPR4-2016 | 19f5593b98b81763f77021fb04278ed231337028 | e53a5a46c0e09fbc155fb91f2010d50532de85d2 | refs/heads/master | 2020-03-19T10:31:05.321699 | 2018-06-06T19:49:19 | 2018-06-06T19:49:19 | 136,027,190 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,865 | puml | @startuml doc-files/lang03_01_conditional_formating_SD.png
actor USER as usr
participant "ui : ConditionalFormatPanel" as ui
participant "ctrl : ConditionalFormatController" as ctrl
participant "uic : UIController" as uic
participant "c : Cell" as c
participant "cfe : CondFormEscuta" as cfe
participant "cf : ConditionalFormat" as cf
participant "eec : ExcelExpressionCompiler" as eec
participant "expr : Expression" as expr
participant "v : Value" as v
participant "sc : StylableCell" as sc
usr -> ui : start cell conditional format
activate ui
create ctrl
ui -> ctrl : create()
ui --> usr : ask COLOR
usr -> ui : insert COLOR
ui -> ctrl : setBackgroundColor("TRUE",COLOR)
activate ctrl
ctrl -> uic : getActiveCell()
uic -> c : getCellListeners()
loop each cell listener
alt if listener is CondFormEscuta
ctrl -> cfe : getConditionalFormat()
alt if cf == null
create cf
ctrl -> cf : create()
end
alt if condition is "TRUE"
ctrl -> cf : setTrueStyleBackgroundColor(COLOR)
else
ctrl -> cf : setFalseStyleBackgroundColor(COLOR)
end
end
end
deactivate ctrl
ui --> usr : ask FONT
usr -> ui : insert FONT
ui -> ctrl : setFont("TRUE",FONT)
activate ctrl
ctrl -> uic : getActiveCell()
uic -> c : getCellListeners()
loop each cell listener
alt if listener is CondFormEscuta
ctrl -> cfe : getConditionalFormat()
alt if cf == null
create cf
ctrl -> cf : create()
end
alt if condition is "TRUE"
ctrl -> cf : setTrueStyleFont(FONT)
else
ctrl -> cf : setFalseStyleFont(FONT)
end
end
end
deactivate ctrl
ui --> usr : ask BORDER
usr -> ui : insert BORDER
ui -> ctrl : setBorder("TRUE",BORDER)
activate ctrl
ctrl -> uic : getActiveCell()
uic -> c : getCellListeners()
loop each cell listener
alt if listener is CondFormEscuta
ctrl -> cfe : getConditionalFormat()
alt if cf == null
create cf
ctrl -> cf : create()
end
alt if condition is "TRUE"
ctrl -> cf : setTrueStyleBorder(BORDER)
else
ctrl -> cf : setFalseStyleBorder(BORDER)
end
end
end
deactivate ctrl
usr -> ui : apply condition settings
ui -> ctrl : setConditionValue(CONDITION)
activate ctrl
ctrl -> uic : getActiveCell()
uic -> c : getCellListeners()
loop each cell listener
alt if listener is CondFormEscuta
ctrl -> cfe : getConditionalFormat()
alt if cf == null
create cf
ctrl -> cf : create()
ctrl -> cfe : setConditionalFormat(cf)
end
ctrl -> cfe : setCondition(CONDITION)
activate cfe
cfe -> cfe : evaluate()
activate cfe
create eec
cfe -> eec : create()
activate eec
cfe -> eec : compile(CELL,CONDITION)
eec --> cfe : expr
deactivate eec
cfe -> expr : evaluate()
activate expr
create v
expr -> v : create
expr --> cfe : v
deactivate expr
cfe --> cfe : v
deactivate cfe
cfe -> cfe : syle(v)
activate cfe
alt if v == TRUE
cfe -> cf : setStyleFormat(TRUE)
activate cf
create sc
cf -> sc : create()
cf -> sc : setBackgroundColor()
cf -> sc : setFont()
cf -> sc : setBorder()
deactivate cf
else else
cfe -> cf : setStyleFormat(FALSE)
activate cf
create sc
cf -> sc : create()
cf -> sc : setBackgroundColor()
cf -> sc : setFont()
cf -> sc : setBorder()
deactivate cf
end
cf -> sc : getCellListeners()
loop each cell listener
cf -> sc : valueChanged(sc)
cf -> sc : styleChanged(c)
end
deactivate cfe
deactivate cfe
end
end
deactivate ctrl
deactivate ui
@enduml | false | true | false | false | usecase |
b2ead85ed1872875e16e15d4732989565882c8e3 | 1aa9654c18c622dcec50c65d01a4075c601f692d | /WisherApp/app/src/main/java/ru/omegapps/wisherapp/managers/managers.plantuml | 2e5aac5e9a00ace48aa45c0583a6e4a396fb9bcd | [] | 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 | 1,197 | plantuml | @startuml
title __MANAGERS's Class Diagram__\n
namespace ru.omegapps.wisherapp {
namespace managers {
class ru.omegapps.wisherapp.managers.WishManager {
{static} + currentUid : String
{static} + sessionAddresseeName : String
{static} + sessionNameState : String
{static} + sessionSex : String
{static} + sessionTags : ArrayList<String>
{static} - DATA_AGENT : DataAgent
{static} - NAME_PLACE_HOLDER : String
{static} - sessionBeginStack : ArrayList<WishBlock>
{static} - sessionEndStack : ArrayList<WishBlock>
{static} - sessionMainStack : ArrayList<WishBlock>
{static} - sessionMidStack : ArrayList<WishBlock>
{static} + generateCurrentWish()
{static} + generateRandomWish()
{static} + getWishBlocksOfStep()
{static} + pushToStepStack()
{static} + resetSession()
{static} + resetStepStack()
}
}
}
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 |
537df31be0babc54759a1a1eae2343ff7e1b7aa8 | 2c7b3d0a9f435618ac6d5e165333d97f0dffb1ce | /src/main/java/com/mrathena/design/pattern/structural/patterns/adapter/pattern/implement/object/adapter/pattern/类图.puml | 9369b5005d5ef3a9bef9309638b2c88f4bc30d7b | [] | no_license | mrathena/design.pattern | 0a068b32e670c8856638557be23d93a9bd679ca8 | a65520b5a130cab5b163e9d99665ce5bdcb017d9 | refs/heads/master | 2021-06-03T01:13:15.722914 | 2020-07-02T08:02:08 | 2020-07-02T08:02:08 | 223,210,637 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 266 | puml | @startuml
class Adaptee {
+ void foo()
}
interface Target {
+ void bar()
}
class Adapter implements Target {
- Adaptee adaptee = new Adaptee();
+ void bar() {xxxx; adaptee.foo(); xxxx;}
}
class Client
Adaptee --* Adapter
Client ..> Adapter
@enduml | false | true | false | false | class |
39e4f9b9230a7c894f2140c61e529c004fe110ff | 7cbe08752a2ddddb3e5f89643e0a59a016dc1728 | /doc/packages.puml | 47a7bd34907e338c7a2f5a5fa82fbd3d42d82ee8 | [] | no_license | kiew-ay/Adventure | 68b67cc996c1bfa26ae9d3f9a729360d2e5d0e5a | a2dbd95df2b85bcfa919148d9dbbe544f3f95cac | refs/heads/master | 2021-09-03T05:08:45.202905 | 2018-01-05T21:29:23 | 2018-01-05T21:29:23 | 109,044,676 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,170 | puml | @startuml
' Packages for the Adventure RPG
'===============================================================================
' SKINPARAMS
'-------------------------------------------------------------------------------
skinparam class {
BorderColor<<Module>> Gray
BackgroundColor<<Module>> LightGray
}
skinparam object {
BorderColor Black
BackgroundColor Violet
}
'===============================================================================
' PACKAGES
'-------------------------------------------------------------------------------
'_______________________________________________________________________________
package "Mission Creation" <<Cloud>> #Wheat {
'_______________________________________________________________________________
package Character <<Folder>> {
'----------------------------------
class Character {
self.name : ''
self.image : ''
self.hp : 100
self.skills : []
self.inventory : []
self.hp_plus(amount)
self.hp_minus(amount)
}
class Protagonist {
self.body_type : ''
self.mind_type : ''
self.hp_plus(amount)
self.hp_minus(amount)
self.add_to_inventory(item)
self.remove_from_inventory(item)
}
class Enemy {
self.hp_plus(amount)
self.hp_minus(amount)
}
Character <|-- Protagonist
Character <|-- Enemy
'----------------------------------
class Skill {
self.name : ""
self.description : ""
self.description_format : ""
self.do()
}
class Punch {
self.damage : 10
}
Character *. "*" Skill
Skill <|-- Punch
'----------------------------------
class Interactible {
self.name : ""
self.description: ""
self.interactions : []
self.inspect()
}
class Item {
self.pick_up()
self.use()
}
class Door {
self.rooms = [room1, room2]
self.key : None
self.status : (closed, unlocked)
self.unlock()
self.open()
'toggle current_room between rooms in self.rooms
self.go_through(): Toggle current_room
}
Interactible *. "*" Skill
Interactible <|-- Item
Interactible <|-- Door
}
'_______________________________________________________________________________
package Setting <<Folder>> {
class Room {
self.contents : []
self.doors : []
self.discovered : False
self.describe()
}
class Map {
self.draw_map()
self.draw_room()
self.draw_minimap()
}
}
'_______________________________________________________________________________
package Plot <<Folder>> {
class Checker {
self.win_conditions : []
self.lose_conditions : []
self.trigger_events : []
self.add_win_condition()
self.add_lose_condition()
self.check_win_conditions()
self.check_lose_conditions()
self.check_trigger_conditions()
self.victory()
self.failure()
}
'----------------------------------
abstract class Condition {
die()
is_in()
less_than()
greater_than()
equal_to()
less_than_or_equal_to()
greater_than_or_equal_to()
}
}
}
'_______________________________________________________________________________
package Mission <<Node>> #BUSINESS {
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'' The mission file instantiates everything that will exist in the mission.
'' - characters (hero, enemies, etc.)
'' - map (rooms, doors, and layout)
'' - items
'' - plot (win/lose conditions, trigger conditions, etc.)
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
object hero
Protagonist <|-- hero
object skeleton
Enemy <|-- skeleton
object punch
Punch <|-- punch
object diamond
Item <|-- diamond
object key
Item <|-- key
object room_1
Room <|-- room_1
object room_2
Room <|-- room_2
object door_1_2
Door <|-- door_1_2
object map
Map <|-- map
object plot_checker
Checker <|-- plot_checker
}
'_______________________________________________________________________________
package "Gameplay" <<Cloud>> #GreenYellow {
'_______________________________________________________________________________
package Conflict <<Folder>> {
class Conflict {
self.character_1
self.character_2
self.main()
self.display_options()
self.process_interaction()
self.summarize_conflict()
}
'class ConflictManager {
' generate_conflict()
'}
}
object conflict
Conflict <|-- conflict
'ConflictManager ..> conflict
'_______________________________________________________________________________
package UserInterface <<Folder>> {
abstract class UI {
system : 'Linux'
describe_setting()
prompt("question")
prompt_bool("question")
prompt_list("question", options_list=[])
prompt_dict("question", options_dict={})
}
abstract class Visualizer {
draw_screen()
}
}
'_______________________________________________________________________________
package WorldCreator <<Folder>> {
class Init <<Module>> {
' VARIABLES
current_location = Mission.STARTING_LOCATION
hero = Mission.hero
' METHODS
import_mission_file()
}
'----------------------------------
class Main <<Module>> {
' VARIABLES
inventory : []
current_room : room_1
game_state : {}
' METHODS
draw_scene()
prompt_user()
generate_conflict()
modify_stats()
}
}
}
'===============================================================================
' FORMATTING & LAYOUT
'-------------------------------------------------------------------------------
'_______________________________________
' MISSION CREATION
'---------------------------------------
' Align vertically: "Mission Creation", Mission, "Gameplay"
"Mission Creation" -down[hidden]-> Mission
Mission -down[hidden]-> "Gameplay"
' Align horizontally: Character, Settings, Plot
Character -[hidden]> Setting
Setting -[hidden]> Plot
' Align Character above Enemy
Character -[hidden]-> Enemy
' Align Character over WorldCreator
Character -[hidden]-> WorldCreator
'_______________________________________
' MISSION
'---------------------------------------
note right of Mission
<b>Mission</b> instantiates all objects in the mission
using the classes defined in <b>Mission Creation</b>
end note
' Align Mission over WorldCreator
note "<b>WorldCreator</b> imports <b>Mission</b>" as MissionImportNote
Mission .left[hidden]. MissionImportNote
MissionImportNote .. WorldCreator
'_______________________________________
' GAMEPLAY
'.......................................
' Align horizontally: UserInterface, Conflict
UserInterface -[hidden]> Conflict
'_______________________________________
' MISCELLANEOUS FORMATTING
'.......................................
' don't display the circle or stereotype name for these skinparams
hide <<Module>> circle
hide <<Module>> stereotype
hide <<Object>> circle
hide <<Object>> stereotype
'===============================================================================
@enduml
| false | true | false | false | class |
49d40676225485e66644b723035ed83ec9cf6f4f | 80f7f4282634a6e4687c974e3fe9f48f988fed03 | /doc/puml/JsonRpcClasses.puml | 5cc4b8047f8809afa2c48cc5f07428724913f86a | [
"Apache-2.0"
] | permissive | ConsensusJ/consensusj | ccea2432aadf1b9f02df4f96711facdbc07d9b9e | c7ab776d5700409fa52cb77a5e8651d82f59d9e4 | refs/heads/master | 2023-08-22T19:12:44.882289 | 2023-08-15T09:30:37 | 2023-08-15T16:04:45 | 40,155,526 | 69 | 29 | Apache-2.0 | 2023-08-28T13:02:50 | 2015-08-04T01:00:20 | Java | UTF-8 | PlantUML | false | false | 650 | puml | @startuml
skinparam packageStyle Rect
skinparam shadowing false
hide empty members
namespace org.consensusj.jsonrpc {
interface DynamicRpcMethodSupport
abstract class AbstractRpcClient
class RpcClient
DynamicRpcMethodSupport <|.. AbstractRpcClient
AbstractRpcClient <|-- RpcClient
}
namespace org.consensusj.jsonrpc.groovy {
interface DynamicRpcMethodFallback << Groovy, trait >>
class DynamicRpcClient << Groovy >>
org.consensusj.jsonrpc.DynamicRpcMethodSupport <|.. DynamicRpcMethodFallback
org.consensusj.jsonrpc.RpcClient <|-- DynamicRpcClient
DynamicRpcMethodFallback <|.. DynamicRpcClient
}
@enduml
| false | true | false | false | class |
d11463d1b535b4d3e0469dda80dd5b5cf6068abb | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Solution/Services/cloud/Process.puml | 0c695f5728773c8ea993df7b7930c31d5ff1fafd | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 292 | puml | @startuml
rectangle "Diagram TBD"
@enduml
partition "cloud" {
}
partition User #cccccc {
(*) --> "Create Project"
--> "Write Code"
}
partition "cloud" #lightblue {
"Write Code" --> "Test Code"
"Test Code" --> "Deploy Code"
"Deploy Code" --> (*)
}
partition Used #cccccc {
}
| false | true | false | false | activity |
45c5ac02be1de80f4b17e48078dd04ffe7cd09e9 | 7f0227d93aca7119bdc4f126bb1c9f71ae537781 | /UML/DSS/DSS_Authentification.puml | 839d7572fd2c6fd867ea0b6de1c87313e6f54faf | [] | no_license | galbanie/Protubes_old | 2051b6b7e060999c38305d739651f27617913b93 | 2c684696ade7b7f9a9fac15f5711e823cb2e6708 | refs/heads/master | 2021-03-12T23:13:28.914677 | 2014-01-05T21:33:21 | 2014-01-05T21:33:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 583 | puml | @startuml
hide footbox
actor Membre
participant Protubes << System >>
Membre -> Protubes : demandeFormulaire(connexion)
Protubes -> Membre : returnFormulaire
Membre -> Protubes : requeteConnexion(email,password)
alt reussie
Protubes -> Membre : connexion reussie
else echoue
Protubes -> Membre : Connexion refuse
alt membre not exist
Protubes --> Membre : Message d'inscription
else compte not actif
Protubes --> Membre : Message de validation mail inscription
end
end
@enduml | false | true | false | false | usecase |
5e47443a6f4c6643da9947bf63d9d9d51433e568 | 6148ce6d883a6f94b1588ab302147c63dd8fc644 | /microservices/kunde/src/main/kotlin/de/hska/kunde/kunde.uc.puml | 2bd2aa044fa8248614518bbbcd895f836f423919 | [] | no_license | Zwal/AngularTest | 5517f691dd12047fbe685a3feeda1cda8a2bac27 | 1d86c2c8fdd51fa2b1000129fe61d8b44b602a8c | refs/heads/master | 2021-05-11T06:16:16.699868 | 2018-01-18T16:35:40 | 2018-01-18T16:35:40 | 117,983,216 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 389 | puml | @startuml
left to right direction
skinparam packageStyle rect
skinparam componentStyle uml2
actor Gast
actor Kunde
actor Admin
rectangle kunde {
Gast --> (registrieren)
Kunde --> (Kunde suchen)
Kunde --> (Kunde aendern)
Admin --> (Kunde suchen)
Admin --> (Kunde aendern)
Admin --> (Kunde loeschen)
}
footer (c) Juergen Zimmermann
@enduml
| false | true | false | false | usecase |
903d95564bce90c12a24a21dbfc659e769da848d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerEmailVerify.puml | 52e5866124e7bfb604804d833b97ae6da4d20ce9 | [] | 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 | 327 | 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 CustomerEmailVerify [[CustomerEmailVerify.svg]] {
version: Long
tokenValue: String
}
@enduml
| false | true | false | false | class |
acc17d33826c01184f9e7496be057b156408e243 | 61e790dd0adb319cc86cc2a12378af39d1b74dea | /use-cases/Organize_cities_report_use-case_diagrm.puml | d402e6fc230ffc04c85d9b42729985932a10aaae | [
"Apache-2.0"
] | permissive | Team-3-DevOps/coursework | 675abe53fa51fdaf9d17da3119b380f7e1677802 | c257d4b3262ba9ef61acee6ea84e44721830ba32 | refs/heads/master | 2022-07-04T09:33:46.037291 | 2020-02-08T04:10:01 | 2020-02-08T04:10:01 | 232,726,488 | 2 | 2 | Apache-2.0 | 2022-06-21T02:40:55 | 2020-01-09T05:03:27 | TSQL | UTF-8 | PlantUML | false | false | 690 | puml | @startuml
actor user as "The user"
rectangle Database
rectangle "Organize cities Report function" {
usecase world as "Choose world"
usecase continent as "Choose continent"
usecase region as "Choose region"
usecase country as "Choose country"
usecase district as "Choose district"
usecase cc as "Choose category"
usecase UC as "Get population of the cities
in the world, continent or region
by largest to smallest"
user -- UC
user -- cc
cc <.. world : include
cc <.. continent : include
cc <.. region : include
cc <.. country : include
cc <.. district : include
UC -- Database
cc -- Database
}
@enduml | false | true | false | false | usecase |
49ff114027ea33ed9b85e48434b4be40cae57c39 | 9cc7c4099f6330f9a4384b56427d40d46b9d6f4a | /diagrams/persistent-volume.puml | b53a19eed2b5738125c3629988c236b5bc22833e | [
"MIT"
] | permissive | maulvialf/belajar-kubernetes | 0e28a11d9f75b3b1d17ffbe86151ecedf3bb603e | 809ac5514e9c0c188a3775f53e0d340b0587c132 | refs/heads/master | 2022-10-22T09:32:07.830441 | 2020-06-13T17:43:51 | 2020-06-13T17:43:51 | 272,653,376 | 1 | 0 | MIT | 2020-06-16T08:32:21 | 2020-06-16T08:32:20 | null | UTF-8 | PlantUML | false | false | 440 | puml | @startuml
cloud "Cloud" {
file "Cloud Storage" as cloudstorage
}
node "Kubernetes Cluster" {
file "Persistent Storage 10GB" as persistent
node "Pod A" {
file "Claim 2GB" as file1
}
node "Pod B" {
file "Claim 2GB" as file2
}
node "Pod C" {
file "Claim 2GB" as file3
}
}
persistent -right-> cloudstorage
file1 --> persistent
file2 --> persistent
file3 --> persistent
@enduml
| false | true | false | false | deployment |
91861932a9356ad1d49a5e35ceca946ad7cd4019 | cfc4bcd62c496dbb3208cac60b1d3bfa1e85281e | /src/main/java/org/example/ex42/ex42PlantUML.puml | 96ff32d74e88cdc0c38395cd7e3b0ef8f5a69b3b | [] | no_license | Reese2as/Stowell-COP3330-Assignment3 | e9f31301a93a48fa2314b70a42a7725ba3f60800 | b02c035b508d62dca2d6f409bb4659d5c11ae220 | refs/heads/master | 2023-08-16T07:49:32.126031 | 2021-10-12T03:53:51 | 2021-10-12T03:53:51 | 416,173,249 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 183 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
main()
Parser()
}
class Records{
String First_Name;
String Last_Name;
int Salary;
}
App <|- Records
Records <|- App
@enduml | false | true | false | false | class |
ea81d4e2fc724aff774f12b471ceb04f9f80151c | 14beae327bd3212bb74339e387adf5a31624aa85 | /docs/partyDetailsService.puml | 95ed15c47d61c9e71a35c7aea731e5f48ebf0468 | [] | no_license | AbhishekJunnarkar/Spring-HATEOAS | 4dbb70d0f19acceea7dd4afd4aeced5a6112720f | b8cc3d6a467fff86f5c93c4022567e1ed463d72c | refs/heads/master | 2021-03-11T12:58:55.952843 | 2020-07-28T10:20:25 | 2020-07-28T10:20:25 | 246,531,132 | 0 | 0 | null | 2020-03-11T17:00:47 | 2020-03-11T09:40:46 | null | UTF-8 | PlantUML | false | false | 1,006 | puml | @startuml
actor "Client" as Client
participant "PartyDetailService" as PDS
database "Database" as DB
Client -> PDS: Authentication Request
activate PDS
PDS --> Client: Authentication Response
deactivate PDS
Client -> PDS: /POST create a new Party
activate PDS
PDS -> DB : Insert Party in Database
activate DB
DB -> PDS : Success with PartyID or Error
deactivate DB
PDS -> Client: Success or Error with PartyID
deactivate PDS
''.............................
Client -> PDS: /GET /PUT /DELETE a party with given PartyID
activate PDS
PDS -> DB : select/update/delete action on DB
activate DB
DB -> PDS : Success with PartyID or Error
deactivate DB
PDS -> Client: Success or Error
deactivate PDS
''............................
Client -> PDS: /POST Add a new address to Party \n
activate PDS
PDS -> DB : Insert Party in Database
activate DB
DB -> PDS : Success with PartyID or Error
deactivate DB
PDS -> Client: Success or Error with PartyID
deactivate PDS
''..............................
@enduml | false | true | false | false | sequence |
cf1e2c409f77c16dcf8d1646ba278f0dc9256597 | 711c9bb1ceea101e446f8d90b2f152ff897d0d0d | /Finalv2/PUMLs/Patrones/Factory Method Controlador.puml | c9a3b0da8497d8b983f55422e60901dcfd5aaf2e | [] | no_license | TomasAlvarez78/FinalDOO | 54c88e546be678ad339d9e1fa244b5b141c6da57 | 25fd15986ec8d6f890f687f2d9c3a79b54015504 | refs/heads/master | 2023-07-10T01:25:27.515158 | 2021-08-09T15:28:57 | 2021-08-09T15:28:57 | 377,674,622 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 779 | puml | package "Factory Method Controlador"{
abstract class ControladorFactoryMethod{
+ crearControlador(int id)
}
class ControladorFactory
}
'ControladorFactory
ControladorFactory -left-|> ControladorFactoryMethod
ControladorFactory .left.> ControladorActualizarFicha: <<instancia>>
ControladorFactory .left.> ControladorImplBuscarUsuario : <<instancia>>
ControladorFactory ..> ControladorImplHome : <<instancia>>
ControladorFactory ..> ControladorImplInformeDiario : <<instancia>>
ControladorFactory ..> ControladorImplInformeMensual : <<instancia>>
ControladorFactory ..>ControladorImplRegistrarCliente : <<instancia>>
ControladorFactory .right.> ControladorImplRegistrarEntregaBD : <<instancia>>
ControladorFactory .right.> ControladorImplRegistrarTurnoBD : <<instancia>> | false | true | false | false | class |
863acfdbdb960233224cd0dcc0dd3052e41269b9 | 1c7119cb7a6f9092ec5d3eb84261108d6569ba92 | /docs/read_scheduler.puml | 8d1aebab18b40654b64b460965e5d34fbc65cc52 | [] | no_license | broha22/HT_Sensor_API | 9c9dd07cc9844c0db76cc9430e844b5a6b599d2f | 1e016cda5aa3ac87c324c75fea23b627a6379d89 | refs/heads/master | 2020-12-15T19:37:48.632003 | 2020-05-13T22:37:54 | 2020-05-13T22:37:54 | 235,232,139 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 503 | puml | @startuml read_sched
skinparam dpi 300
box Initialization
participant "Start" as start
participant "Set up\n timer" as set_up
end box
box Timer Loop
participant "Wait" as wait
end box
box Timer Fired
participant "Read \nshared memory" as r_mem
participant "Read \nsensor config" as s_config
participant "Read \nsensor" as s_read
participant "Write \nshared memory" as w_mem
end box
start -> set_up
set_up -> wait
wait -> r_mem
r_mem -> s_config
s_config -> s_read
s_read -> w_mem
w_mem -> wait
@enduml | false | true | false | false | sequence |
4be94651e6fb0c8978113e8a565611aa6c14cce3 | 4444b237cb74fd0ebb0f7273c4317e50838279a6 | /docs/visitor_pattern_sequence_diagram.puml | 7c964f6cee3d5643fa562162f02723f67f15ca4a | [
"MIT"
] | permissive | will-r-wang/CMSLearn-Course-Management-System | bd3243927b293b324315ac38299a4046979d5559 | 016d7cfa6b65539aac51eb192e6acb8809608b58 | refs/heads/main | 2023-04-04T07:11:51.988562 | 2021-04-14T15:05:15 | 2021-04-14T15:05:15 | 340,215,527 | 1 | 2 | null | 2021-04-16T14:31:00 | 2021-02-19T00:33:05 | Ruby | UTF-8 | PlantUML | false | false | 771 | puml | @startuml
participant VisitableInterface
participant Submission
participant GradesVisitor
participant CommentsVisitor
participant Student
== Updating Submission ==
VisitableInterface->Submission:accept(AbstractVisitor: GradesVisitor)
Submission->GradesVisitor:visit(Visitable: Submission)
GradesVisitor->Submission:update_grade(grade: integer)
Submission->CommentsVisitor:visit(Visitable: Submission)
CommentsVisitor->Submission:update_comment(comment: string)
== Updating Student ==
VisitableInterface->Student:accept(AbstractVisitor: GradesVisitor)
Student->GradesVisitor:visit(Visitable: Student)
GradesVisitor->Student:update_grade(grade: integer)
Student->CommentsVisitor:visit(Visitable: Student)
CommentsVisitor->Student:update_comment(comment: string)
@enduml
| false | true | false | false | sequence |
d6cf62f27cbeae5c22e1f6c4a5b22cfdcbccc7d7 | 4830d642871bca9d89b03473d53ee32e8cd64121 | /use-cases/13/use-case-13.puml | 42387cc07a08b63752c0603195bc43a98c6ea87e | [
"Apache-2.0"
] | permissive | eoinkane/sem-coursework | ac12b74e2d7deca4a584c89a521a809b4f189ed6 | 634006895b639327b2dcd053d1de169e0f65a492 | refs/heads/master | 2023-04-17T10:53:39.026338 | 2021-04-30T08:28:10 | 2021-04-30T08:28:10 | 333,163,286 | 3 | 0 | null | 2021-02-06T13:27:57 | 2021-01-26T17:32:14 | null | UTF-8 | PlantUML | false | false | 352 | puml | @startuml
actor Member as "Member of the
organisation"
rectangle Database
rectangle "Population Information System" {
usecase UC13 as "Get the Top N Populated Capital Cities
in a Continent where N is Provided by the User."
usecase UCa as "Output the report."
Member - UC13
UC13 ..> UCa : include
UC13 - Database
}
@enduml
| false | true | false | false | usecase |
7197ca561b8452bf00262932899397db0318c780 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/Extension.puml | 40f721d1b9ea6db19d5b1b9005ee1ceebca3d1e8 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,038 | 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 Extension [[Extension.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
destination: [[ExtensionDestination.svg ExtensionDestination]]
triggers: [[ExtensionTrigger.svg List<ExtensionTrigger>]]
timeoutInMs: Integer
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface ExtensionPagedQueryResponse [[ExtensionPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Extension.svg List<Extension>]]
}
Extension --> ExtensionPagedQueryResponse #green;text:green : "results"
@enduml
| false | true | false | false | sequence |
18b42646c80ca3e6c6118233266b3961783d3e90 | d69d7773ee03eb466c7d3cd5260c7deff1746132 | /tip/hood/goog/storg/src/site/resources/uml/putObjectWorkflow.puml | 4d716ece26b5f9ca9e0667c3d3745f73b0b0d6e9 | [] | no_license | max8github/cloudio | ed9e854932031cf4d5b6c272f4150d9088328671 | 397ef65187393b1dd42fa840ac39ba78ee2b9268 | refs/heads/master | 2016-09-06T18:35:03.966945 | 2015-11-18T17:33:55 | 2015-11-18T17:33:55 | 26,938,300 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 821 | puml | @startuml
User --> DataServlet: PUT request\nof an object\n<b>without version info</b>
DataServlet -> Key: new Key(objectname, bucketName, Key.genVersionId())
Key -> DataServlet: objectId -- of type Key
DataServlet --> Sproxyd: putObject(objectId)
Sproxyd --> DataServlet: success/failure {assume success}
DataServlet --> MdsServlet: putObject(ID, bucket, objName)
MdsServlet --> Sproxyd: getHead(ID) {if not cached}
MdsServlet --> Sproxyd: getHead(WAL)
Sproxyd --> MdsServlet: return
Sproxyd --> MdsServlet: return
MdsServlet --> Sproxyd: getVersion(ID)
MdsServlet -> MdsServlet: generate version
MdsServlet --> Sproxyd: putObject()
MdsServlet --> Sproxyd: putObject(WAL)
Sproxyd --> MdsServlet: version
Sproxyd --> MdsServlet: WAL
MdsServlet --> DataServlet: success/failure
DataServlet --> User: md5 of object
@enduml
| false | true | false | false | sequence |
f06760440b667e02f2f2e4e4692d7f543c05f474 | db48033e0f34bc7a6b06bdf21c8b68f40e0c291f | /use-cases/UseCaseDiagram3.puml | d402496099e8287096de1364441d7505df60004a | [
"Apache-2.0"
] | permissive | Sebastian-Reid/Group-9 | 3d195273943200d62efd1bde3f3a6e80347bd529 | fb03c0d02364c44c5bdfe7aa02acef7f2a8c5939 | refs/heads/master | 2020-04-21T17:28:17.457995 | 2019-05-09T17:52:56 | 2019-05-09T17:52:56 | 169,735,200 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 310 | puml | @startuml
rectangle Organisation
actor ST as "Scrum Team"
rectangle Database
rectangle "Scrum System" {
usecase UC1 as "Get capital city info"
usecase UCa as "Report to Organisation"
Organisation - ST
ST - UC1
UC1 ..> UCa : supply
UC1 - Database
Organisation <- UCa
}
@enduml | false | true | false | false | usecase |
9da9dd21ee5246f00364bc973b05f37b1e18684a | a462d0dbf45e17238560a8871dd7b4de52be4596 | /docs/data_model.puml | f7d27857221b3b6854b4dc38638c13e7c72921b0 | [
"MIT"
] | permissive | ferraith/django-portfolio | 941ac9998b55475cd039a40dfc2df01805cfe349 | 496dc50e22889d5bc809b274c59bc9530250e298 | refs/heads/master | 2021-09-01T00:17:45.623498 | 2017-12-23T19:02:54 | 2017-12-23T19:04:29 | 114,684,432 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 423 | puml | @startuml
Portfolio "1" *-- "0..*" Investment : collects
Investment "1" *-- "1..*" Transaction : consists of
Investment "1" -- "1" Asset : spend on
Asset <|-- Stock
Asset <|-- Bond
Asset <|-- Fund
Transaction "1" -- "0..1" ExchangeRate : has
Transaction "1" -- "1" SharePrice : is executed at
Asset "1" *-- "0..*" SharePrice : has
Fund "1" o-- "0..*" Stock : invests in
Fund "1" o-- "0..*" Bond : invests in
@enduml
| false | true | false | false | class |
210cf2b442697ebd73ec58d31514f2c1292c9e62 | a88c11df2c1189b6e651d85cf3dc2388f9fcfc95 | /diagrams/class_aidcontroller.plantuml | 7013b5baf22e640999b56877f13252aff070de60 | [] | no_license | TomSievers/EVD_Proj | cf6fcb6bfb3cca23a45fb434f8f5097d5aa56f4b | 19abc059668d86b1c4c0d4e93bd8acb38223a36e | refs/heads/develop | 2023-02-20T12:32:11.254938 | 2021-01-21T08:16:31 | 2021-01-21T08:16:31 | 293,806,246 | 0 | 0 | null | 2021-01-21T08:16:32 | 2020-09-08T12:39:05 | C++ | UTF-8 | PlantUML | false | false | 3,537 | plantuml | @startuml
package Detector
{
interface IDetector
{
+ IDetector(cap : std::shared_ptr<Acquisition>)
+ //getObjects() : std::vector<std::shared_ptr<Object>>//
# processors : std::vector<std::shared_ptr<IImageProcessing>>
}
}
package Visualizer
{
interface IVisual
{
+ update(ball : const CueBall&, trajectories : const Trajectories&) : void
}
}
package TrajectoryCalculator {
interface ITrajectory{
# tableCorners : std::array<cv::Point,4>
# ballLocations : std::vector<<cv::Point>>
# cuePoints: std::array<cv::Point,2>
# ballRadius: uint16_t
# pocketRadius: uint16_t
+ //setTable(corners : std::array<cv::Point,4>&) : void//
+ //setBalls(balls : std::vector<cv::Point>&) : void//
+ //setCue(cue : std::array<cv::Point,2>&) : void//
+ //setPocketRadius(radius: uint16_t) : void//
+ //setBallRadius(radius: uint16_t) : void//
+ //getTrajectory() : std::vector<cv::Point>//
}
}
package UserInterface
{
enum Event
{
START
STOP
CALIBRATE
}
interface IUserInterface
{
# active : bool
# thread : std::thread
# callback : std::function<void(Event&)>
# update() : void
+ IUserInterface(func : std::function<void(Event&)>)
+ stop() : void
}
}
package AidController
{
class EventContainer <<struct>>
{
+ ui : Event
+ detect : DetectorEvent
}
class Controller
{
- detectors : std::map<DetectorType, IDetector>
- globalAcquisition : std::shared_ptr<Acquisition>
- UI : std::shared_ptr<IUserIntreface>
- trajectoryCalc : std::shared_ptr<ITrajectory>
- visualizer : std::shared_ptr<IVisual>
+ getDetector(detector : DetectorType) : std::shared_ptr<IDetector>
+ getTrajectoryCalculator() : std::shared_ptr<ITrajectory>
+ getVisualizer() : std::shared_ptr<IVisual>
}
interface IState
{
+ //onEntry(controller : Controller&)//
+ //onDo(controller : Controller&)//
+ //onExit(controller : Controller&)//
+ //handleEvent(event : EventContainer&)//
}
interface IActiveSubState
class Waiting
class Detecting
class Setup
class Active
class Inactive
class Calibrate
enum DetectorEvent
{
STEADY
MOVING
}
enum DetectorType
{
BOUNDARY
CUE
BALL
}
class Context
{
- events : std::queue<EventContainer>
- curState : std::shared_ptr<IState>
- history : std::shared_ptr<IState>
+ scheduleEvent(event : Event&) : void
+ scheduleEvent(event : DetectorEvent&) : void
+ run() : void
}
}
ITrajectory <- Controller
IVisual <-- Controller
IDetector <.. Controller
Controller ..> DetectorType
Controller -|> Context
Controller --> IUserInterface
'Context <|- Controller
Context --> IState
Context --> EventContainer
IState <|.. Setup
IState <|.. Active
IState <|.. Inactive
IState <|.. Calibrate
'Setup -[hidden]> Inactive
'Inactive -[hidden]> Calibrate
'Calibrate -[hidden]> Active
Active -> IActiveSubState
IState <|-- IActiveSubState
IActiveSubState <|.. Waiting
IActiveSubState <|.. Detecting
IUserInterface .> Event
EventContainer --> Event
EventContainer --> DetectorEvent
ITrajectory --> IUserInterface
DetectorType -[hidden]-> EventContainer
'Controller --> EventContainer
@enduml | false | true | false | false | sequence |
c549e5dd5c3716a4d640ceb5b1a4e94aa0acbd8a | a967a3605dbba3c30465b53d37586644b5160918 | /Q3/Q3 With Strategy.puml | 2dd00b0241dfda36bc4f63ad950a2dcf74508de2 | [] | no_license | AbhiniveshP/OOAD-Project-2 | 1009fdf37df18434c8ea086895643ed66097d890 | cb3c95b8edadc219d1b4137c19f87107ce60e519 | refs/heads/master | 2020-08-02T12:45:03.301537 | 2019-10-04T22:57:32 | 2019-10-04T22:57:32 | 211,357,239 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 289 | puml | @startuml Q3-With-Strategy
Zookeeper --> Animals : Wake Animals
Zookeeper --> Animals : Roll call Animals
Zookeeper --> Animals : Feed Animals
Zookeeper --> Animals : Let Animals roam
Animals --> Roamer : Call Roamer functionality
Zookeeper --> Animals : Put animals to bed
@enduml | false | true | false | false | sequence |
09f3a89c14ad5e19aa0b7e8d4e5021858e412924 | b97eb1712cbe8e6917603c1efb868407669692e5 | /docs/design/003-wallet-storage/wallet-components.puml | 65b1ff4c15fdfc4fc0bdaf09606138a134e9465f | [
"Apache-2.0"
] | permissive | evernym/indy-sdk | 3fefe08927cfe0cbd2efcd2e1f9b4e72bf3f53b2 | 714d449353518f929d9787d3156af785e2a42ccb | refs/heads/master | 2021-04-15T10:21:56.633058 | 2019-07-02T18:28:20 | 2019-07-02T18:28:20 | 126,876,532 | 5 | 19 | Apache-2.0 | 2023-02-22T23:46:03 | 2018-03-26T19:02:36 | Rust | UTF-8 | PlantUML | false | false | 1,637 | puml | @startuml wallet-components
[Application] as application
package "Indy SDK" {
() "Non-secrets API" as i_non_secrets_api
application ..> i_non_secrets_api
note right of i_non_secrets_api
An API that allows
to store application
specific data
in a secure way
end note
() "Secrets API" as i_secrets_api
application ..> i_secrets_api
note left of i_secrets_api
An API that allows
creation of secrets
and wallet-style access.
Existing API for creation
of DIDs, CredDefs,
MasterSecrets and etc...
end note
() "Wallet API" as i_wallet_api
application ..> i_wallet_api
note left of i_wallet_api
An API for wallets management
Will be extended to register
custom wallet storage
implementation
end note
[API Layer] as indy_api
i_secrets_api -- indy_api
i_wallet_api -- indy_api
i_non_secrets_api -- indy_api
() "Wallet Service Interface" as i_wallet_service
indy_api ..> i_wallet_service
note right of i_wallet_service
Generic key storage interface
with a support of filtering by
tags. Consumes unecrypted values
and queries.
end note
[Wallet Service] as wallet_service
i_wallet_service -- wallet_service
note right of wallet_service
All values and queries encryption
is performed here.
end note
() "Storage Interface" as i_storage_api
wallet_service ..> i_storage_api
[Default Storage] as default_storage
default_storage - wallet_service
}
[Enterprise Storage] as enterprise_storage
i_storage_api -- enterprise_storage
@enduml | false | true | false | false | class |
a227c4fbebcf5e8d2f7c17fefb1db74de0c2142b | 6be2472e8675c2e50515a1e486421370aaa3f054 | /src/diagrams/Backend Class Diagam.puml | b0f4a95ef4743b4b7d9e648de2958328b5c5cf53 | [] | no_license | SOFTWARE-ENGINEERING-GRUPPE-17/sayHelloToMyLilFriend | af3d6b590f28676654895ce5126710ff04619729 | a9ffbbd196f4de792423b59af4ae90158314c305 | refs/heads/master | 2023-01-23T09:15:37.544255 | 2020-11-25T23:49:31 | 2020-11-25T23:49:31 | 298,597,049 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,507 | puml | @startuml
/' ---------------- Modell klasser ------------ '/
interface IParkering{
int: PLASSER_TOTALT
int: antallLedigePlasser
int: id
String: bildeadresse
reserver(tilTidspunkt): void
reserver(fraTidspunkt, tilTidspunkt): void
reserver(antall, tilTidspunkt): void
reserver(antall, fraTidspunkt, tilTidspunkt): void
}
interface IKjoretoy{
String: registreringsnummer
}
class Kjoretoy{
String: registreringsnummer
}
class Parkeringsplass{
boolean: ledig
String: gatenavn
int: gatenummer
int: pris
String: bildeadresse
reserver(tilTidspunkt): void
reserver(fraTidspunkt, tilTidspunkt): void
}
class Parkeringshus{
int: PLASSER_TOTALT
int: antallLedigePlasser
reserverNoenPlasser(antall, tilTidspunkt): void
reserverNoenPlasser(antall, fraTidspunkt, tilTidspunkt): void
}
class Bruker{
String: navn
String: epost
int: telefonnummer
ArrayList<IKjoretoy>: kjoretoy
ArrayList<IParkeringsplass>: parkeringsplass
registrerKjoretoy(regnummer): void
fjernKjoretoy(kjoretoy): void
registrerParkeringsplass(gatenavn, gatenummer, antallPlasser): void
fjernParkeringsplass(id): void
}
/'--------------- DB -------------------'/
interface IRepository{
ArrayList<Bruker>: brukere
alleParkeringer(): ArrayList(IParkering)
alleKjoretoy(): ArrayList(IKjoretoy)
fjernKjoretoy(id): void
fjernParkeringsplass(id): void
registrerKjoretoy(registreringsnummer): void
registrerParkeringsplass(gatenavn, gatenummer, antallPlasser): void
}
class DBRepository{
String: ADDRESSE
alleParkeringer(): ArrayList(IParkering)
alleKjoretoy(): ArrayList(IKjoretoy)
fjernKjoretoy(id): void
fjernParkeringsplass(id): void
}
interface IServer{
getBilde(bildeadresse): File
addBilde(File Bilde): void
removeBilde(bildeadresse): void
}
class ServerController{
String: ServerAdresse
connectToServer(): void
getBilde(bildeadresse): File
addBilde(File Bilde): void
removeBilde(bildeadresse): void
}
/'------------- Systemet -----------------'/
class Program{
HashMap<brukernavn, Bruker>: brukere
IRepository: repository
}
/' ------------ Piler --------------------- '/
IKjoretoy <|.. Kjoretoy
IKjoretoy o-- Bruker
IServer o-- Bruker
ServerController <|-- IServer
IParkering <|.. Parkeringsplass
IParkering o-- Bruker
Parkeringsplass --> Parkeringshus
IRepository <|.. DBRepository
Program --> IRepository
Program --> Bruker
IRepository --> Bruker
@enduml | false | true | false | false | class |
e07f31c851c84a959ba72ffc948db74353870824 | a9155d1c3d69cc5aeb63f386947c20684f0dafb9 | /1.puml | 9b8f840930f7ec8a2ce4c199bfaade58bcfbad08 | [] | no_license | fwfurtado/spring-cloud-stream | e6852a9d3c08a7a36ecbc0f60aaf56093627a8f3 | 05853444546e4969dcdfbc7a62bdd37fab539724 | refs/heads/master | 2020-04-25T04:28:54.635977 | 2019-02-25T13:30:24 | 2019-02-25T13:30:24 | 172,511,476 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,314 | puml | @startuml
:Main Admin: as Admin
(Use the application) as (Use)
User -> (Start)
User --> (Use)
Admin ---> (Use)
note right of Admin : This is an example.
note right of (Use)
A note can also
be on several lines
end note
note "This note is connected\nto several objects." as N2
(Start) .. N2
N2 .. (Use)
@enduml
@startuml
component BLA {
component B
component C
() bla
bla2 ..# B
B - bla
C -> B
}
@enduml
@startuml
'allowmixing
rectangle Payment
rectangle Instrumentation
component "Online Bill Payment" as OBP {
Payment -right->> [Payment Processor]
Instrumentation <<-up- [Payment Processor]
[Payment Processor] #-up-# [Configuration]
[Logger] -left->> Logging
[Payment Processor] ..right.>> Logging
}
@enduml
@startuml
'left to right direction
actor Customer
actor "Payment Processing Service" as PaymentService
rectangle "Online Bill Pay" {
Customer - (Pay Bill)
(Pay Bill) - PaymentService
(Pay Bill) -- (Authenticate User) :include
(Pay Bill) -- (Schedule recurring payment) :extends
Customer - (Managed scheduled payment)
(Managed scheduled payment) <<- (Skip Scheduled Payment)
(Managed scheduled payment) <<-- (Terminate Scheduled Payment)
}
@enduml
@startuml
hide footbox
participant WebClient
participant AccountSvc
participant Account
participant Payee
participant Schedule
participant Processor
autonumber
activate WebClient
WebClient -> AccountSvc: SchedulePayment()
activate AccountSvc
AccountSvc -> Account: verify()
activate Account
AccountSvc <-- Account
deactivate Account
autonumber 3.5
opt ValidAccount
AccountSvc -> Payee: GetDetails()
activate Payee
Payee -> Payee: GetPayments()
AccountSvc <-- Payee
deactivate Payee
opt FirstPayment
AccountSvc -> Processor: SendZeroValueTestPayment()
activate Processor
AccountSvc <-- Processor
deactivate Processor
end
AccountSvc ->> Schedule: ScheduleFuturePayment()
activate Schedule
deactivate Schedule
end
autonumber 4
WebClient <-- AccountSvc
deactivate WebClient
@enduml | false | true | false | false | usecase |
b86d64c66e86ce97e1af749c39c77acdf5cfc8db | 41908e43aaab868095c35b34f5fa811f4b033f30 | /notation/src/_solution/StackInterface.puml | 6adc250610cee8c134fe08341730801aa66704ed | [] | no_license | TBCode523/CMSC-204-Projects | 94b62a541e87bcb64feb64524650c6b8b319a469 | 09370eb872d427a6984311adfe8d254ddea568b1 | refs/heads/master | 2023-01-07T21:06:02.316979 | 2020-11-09T23:53:23 | 2020-11-09T23:53:23 | 291,835,818 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 322 | puml | @startuml
Interface StackInterface{
isEmpty(): boolean
isFull(): boolean
pop() throws QueueUnderflowException: T
top() throws QueueUnderflowException: T
size(): int
push(T e) throws QueueOverflowException: boolean
toString(): String
toString(String delimiter): String
void fill(ArrayList<T> list)
}
@enduml | false | true | false | false | class |
00b497e7f35820202ade5ef8344e397802438cee | 0ba5630a6ac377820a19dfd81794c39d2063a098 | /src/main/diagram/Use Case.puml | b467eb3b7c7917726b0db6542d6f523635071232 | [] | no_license | ValeriyaChudnay/demo | 534bcbb136cf4652ae22822e1d84ecdbb6285006 | 0d150f9b9e7bd3775162ad9c3cad2e4ac1bd003e | refs/heads/master | 2023-05-11T07:35:43.027754 | 2021-05-24T16:55:55 | 2021-05-24T16:55:55 | 370,424,445 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 651 | puml | @startuml
'https://plantuml.com/use-case-diagram
left to right direction
:Expert Admin: as Admin
(Participate in Metods) as (Use)
Expert -> (Start)
Expert --> (Use)
Admin --> (Use)
Admin --> (Create Project)
Expert --> (Create Project)
Admin -->(End Project)
Expert --> (Create Account)
Expert --> (Review Public information)
User --> Expert
Admin --> (Add expert to project)
Admin --> (Review method results)
note right of Admin : Save all rule for particular project.
note right of (Use)
Go throw pipeline of
method Delfi or MAI
end note
note "Sign in" as N2
(Start) .. N2
N2 .. (Use)
note "Sign up" as N1
(User) .. N1
N1 .. (Expert)
@enduml | false | true | false | false | uml-unknown |
89b7585652a479959f3872cae97adcbbf78f9d63 | 03896f32adff8a72b2f52029a73501dbb429d95b | /Strategy Pattern/class.puml | 77a18c3e18c77ecc2454c91a5536be6dbe1664e2 | [] | no_license | akashsri99/Design-Pattern-Java- | ad9119b69e4bd8adc786c8d49b787acd59e8e758 | f63c0c5255638f8324633c8079175b66595b4512 | refs/heads/master | 2022-12-11T06:00:40.407250 | 2020-08-31T17:13:38 | 2020-08-31T17:13:38 | 287,583,841 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 370 | puml | @startuml
class Animal{
- name
- weight
- flyingType flies
---
+ tryToFly()
+ setFlyingAbility()
}
interface Fly{
---
+ fly(): String
}
class ItFly{
---
+ fly() : String
}
class ItCantFly{
+ fly() : String
}
class Dog{
}
class Cat{
}
Animal -> Fly
Animal --|> Dog
Animal --|> Cat
Fly --|> ItFly
Fly --|> ItCantFly
@enduml | false | true | false | false | class |
90662a0d9bf3840d8c0d042b04a7ce833a09b63c | 499df47d853bbb220484f6a67054c0d1a684f437 | /docs/sources/community/lids/scheduler-proposal-1-component-diagram.plantuml | d523c5ddef2a29dde55de8c204c33dcb42ebd664 | [
"Apache-2.0",
"AGPL-3.0-only"
] | permissive | wardbekker/loki | c23f686ef5c1d76cc377fb6719506024fa011350 | 38e58c71813fca9c393380282d8155bd94273558 | refs/heads/master | 2023-08-18T18:02:58.152007 | 2023-08-16T10:07:44 | 2023-08-16T10:07:44 | 207,800,201 | 0 | 0 | Apache-2.0 | 2019-09-11T11:52:49 | 2019-09-11T11:52:48 | null | UTF-8 | PlantUML | false | false | 619 | plantuml | skinparam componentStyle rectangle
package Frontend {
() RoundTripper as QF
}
package Scheduler {
() FrontendLoop as FL
component RequestQueue {
[User Queue] as U1
[User Queue] as U2
[User Queue] as U3
[User Queue] as U4
[Tenant Queue] as T1
[Tenant Queue] as T2
}
() QuerierLoop as Q1
() QuerierLoop as Q2
U1 ..>> T1
U2 ..>> T2
U3 ..>> T2
U4 ..>> T2
}
QF -->> FL
FL -->> U1
FL -->> U2
FL -->> U3
FL -->> U4
package Querier {
[Worker] as W1
[Worker] as W2
}
T1 -->> Q1
Q1 -->> W1
T2 -->> Q1
T2 -->> Q2
Q2 -->> W2
| false | true | false | false | class |
0fa32d6fd3c92d16fa0abc48b61cefec6ef26332 | 5037fa8d593da60bfc0ffabc20430d62ed78a1c1 | /docs/smart-contextual-assistance-use-cases.puml | aecbc3045a1d9f1a9d7741c1f9c5fa951c4a4502 | [
"Apache-2.0"
] | permissive | reTHINK-project/dev-smart-contextual-assistance-app | f7adea96beacaec7fc91302de6289e6ad318743b | adcdb86cc400da79dccabb2412fcdc8dd2325ad4 | refs/heads/develop | 2020-05-30T07:20:16.816636 | 2018-01-17T22:09:37 | 2018-01-17T22:09:37 | 56,498,153 | 0 | 0 | Apache-2.0 | 2018-01-08T11:02:43 | 2016-04-18T10:17:55 | CSS | UTF-8 | PlantUML | false | false | 248 | puml | @startuml
usecase (Smart Contextual Assistance) as assistUC
usecase (Smart Contextual Business Assistance) as bizzAssistUC
usecase (Smart Contextual Personal Assistance) as myAssistUC
assistUC <|-- bizzAssistUC
assistUC <|-- myAssistUC
@enduml
| false | true | false | false | usecase |
3a13a71e51a01e51f89531c23e8d2d8fab366cd9 | b833e8786dedc777dbab369168cb48a387963d37 | /Assignment/milestone2/erd.puml | acce543d62db1b54ad2927b77edf7c1a7cf54f1c | [] | no_license | Keiran-Patel/INFO201 | 84c8dd8032ffc6bc3ca57c16721a5d49186dc031 | f0b65b9071c165f1859032017c54095c4312939e | refs/heads/main | 2023-05-03T09:27:45.293122 | 2021-05-17T08:37:28 | 2021-05-17T08:37:28 | 368,111,866 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,263 | puml | @startuml
skinparam Style StrictUML
skinparam LineType ortho
skinparam monochrome true
class Customer {
* customer_ID
--
* ShippingAddress
* music Preference
* Favourite artist
* order history
}
class Order_Header {
* OrderID
--
* OrderDate
* Status
* Comments
}
class Person {
* PersonID
--
* FirstName
* Surname
* MobileNumber
}
class Payment{
* Payment_ID
--
* Date: Date
* Amount
}
class Payment_type{
* Payment_type_ID
--
* payment_Option
}
class Staff{
* Staff_ID
--
* Favourite_Record
* ShippingAddress
* music Preference
* Favourite artist
* order history
}
class Account{
* AccountID
--
* Username
* Password
}
class Order_Line{
--
* Quantity
* price paid
* Gift_Wrap
}
class Product{
* Product_ID
--
*Description
*Unit cost
*quanitity on hand
*Date purchased
*Supplier
}
class Product_Catagory{
* Productcatagory_ID
--
*Description
}
Order_Header ||..|{ Order_Line
Order_Line }o..|| Product
Product }|..|| Product_Catagory
Staff --|> Person
Customer--|>Person
Account||..|| Staff
Account||..|| Customer
Order_Header }o..|| Customer
Payment||..o{Payment_type
Account||..o{ Payment
@enduml | false | true | false | false | class |
275a656d6ddf02e1ee036d690cca490430037042 | 0f616f701c080269d4697f324c56dfa8999c665e | /.idea/modules/app/app.plantuml | ef22a8c5d20cdde66c6b3c0426f8d91359e39f98 | [] | no_license | UjeenSorogovets/ZoomPlus | 86df4da290733f6fd19f8c71b6d5146470bd1d17 | 311fc7999e17b7770725ab29b66689fd86da1998 | refs/heads/main | 2023-05-31T17:47:51.400966 | 2021-06-15T11:54:34 | 2021-06-15T11:54:34 | 367,098,164 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 346 | plantuml | @startuml
title __ZOOMPLUS.APP's Class Diagram__\n
namespace com.example.zoomplus {
class com.example.zoomplus.BuildConfig {
}
}
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 |
8a553741420ffedafc2af8e2158b9ba6a13ff765 | 0bad5075fffde9f8114344c69e5007d64ed215c6 | /docs/source/pic/src/cred-load.puml | 648aa45db1af8288e83a1e1925c0d9e131e6de7e | [
"Apache-2.0"
] | permissive | PSPC-SPAC-buyandsell/von_anchor | 7ff8964c57b5b016c15284d44ff07919976a3cef | 9d3f96451c1c7a2fee8c0141fc5f32f3596791d0 | refs/heads/master | 2021-08-08T11:16:10.929511 | 2020-04-03T12:48:35 | 2020-04-03T12:48:35 | 140,607,696 | 5 | 15 | Apache-2.0 | 2020-02-10T16:49:28 | 2018-07-11T17:23:09 | Python | UTF-8 | PlantUML | false | false | 2,885 | puml | @startuml
/'
Copyright 2017-2020 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'/
skinparam ParticipantPadding 20
skinparam BoxPadding 20
title Credential Load Sequence
box "Indy" #LightBlue
participant "Ledger" as ledger
endbox
actor "Holder-Prover\n(The Org Book)\nVON Anchor" as oban
actor "Issuer\n(BC Registrar)\nVON Anchor" as bcran
actor "Actuator" as ator
=== CREDENTIAL LOAD SEQUENCE ==
note over ledger, ator
All VON anchor service wrapper APIs are up
Schema, cred defs, rev reg defs are on ledger
endnote
ator -> bcran: call create_cred_offer(schema_seq_no)
group create_cred_offer() implements
bcran -> ledger: get cred def
ledger --> bcran: cred def
bcran -> bcran: create and store cred offer
bcran --> ator: cred_offer
end
ator -> oban: call create_cred_req(cred_offer, cred_def)
group create_cred_req() implements
oban -> oban: create cred req and metadata
bcran --> ator: cred_req, metadata
end
loop for each cred
ator -> bcran: call create_cred(cred_offer, cred_req, attrs)
group create_cred() implements
bcran -> bcran: create cred
alt cred def creation indicates rev reg full
bcran -> bcran: set next rev reg, tails file;\nstart asynchronous\npre-computation of next
bcran -> ledger: send rev reg def
ledger --> bcran: rev reg id
bcran -> ledger: send initial rev reg state
ledger --> bcran: OK
bcran -> bcran: call create_cred() recursively
end
bcran --> ator: cred, cred revocation identifier
end
ator -> oban: call store_cred(cred, metadata)
group store_cred() implements
alt tails file present or revocation not supported
oban -> oban: store cred
oban --> ator: cred id in wallet
else missing required tails file
oban -[#blue]-> ator: absent tails file
end
ator -[#blue]> ator: get rev reg id from cred
ator -[#blue]> bcran: get tails file by rev reg id
bcran -[#blue]-> ator: tails file
end
ator -[#blue]> oban: upload tails file
oban -[#blue]> oban: call Tails.dir() to find dir for tails file and write it
oban -[#blue]-> ator: return
end
@enduml
| false | true | false | false | usecase |
0c3d47595630b267c1b28b9f2d0b1a7d3b79f92c | f2424bd274351348236d1b77837bcd995a1a1268 | /markdown/scriptgraphs/puml-class.puml | aa5af4c81932c4e1cbcac0cf163d3e0800621df2 | [] | no_license | dadabobo/docs | cf1fdd89645d0b1889b97d8a9d6712205363a8d9 | c177cdbd76792ad2e622104ed0392d2381884043 | refs/heads/master | 2020-03-30T18:28:38.521185 | 2018-03-13T09:35:41 | 2018-03-13T09:35:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 507 | puml | @startuml
title Class
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
class MyApp {
name
date
run()
startup()
}
class Product {
}
class House {
}
Product <|-- House
Product <|-- Park
Product <|-- Area
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 |
023e28d6756026fb85dd79e2664ba8636936baee | 235c76e8bf8d19fb60769ae932f4f2477c4f789a | /docs/Monad Classes.puml | bbe67bb5d1aca590df30bd8e3d083e445ad442d0 | [
"GPL-3.0-only",
"BSD-3-Clause"
] | permissive | Syadem/Monad | 061e596b6d49591999eb5aad6bc660e825a9b7d7 | f3bb92de40e0e299f9f946b8ee74c70d541a733d | refs/heads/master | 2020-03-23T05:23:16.380182 | 2018-07-16T13:47:30 | 2018-07-16T13:47:30 | 141,140,797 | 0 | 0 | BSD-3-Clause | 2018-07-16T13:14:37 | 2018-07-16T13:14:36 | null | UTF-8 | PlantUML | false | false | 2,008 | puml | @startuml
title Monad classes
interface Monadic {
value():mixed
flatten():mixed
bind(Closure:function, array:args = []):monadic
{static} create(mixed:value):monadic
}
abstract class Monad {
#mixed:value
__invoke():mixed
}
class Identity {
__construct(mixed:value)
}
abstract class Option {
{static} create(mixed:value, mixed:noneValue=null):Some|None
getOrElse(mixed:elseValue):mixed
}
class None {
__construct(mixed:value = null)
value():RuntimeException
bind(Closure:function, array:args = []):None
{static} create(mixed:value):None
}
class Some {
__construct(mixed:value)
bind(Closure:function, array:args = [], mixed:noneValue=null):Some|None
}
class Match {
#mixed:value
#bool:isMatched
__construct(mixed:value, bool:isMatched)
{static} on(mixed:value):Match
__call(string:method, array:args=[]):Match
any(Closure:function = null, array:$args = []):Match
}
abstract class FTry {
{static} with(mixed:value):Success|Failure
getOrElse(mixed:elseValue):mixed
{abstract} isSuccess():bool
}
class Success {
__construct(mixed:value)
bind(Closure:function, array:args = []):Success|Failure
isSuccess():bool(true)
}
class Failure {
__construct(Exception:value)
create(mixed:value = null):Failure
bind(Closure:function, array:args = []):Failure
pass():!!Exception
isSuccess():bool(false)
}
class Collection <<ArrayAccess, IteratorAggregate, Countable>> {
__construct(array:value = [], string:type = null)
diff(Collection:other, Closure:function = null):Collection
intersect(Collection:other, Closure:function = null):Collection
vUnion(Collection:other):Collection
kUnion(Collection:other):Collection
head():Collection
tail():Collection
each():Collection
}
Monadic <-- Monad
Monadic <-- Match
Monadic <-- Collection
Monad <-- Identity
Monad <-- Option
Option <-- None
Option <-- Some
Monad <-- FTry
FTry <-- Success
FTry <-- Failure
@enduml | false | true | false | false | class |
ebd7a957381a2d2345af6e1c1df46b57f5a1ccff | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/AntiqueWhite.puml | 6cc60ad954792ab48d01147d7e368680d24824ce | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 325 | puml | @startuml
skinparam ClassBackgroundColor #AntiqueWhite
skinparam ClassFontColor #AntiqueWhite
skinparam ClassBorderColor #AntiqueWhite
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
314a6a7e41d3890f76efc06510bb1a351bbb0800 | dd3daa8aef55201585aad5cdd02b2f8f68418d80 | /uml/AddTaskController.puml | 0ed951b280287ce18a7c0990a1da2d63358f40c5 | [] | no_license | rodriguezA3/Rodriguez-cop3330-assignment4 | a5e42305365dd594f7e625b450dd7125f2b6cd38 | 6f4fddae7131559012bb04c3ba9ffd2be11056eb | refs/heads/master | 2023-08-27T03:54:40.163580 | 2021-11-02T03:49:41 | 2021-11-02T03:49:41 | 423,698,699 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | puml | @startuml
class AddTaskController{
+FXML Button addTaskButton
+addTaskHandler()
}
class LocalList{
+String listName
+String listDescription
+ListView()
}
class LocalTask{
+String taskName
+datePicker dueDate
+String taskDescription
+TaskView()
}
LocalTask <|-- AddTaskController
AddTaskController <|-- LocalList
@enduml | false | true | false | false | class |
182733a70ce80771d8b8cedd7cd7e98bf8b36bc3 | 53d37a7bd90214260b1ecb38b2f844ba35e3cf02 | /enciso-app1-imp1/docs/App1Plant.puml | a20c1a079673d8b58959bdd767186e9f8ef79086 | [] | no_license | cristiamenciso/enciso-app10-imp1 | 18e318977f99d7e5d7ae5d39b1f197483cd4d585 | e5a8026238953f437392c40cc38277936f42d741 | refs/heads/main | 2023-08-30T11:32:02.058550 | 2021-11-08T02:51:19 | 2021-11-08T02:51:19 | 423,570,263 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 909 | puml | @startuml
'https://plantuml.com/class-diagram
class ToDoListApplication {
main()
start()
}
class ListController {
-TableView table
-TableColumn listName
-TableColumn date
-TableColumn status
-TextField nameField
-removeListButtonClicked()
-removeList()
-addItemButtonClicked()
-addItem()
-saveButtonClicked()
-saveList()
-loadButtonClicked()
-loadList()
-removeItemButtonClicked()
-removeItem()
-filterStatusButton()
}
class ListItem {
-SimpleStringProperty itemName
-SimpleStringProperty date
-SimpleStringProperty status
+ListItem()
+getItem()
+setItem()
+getDate()
+setDate()
+getStatus()
+setStatus()
}
javafx.Application <|-- ToDoListApplication
ToDoListApplication - ListController
javafx.Initializable <---- listController
@enduml | false | true | false | false | class |
ee1722ad186d4b73854523652d0a3e38176c8b6a | 974aa9a60b0daf16087ca37ed00080111110cb44 | /eng/mdl/uml/bdr/api.puml | 819dd0a05c84ee290cd0dcc2d6ce8b73d75ceb5d | [
"MIT"
] | permissive | bondden/esf-bdr | 9f05da68572c7a23292cdc8b359a7605bfb6a4d6 | 75ac17c2b3e0bc04dc54d6fe645f8823ded7f260 | refs/heads/master | 2016-08-11T20:09:43.504476 | 2016-01-24T12:11:27 | 2016-01-24T12:11:27 | 48,615,241 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,585 | puml | @startuml
!define CLR_BG #3C3F41
skinparam {
shadowing false
BackgroundColor CLR_BG
default {
Border {
Color Grey
Thickness 1
}
Font {
Color DarkGrey
Name "Ubuntu Mono"
Size 8
}
Stereotype {
Border {
Color CLR_BG
Thickness 1
}
}
}
title {
Font {
Size 30
}
}
legend {
BackgroundColor CLR_BG
Border {
Color CLR_BG
}
Font {
Color #a0a0a0
Size 10
}
}
header {
Font {
Color DarkGrey
Size 7
}
}
footer {
Font {
Color DarkGrey
}
}
note {
BackgroundColor CLR_BG
Border {
Color Grey
}
Font {
Color LightGrey
Size 10
}
}
class {
Background {
Color CLR_BG
}
Border {
Color Grey
Thickness 1
}
Arrow {
Color Grey
Font {
Color #bbbbbb
Size 12
}
}
Font {
Size 12
Color LightGrey
}
Stereotype {
Font {
Color Grey
}
}
}
CircledCharacter {
Border {
Color CLR_BG
Thickness 1
}
Radius 5
Font {
Size 7
Color CLR_BG
}
}
Stereotype {
Border {
Color CLR_BG
Thickness 1
}
C {
Border {
Color CLR_BG
Thickness 1
}
Background {
'Color DimGrey
}
}
}
}
class Bdr {
}
@enduml
| false | true | false | false | class |
50db5e22e77e8864dc4c995f2da3f4e975efa718 | aae1f65a5158a43ff1685b1a06d9eff12b049e4b | /src/main/java/ex42/exercise42_diagram.puml | ae34582ae15fb0c1f15ba7b44830b00a7c853270 | [] | no_license | alex-williams-git/williams-cop3330-assignment3 | f86dbf5defbafe8ceb820c1b38093dba131ed15a | eb1012dc8f3dc3cf2df0c449be82fc0edc2f5028 | refs/heads/master | 2023-08-17T20:06:11.233264 | 2021-10-12T00:07:11 | 2021-10-12T00:07:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 731 | puml | @startuml
'https://plantuml.com/class-diagram
class main{
String inputFile
ArrayList<Employee> employeeList
readFile(employeeList, inputFile)
String outputFile
writeFile(employeeList, outputFile)
}
class readFile{
String splitter
BufferedReader reader
while((line=reader.readLine()) != null)
return employeeList
}
class writeFile{
int length
BufferedWriter writer
for(int i = 0; i < length; i++)
}
class Employee{
private String first
private String last
private int salary
public void setFirst()
public void setLast()
public void setSalary()
public String getFirst()
public String getLast()
public int getSalary()
}
writeFile *-- main
readFile *-- main
Employee *-- main
Employee *-- readFile
Employee *-- writeFile
@enduml | false | true | false | false | activity |
8422f98a7e3b7210ab14a7b9ba5a4bb09f5d28b3 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/main/java/org/concordion/internal/parser/support/support.plantuml | df65c7a50ae78f340b46f9972977cc8081efa4e6 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,025 | plantuml | @startuml
title __SUPPORT's Class Diagram__\n
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.parser.support {
class Attribute {
+ name : String
+ value : String
+ Attribute()
+ toString()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.parser.support {
class ConciseExpressionParser {
{static} - COMMAND_VALUE_PATTERN : Pattern
- sourcePrefix : String
- targetPrefix : String
- namespaces : Map<String, String>
+ ConciseExpressionParser()
+ ConciseExpressionParser()
+ parse()
+ parse()
- createStatementFromNamespacePrefix()
- parseStatement()
+ parseCommandValueAndAttributes()
+ parseCommandValueAndAttributes()
+ isExecuteCommand()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.parser.support {
class ConcordionStatement {
+ command : Attribute
+ text : String
+ attributes : List<Attribute>
+ ConcordionStatement()
+ withAttribute()
+ withText()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.parser.support {
class ConcordionSyntaxException {
{static} - serialVersionUID : long
+ ConcordionSyntaxException()
+ ConcordionSyntaxException()
+ ConcordionSyntaxException()
+ ConcordionSyntaxException()
}
}
}
}
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 |
d838565a155383a36a86facf86ca7305036c7835 | 92981f12b747e5cd36581eae84d6701b5dd9be9b | /doc/uml/tenta140505/upg5.puml | 4852626ef6a9448e75cf11a63bc5576eb3c03699 | [] | no_license | sebhero/SkolaMah | 6dd30854db8625488e0c8be44d6af0d4afa9bd60 | c373edd811f1ef3e846f8b8d9b9ebdd575523f7c | refs/heads/master | 2021-01-14T09:46:35.990594 | 2016-04-23T11:29:04 | 2016-04-23T11:29:04 | 43,706,976 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,005 | puml | @startuml
kortinnehavaren -> Uttagsautomat:läsInKortNr()
kortinnehavaren -> Uttagsautomat:läsInPINnr()
kortinnehavaren ->Uttagsautomat:läsInBellop()
Uttagsautomat ->Bank:verifieraKort()
loop För varje BankKort i kort
Bank -> Bankkort:hämtaKortNr()
Bank -> Bankkort:hämtaPin()
alt ifall det är korrekt PIN
Bank->Bankkort:hämtaKonto
create Konto
Bankkort->Konto:<<get>>
Konto -->Bankkort
Bankkort --> Bank
Bank -> Konto:registeraUttag()
Konto --> Bank
alt Om Konto:registeraUttag är true
Bank -> Uttagsautomat:visaBekräftelseAvUttag()
else Om Konto:registeraUttag är false
Bank -> Uttagsautomat:visaFelmeddelande()
end
else ifall det felaktig PIN
Bankkort --> Bank
Bank -> Uttagsautomat:visaFelmeddelande()
end
end
@enduml
Uttagsautomat
Bank
Konto
Bankkort
Uttagsautomaten läser in PIN-kod från
kortinnehavaren
läser av kortnumret från plastkortet | false | true | true | false | sequence |
66e2ee52945dd68feeb4a0e3a106dec92308023b | a9ecd31998bc649276149908354065de88eb78cd | /plantuml/capacitor_MAE.puml | 8d1b1e64d1020b867e96648a830de077c1ee3ed2 | [] | no_license | Pyponou/defibrillator | 55e5e8c6405d60da1adcad14a8fee2ae9574d7b6 | da212d5ab603f6508829321a139e9832665afe1b | refs/heads/master | 2020-04-10T16:50:14.985769 | 2019-01-06T22:18:17 | 2019-01-06T22:18:17 | 161,156,977 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 229 | puml | @startuml
hide empty description
[*] --> Idle
Idle --> Charging : startCharge
Charging --> Charged : after(3s) / send(capacitor_rdy);
Charging --> Idle : abort
Charged --> Idle : abort
Charged --> Charging : deliverShock
@enduml
| false | true | false | false | sequence |
265a355a8e189f3bd154242f08c451f338508fba | c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac | /docs/uml-class-diagrams/middleware02/test/MiddlewareCommDatabaseInterfaceStub/MiddlewareCommDatabaseInterfaceStub.puml | a79d00f74ee8f2975834551fbfc02c9acf931393 | [] | no_license | Slackjaw1431/csi-3370-software-project | 79666760712ee4625bea3daea48c7072e7826465 | af44ad1066695e4f9eff74eda79cebef3ad2b1af | refs/heads/main | 2023-03-23T23:03:17.404846 | 2021-03-17T18:52:02 | 2021-03-17T18:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 680 | puml | @startuml MiddlewareCommDatabaseInterfaceStub
package edu.oakland.test.middleware02 {
class MiddlewareCommDatabaseInterfaceStub {
- int rfid
- String mod
- LocationDataPoint[] points
- TrackData trackData
__
+ MiddlewareCommDatabaseInterfaceStub(int rfid)
+ MiddlewareCommDatabaseInterfaceStubq(int rfid, String mode, LocationDataPoint[] points, TrackData trackData)
.. Use Case 1 ..
+ int checkCurrentRfid()
+ String requestMode()
+ TrackData getTrackData()
+ void storeTrackData(TrackData trackData)
+ LocationDataPoint getLocationDataPoint(int offset)
}
}
@enduml | false | true | false | false | class |
1f782a003b336ec7a8951dc41b98fbaa7501318c | a8edb85e8e0bb9ab7cc9223e276e3bec1daac9d9 | /rxclient/src/main/docs/flowchart.puml | 4e271fc1db8ca0ac1f0f587016288538b3fc17fe | [] | no_license | callistaenterprise/cadec-2017-rxjava | c776af77c44b1233d337d68bb77e22ed46f33f47 | 462ba10d76d0f2b932413be00d5f0a79c79a3840 | refs/heads/master | 2020-07-05T07:41:11.249018 | 2017-03-22T07:41:09 | 2017-03-22T07:41:09 | 74,122,821 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 334 | puml | @startuml
user --> rxclient: orderBook(isbn, pnr)
rxclient -->> BooksApi: isbnLookup(title, author)
rxclient -->> SPARApi: addressLookup
rxclient -->> GeocodingApi: getCoordinates
rxclient -->> DroneSimulator: orderBook(coordinates, book)
rxclient --> DroneSimulator: getDroneStream(droneId)
rxclient --> user: showDroneStream
@enduml | false | true | false | false | sequence |
e595901b53fde0e01b7b09e41c2e4efaf2bb4f07 | 86a3a7f68a26bf947a96c34a6b008dc98e48c575 | /lapr2-2020-g041/docs/UC7/UC7_SD_ReadFile.puml | e84c6138fb81705c71331ca312595977d25fcacb | [
"MIT"
] | permissive | GJordao12/ISEP-LAPR2 | 7f01f7fe4036f17a4a76f0595e80564c2dda7b3c | 0c537d1cf57f627f98e42b6f1b7e100f49ff2d15 | refs/heads/master | 2023-08-17T10:59:19.469307 | 2021-10-02T16:27:19 | 2021-10-02T16:27:19 | 272,283,723 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,698 | puml | @startuml
autonumber
'hide footbox
participant ":LoadFrom(Txt/Csv)" as CTRL
participant "AplicacaoPOT" as _APP
participant "app\n:AplicacaoPOT" as APP
participant "session\n:UserSession" as SESSAO
participant ":Platform" as PLAT
participant "rorgs:OrganizationsRegister" as RORGS
participant "org\n:Organization" as ORG
participant "tl\n:TasksList" as LTASKS
participant "rfr\n:FreelancersRegister" as FREG
participant "free\n: Freelancer" as FREE
participant "local: Location" as LOC
participant "task\n:Task" as TASK
participant "payl\n:PaymentTransactionList" as PL
participant "pay\n:PaymentTransaction" as PT
[o-> CTRL : readFile(file)
activate CTRL
CTRL -> _APP: app = getInstance()
activate _APP
deactivate _APP
CTRL -> APP: session = getCurrentSession()
activate APP
deactivate APP
CTRL -> SESSAO: email = getUserEmail()
activate SESSAO
deactivate SESSAO
CTRL -> PLAT: rorgs = getOrganizationsRegister()
activate PLAT
deactivate PLAT
CTRL -> RORGS: org = getOrganizationByUserEmail(email)
activate RORGS
deactivate RORGS
CTRL -> ORG: tl = getTasksList()
activate ORG
deactivate ORG
CTRL -> PLAT: rfr = getFreelancersRegister()
activate PLAT
deactivate PLAT
CTRL -> ORG: payl = getPaymentTransactionList()
activate ORG
deactivate ORG
CTRL -> LOC: freeLocation= Location(Address,Country)
activate LOC
deactivate LOC
CTRL -> FREE: free= Freelancer(id, name, email, NIF, IBAN, level, freeLocation)
activate FREE
deactivate FREE
CTRL -> TASK: task= Task(taskID,taskDesc,taskDuration,taskCost,taskCategory)
activate TASK
deactivate TASK
CTRL -> LTASKS: taskValidation = contains(task)
activate LTASKS
deactivate LTASKS
OPT [ taskValidation == false]
CTRL -> LTASKS: addTask(task)
activate LTASKS
deactivate LTASKS
end
CTRL -> FREG: freelancerValidation = contains(free)
activate FREG
deactivate FREG
OPT [ freelancerValidation == false]
CTRL -> FREG: addFreelancer(free)
activate FREG
deactivate FREG
CTRL -> PT: pay= PaymentTransaction(transID,free,task)
activate PT
deactivate PT
CTRL -> PL: paymentValidation= contains(pay)
activate PL
deactivate PL
OPT [ paymentValidation == false]
CTRL -> PL: addPaymentTransaction(pay)
activate PL
deactivate PL
CTRL -> FREE: setPayment(pay)
activate FREE
deactivate FREE
end
end
OPT [ freelancerValidation == true]
CTRL -> FREG: freelancer = getFreelancerById(free.getID())
activate FREG
deactivate FREG
CTRL -> PT: pay= PaymentTransaction(transID,freelancer,task)
activate PT
deactivate PT
CTRL -> PL: paymentValidation= contains(pay)
activate PL
deactivate PL
OPT [ paymentValidation == false]
CTRL -> PL: addPaymentTransaction(pay)
activate PL
deactivate PL
CTRL -> FREE: setPayment(pay)
activate FREE
deactivate FREE
end
end
@enduml
| false | true | false | false | sequence |
57b977137b5c14673c6608c542c2a543b4a8ff35 | 7cab75a68e30731aee292f8b6a2467454ffc4057 | /design/schema/idk_csvs.puml | beb724aa72572a7e2ec5ddc31b0a8953ed02af80 | [] | no_license | BICCN/BCDC-Metadata | 61a82970309278086b8a5486256fd58d71c24090 | 3f78b4dd82db5bf41fb66ff422d48490aa115792 | refs/heads/master | 2023-06-25T18:02:40.378118 | 2023-06-09T20:42:32 | 2023-06-09T20:42:32 | 220,517,655 | 6 | 6 | null | 2023-09-09T00:24:41 | 2019-11-08T17:36:38 | null | UTF-8 | PlantUML | false | false | 4,683 | puml | @startuml
hide empty members
hide circle
class contact_person_realized_in_data_collection_project {
project_reference_id
person_reference_id
email_address
priority_order
}
class data_collection {
data_collection_reference_id
data_collection_title
data_collection_short_title
data_collection_description
categorical_access_control_state
categorical_completion_state
last_updated_at_date
}
class data_collection_is_specified_output_of_data_collection_project {
project_reference_id
data_collection_reference_id
priority_order
}
class data_collection_modality_classification {
data_collection_reference_id
modality_name
}
class data_collection_project_is_part_of_sub_program {
project_reference_id
sub_program_reference_id
priority_order
}
class data_collection_project_is_related_to_data_collection_project {
project_reference_id
related_project_reference_id
priority_order
}
class data_collection_project_modality_classification {
project_reference_id
modality_name
}
class data_collection_project_species_classification {
project_reference_id
species_name
}
class data_collection_project_specimen_type_classification {
project_reference_id
specimen_type_name
}
class data_collection_project_technique_classification {
project_reference_id
technique_name
}
class data_collection_reported_specimen_count {
data_collection_reference_id
specimen_type_name
reported_count
}
class data_collection_species_classification {
data_collection_reference_id
species_name
}
class data_collection_specimen_type_classification {
data_collection_reference_id
specimen_type_name
}
class data_collection_technique_classification {
data_collection_reference_id
technique_name
}
class data_contributor_realized_in_data_collection_project {
project_reference_id
person_reference_id
organization_reference_id
agent_type
priority_order
}
class data_creator_realized_in_data_collection_project {
project_reference_id
person_reference_id
organization_reference_id
agent_type
priority_order
}
class data_publication_year_is_about_data_collection_project {
project_reference_id
data_publication_year
}
class data_publisher_realized_in_data_collection_project {
project_reference_id
organization_reference_id
}
class grant {
grant_reference_id
grant_title
grant_identifier
funding_agency_reference_id
awardee_reference_id
report_symbol
}
class grant_is_specified_input_of_data_collection_project {
project_reference_id
grant_reference_id
priority_order
}
class highlighted_web_resource_is_about_data_collection_project {
project_reference_id
web_resource_reference_id
priority_order
}
class license {
license_reference_id
license_title
license_short_title
information_web_resource_reference_id
}
class license_is_about_data_collection_project {
project_reference_id
license_reference_id
priority_order
}
class modality {
modality_name
}
class organization {
organization_reference_id
organization_name
ror_symbol
}
class person {
person_reference_id
person_name
person_given_name
person_family_name
orcid_symbol
}
class project {
project_reference_id
project_title
project_short_title
project_description
project_type
doi_symbol
project_citation
information_web_resource_reference_id
}
class protocol {
protocol_reference_id
protocol_title
protocol_short_title
view_web_resource_reference_id
}
class protocol_is_about_data_collection_project {
project_reference_id
protocol_reference_id
priority_order
}
class publication {
publication_reference_id
publication_title
publication_year
first_author_reference_id
doi_symbol
pubmed_id
}
class publication_is_about_data_collection {
data_collection_reference_id
publication_reference_id
priority_order
}
class publication_is_about_data_collection_project {
project_reference_id
publication_reference_id
priority_order
}
class species {
species_name
}
class specimen_type {
specimen_type_name
}
class sub_program_is_part_of_program {
sub_program_reference_id
program_reference_id
}
class technique {
technique_name
}
class web_resource {
web_resource_reference_id
web_resource_type
web_resource_title
web_resource_short_title
universal_resource_locator
}
class web_resource_is_about_data_collection {
data_collection_reference_id
web_resource_reference_id
priority_order
}
@enduml | false | true | false | false | class |
df00c0105e89fa2fd90a146a740aa0fab4c501bb | be25988f97a06377c2cd37ba2cf6c1a378fa02e1 | /docs/threat_models/pegasus/pegasus_component.puml | c14052c926f63d99285510d82b77d6c639cb77e6 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | Agoric/agoric-sdk | bea28b730ecb59433b1b963571f2a809ce4ae5c1 | 0cc126ec803bb3eeff9c94d950e679dfa3db4d6a | refs/heads/master | 2023-08-31T13:19:11.750920 | 2023-08-31T03:13:41 | 2023-08-31T03:13:41 | 219,012,610 | 319 | 203 | Apache-2.0 | 2023-09-14T18:20:17 | 2019-11-01T15:30:18 | JavaScript | UTF-8 | PlantUML | false | false | 608 | puml | @startuml
'https://plantuml.com/component-diagram
header Agoric Systems Operating Company.
footer v0.0.1
title Pegasus Component Diagram
skinparam componentStyle rectangle
skinparam defaultTextAlignment center
database "Agoric Chain" {
actor "Alice" as alice
cloud "Governance" as gov
node "Dynamic IBC" as dIBC
node "Pegasus" as pegasus
pegasus <--> dIBC
}
database "Cosmos Chain" {
node "Cosmos IBC" as cIBC
actor "Bob" as bob
}
cloud {
actor "Relayer" as relayer
relayer <-u-> dIBC
relayer <-r-> cIBC
}
alice -d-> pegasus
cIBC -d-> bob
gov <-> pegasus
@enduml | false | true | false | false | sequence |
39276c4dc2f4387c522878510109c8f7acb89094 | a7edc7637115012787ceef26f3daaf3dca4c4e46 | /Sequence Diagram.puml | 119226d3a18a37681cec61808051adf4c9c89e4f | [] | no_license | telday/hackathon | 1b4f37f8f11acbeaa14763eecb0ef5c39a4f4b5c | c53a1f102c0b3fd5abc848893089fdaf9175040c | refs/heads/master | 2023-04-09T17:36:59.850941 | 2021-04-22T20:28:08 | 2021-04-22T20:28:08 | 360,642,962 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 530 | puml | @startuml API Sequence Diagram
' Login Flow
User -> Conjur : Login Request
Conjur -> AuthenticateController : Basic Auth Details
AuthenticateController -> Postgres : Validate Username/Password
Postgres --> Conjur : Valid
Conjur --> User : ApiKey
' Authenticate Flow
User -> Conjur : Authenticate Request
Conjur -> AuthenticateController : Basic Auth Details
AuthenticateController -> Postgres : Validate Username/ApiKey
Postgres -> Conjur : Valid
Conjur --> User : Access Token
' Create Secret Flow
' Create Host FLow
@enduml | false | true | false | false | sequence |
98934632a10f54cc8cbebb9f1ef9c2ffd0eec49b | 5124b2dbc6276b681910d5584179a02ddc345669 | /documentation/uml/class/Service.puml | 59f235cf2a9047121f8caf92c61a1e2a828cea2b | [] | no_license | Dedda/paintball | 258257ce2b0b6160abe4a9dbbbf7c7a658416d5b | fb18cf11e2fc3f7eca7e0d26a2847743b560dc2f | refs/heads/master | 2020-12-30T09:58:02.507682 | 2015-06-16T17:22:59 | 2015-06-16T17:22:59 | 30,232,508 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 325 | puml | @startuml
class hotel.entity.Service {
- id : int
- name : String
- price : int
+ Service()
+ Service(int, String, int)
+ getId() : int
+ setId(int) : void
+ getName() : String
+ setName(String) : void
+ getPrice() : int
+ setPrice(int) : void
+ toString() : String
}
@enduml | false | true | false | false | class |
37859ea82108e62a0d94b7d0ceeda70cff71596d | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1140260/sprint4/core08.1_Export_pdf_sd_design_3.puml | ce552518172e1e4318c711a1d5e71b74f675b50f | [] | 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 | 1,410 | puml | @startuml doc-files/core08.1_Export_pdf_sd_design_3.png
actor User
participant "UI" as UI
participant "UIController" as UIController
participant "ExportPDFController" as ExportPDFController
participant "ExportPDF" as ExportPDF
participant "<interface>\nSpreadsheet" as Spreadsheet
participant "PDFWriter" as PDFWriter
participant "JFileChooser" as JFileChooser
participant "Value" as Value
participant "<interface>\nCell" as Cell
participant "Workbook" as Workbook
User -> UI: selects option export to pdf
UI -> UIController: ExportPDFController(UIController uiController)
UIController -> ExportXMLController: exportSelectedCells(fileChooser, uiController);
ExportXMLController -> File: file = fileChooser.getSelectedFile();
ExportPDF <-- JFileChooser: give a Selected File
ExportPDFController -> UIController: uiController.focusOwner.getSelectedCells()
ExportPDFController <-- UIController: returns SelectedCells
ExportPDFController -> EncoderStrategy: write(file,selectedCells)
ExportPDF -> ExportPDF:writeSelectedCells(selectedCells, file);
PdfWriter -> PdfWriter:getInstance(new Document(PageSize.A4), new FileOutputStream(file))
loop for every cells
Spreadsheet -> Cell:cells = cells[row][columm]
Cell -> Value:cells.getValue.toString()
PdfCell -> PdfCell : cell=new PdfCell(new Paragraph(cells, f)
PdfPTable -> PdfPTable: table = new PdfPTable(1);
PdfCell -> PdfPTable : table.add(cell)
end
@enduml | false | true | false | false | usecase |
43ab150a631bd06c51b8fa0bb116b20e56a4d59f | 188aa3bd1c4fc0a88cab9726c2f2299f147e70d8 | /docs/UC_05/UC05_MD.puml | 0c13d1b17a19ced0b03c901b7cf18abcd5ecbe8d | [] | no_license | botelho-io/lapr2-2020-g029 | c6a3c15bace1145c94c0495ac5f8ce54b7be478c | 1834bf842e5ae1f94d20ab61dad8e8124fc9f61b | refs/heads/master | 2023-08-17T00:53:42.364156 | 2020-06-14T22:29:10 | 2020-06-14T22:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,918 | puml | @startuml MD
skinparam classAttributeIconSize 0
hide methods
left to right direction
class TaskExecutionDetails {
- Date endDate
- Integer delayInDays
- String DescriptionQualityOfWork
}
class Organization {
- String name
}
class Task {
- String id
- String description
- Integer durationInHours
- Double costPerHourOfJuniorEur
- String category
}
class App {
}
class Manager {
- String name
- String email
- String password
}
class Transaction {
}
class PaymentScheduler {
- Integer dayMonth
- LocalTime timeOfDay
}
App "1" -- "*" Organization : has >
App "1" -- "1" PaymentAPI : supports >
App "1" -- "*" Payment : registers >
Organization "1" -- "*" Task : publishes >
Manager "1" -- "0,1" PaymentScheduler : defines >
Transaction "1" -- "1" Task : relative to >
Transaction "1" -- "1" TaskExecutionDetails : executed with >
TaskExecutionDetails "1" -- "1" Task : refer to >
PaymentScheduler "1" -- "*" Payment : schedules >
Organization "1" -- "1" Manager : has >
Organization "1" -- "1" PaymentScheduler : uses >
Organization "1" -- "*" Task : publishes >
Organization "1" -- "*" Transaction : has unpaid >
Payment "*" -- "1" Organization : made on behalf of >
Payment "1" -- "1" Transaction : refers to >
@enduml | false | true | false | false | class |
1b560b9240f3c4f612c7a71fd7e1985b22a5e28e | 3075b6c51514546942e45db273543621aef99dc2 | /plantUmlDiagrams/Observer.puml | 11081da1e8bbf0fe56b77c6abba53080bd58b3c0 | [] | no_license | DeclanBU/Design_Patterns_Project | 8192788cd784740e14d55eb14741d7cbad9ca0e5 | 7329048e0ba5ce7b7725f92694ba4a0629f3d9e1 | refs/heads/master | 2020-03-29T00:26:47.891280 | 2018-12-01T23:01:46 | 2018-12-01T23:01:46 | 149,339,795 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 822 | puml | @startuml
class Customer extends Observable {
public void approachWindowHatch()
public void orderFood()
public void foodCollected()
}
enum MacDonalds {
SERVERBUSY,ORDER,READYFORORDER;
}
enum Moving {
DRIVEUPTO,COLLECTFOOD,LEAVE;
}
class ServerState implements Observer {
private MacDonalds state = MacDonalds.SERVERBUSY;
public void update(Observable o, Object arg)
Moving action = (Moving) arg;
switch (action)
case DRIVEUPTO: open(); break;
case COLLECTFOOD: takeOrder(); break;
case LEAVE: thankYou(); break;
public void state()
System.out.println("STATE: " + state.toString());
private void open()
private void takeOrder()
private void thankYou()
}
@enduml | false | true | false | false | class |
5e66c5b7e10d1c21f3022a795b4278cf4cc4c7f5 | 46b1d6d9bd148b20d1c28bb8b31fa202933d4aa9 | /diagrams/architecture.puml | 317f7a91755c1a2817fa860e95b5f22d0d753c3a | [] | no_license | qn-ng/pang-java | fb5fdc6fd0eae574d5a5254855d0a23493070f5c | bdc7b53f951d4f4b5626153d3c3f837d4d09f84a | refs/heads/master | 2022-01-17T23:38:44.820841 | 2019-05-31T12:35:02 | 2019-05-31T12:35:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,362 | puml | @startuml
namespace me.foly.si.core {
interface IShip {
+ void tick()
+ void draw(IDrawer)
+ ShipView getView()
+ ShipModel getModel()
+ int getLeft()
+ int getRight()
+ int getTop()
+ int getBottom()
+ int getWidth()
+ int getHeight()
+ int getCenterX()
+ int getCenterY()
}
abstract class Ship {
+ {abstract} void tick()
}
IShip <|-- Ship
class ShipView {
+ void draw(IDrawer)
}
class ShipModel
ShipView <-- Ship
ShipModel <-- Ship
ShipView --> ShipModel
class Position {
- int x
- int y
}
class Size {
- int width
- int height
}
Size <--* ShipModel
Position <--* ShipModel
class Player {
+ void tick()
+ void move(InputKey)
+ void stop(InputKey)
}
Ship <|-- Player
interface IDrawer {
+ void background(float, float, float)
+ void rect(int, int, int, int)
+ void image(String, int, int, int, int)
}
IDrawer <.. IShip
interface IScene {
+ void tick(Game)
+ void draw(IDrawer)
+ void keyPressed(InputKey, Game)
+ void keyReleased(InputKey, Game)
}
class StageScene
IScene <|-- StageScene
IShip "*" <- StageScene
Player <-- StageScene
class Game {
+ Game(IDrawer)
+ void tick()
+ void draw()
+ void keyPressed(InputKey)
+ void keyReleased(InputKey)
+ void setScene(IScene)
}
Game --> "currentScene" IScene
Game --> "drawer" IDrawer
interface IAssetsManager<TImage> {
+ TImage getAsset(String)
}
}
namespace me.foly.si.app {
class GameApplet
processing.core.PApplet <|-- GameApplet
GameApplet --> me.foly.si.core.Game
class ProcessingAssetsManager<processing.core.PImage> {
- HashMap<String,PImage> cache
+ ProcessingAssetsManager(GameApplet)
+ processing.core.PImage getAsset(String)
}
ProcessingAssetsManager --|> me.foly.si.core.IAssetsManager
processing.core.PImage <.. ProcessingAssetsManager
ProcessingAssetsManager <- GameApplet
class ProcessingDrawer
me.foly.si.core.IDrawer <|-- ProcessingDrawer
ProcessingAssetsManager <-- ProcessingDrawer
}
@enduml | false | true | false | false | class |
09ca54b6f4bc32884192f077bb3f1c3576f71c9f | efacda28878240d78febd8b6e12c2ff4ebecf17b | /docs/uml/partial/core.puml | 83319fc4ef8273fd4e7f880ee8c48b5fdfc7e2c3 | [
"MIT"
] | permissive | xusy2k/django-inspire-eu | 3fc67dfdce07a05f9426ca6014ce35d8babd3266 | 8bdde9022f5f89ae11bc2d25b3f13cfb2ebac94d | refs/heads/master | 2023-04-25T22:52:12.601072 | 2021-06-01T04:58:23 | 2021-06-01T04:58:23 | 342,009,124 | 8 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,403 | puml | @startuml core
title
<b>Core</b>
end title
right header
Last Mod:
2021-02-20
endheader
entity Status{
- code
- slug
+ label
definition
+ link
is_valid
}
entity Namespace{
- code
name
}
entity Theme {
- code
- slug
+ link
version
label
definition
description
}
Status -down-{ Theme
entity ApplicationSchema {
- code
- slug
+ link
version
+ label
definition
description
}
Theme }-left-{ ApplicationSchema
Status -left-{ ApplicationSchema
entity CodeList {
- code
- slug
+ link
label
definition
description
}
CodeList }-left-{ Theme
CodeList }-left- ApplicationSchema
Status -down-{ CodeList
CodeList .down.{ CodeList : parent
entity CodeListValue{
- code
- slug
+ link
+ label
definition
description
--
search(slug, code_list_slug)
}
CodeList -down-{ CodeListValue
Status -down-{ CodeListValue
enum MEASURE_TYPE_CHOICES {
MEASURE_TYPE_UNKNOWN
MEASURE_TYPE_AREA
MEASURE_TYPE_LENGTH
MEASURE_TYPE_ANGLE
MEASURE_TYPE_TIME
MEASURE_TYPE_VELOCITY
MEASURE_TYPE_VOLUME
MEASURE_TYPE_SCALE
MEASURE_TYPE_WEIGHT
}
entity UnitOfMeasure {
name
- slug
- symbol
name_standard_unit
scale_to_standard_unit
offset_to_standard_unit
formula
}
UnitOfMeasure -up- MEASURE_TYPE_CHOICES: measure_type
@enduml
| false | true | false | false | sequence |
bc37fa6c2afb5a09bfb50bcbca2828e25c38bf0e | 8d9e350f7c1bfdf14601e40f96eefd2676e002ae | /3-OOAdvanced/陈昊-MG20330007/hello.puml | ff4ce20c539b315a241825eff121319f4a7cd1bc | [] | no_license | LDawns/java20-homework | e6c9a45f2589ba5dd68fefe47fca6f2750ca7ab5 | 67651df88fb2234dc29a221d5360057775ba05e8 | refs/heads/master | 2023-05-13T20:02:45.878202 | 2021-06-02T11:38:05 | 2021-06-02T11:38:05 | 294,383,544 | 1 | 0 | null | 2020-09-10T10:57:33 | 2020-09-10T10:57:32 | null | UTF-8 | PlantUML | false | false | 1,391 | puml | @startuml hello
Story *--> SortStrategy
Story *-- GrandFather
StrategyFactory --> SortStrategy
GrandFather "1" *-- "7" CalabashBrother
class Story {
-SortStrategy strategy
-GrandFather gfather
-List<CalabashBrother> queue
Story()
+setStrategy(SortStrategy): void
+getGrandFather(): GrandFather
-echo(Sting): void
+start(void): void
}
class StrategyFactory {
-Story ctx
-String strategies
StrategyFactory(Story)
-echo(): void
-alarm(): void
+getStrategy(String): SortStrategy
+getStrategyFromInput(): SortStrategy
}
class Human {
#String nickname
+reportName(): void
{abstract}#lines(): void
+say(): void
}
interface SortStrategy {
+sort(List<CalabashBrother>): void
}
class GrandFather extends Human {
{static} int childrenNum
-CalabashBrother[] children
{static}-String[] nicknames
GrandFather()
+instruct(List<CalabashBrother>): void
+plantCalabsh(): CalabashBrother[]
#lines(): void
}
class CalabashBrother extends Human {
-int idx
CalabashBrother(String, int)
#compareTo(CalabashBrother): int
#lines(): void
}
class Choreography implements SortStrategy {
+sort(List<CalabashBrother>): void
}
class Orchestration implements SortStrategy {
-GrandFather gfather
Orchestration(GrandFather gfather)
+sort(List<CalabashBrother>): void
}
@enduml | false | true | false | false | class |
5bfacafffa9a13ca0707fb7e05056ebc09930b90 | 31233a198fe7a5bc99a42974b03a2f1176c04a51 | /diagrams/viewAllProducts.puml | 57baa7e498c5c75de580345ad3dafe3bd4dfd8ff | [] | no_license | angus-tylee/shoppingproject | 78b33ecbe212d7ca1fda2b699b7d2174adca670c | d75afddc22f5ccc86ce7e6aedb51c76ffa4e2eb1 | refs/heads/master | 2022-11-09T04:39:09.271625 | 2020-07-01T10:24:42 | 2020-07-01T10:24:42 | 276,343,368 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 598 | puml | @startuml
skinparam style strictuml
actor "User" as user
participant "Administration" as main <<main>>
main++
create "MainMenu" as menu <<frame>>
main -> menu : construct
main -> menu++ : setVisible(true)
user -> menu : click 'View Products'
create "ProductReport" as viewer <<dialog>>
menu -> viewer : construct
viewer++
create "ProductCollection" as dao <<DAO>>
viewer -> dao : construct
viewer -> dao++ : displayProducts()
return products
dao--
viewer -> viewer : set products in gui
viewer--
user -> viewer : clicks Close button
viewer -> viewer : dispose()
destroy viewer
@enduml
| false | true | false | false | usecase |
116f2f68a2c317e1dbf0f00c7748fcb1574e7731 | c60a8fb67fedcbae08755d8125d97468a8aca24d | /Projet de UML Reverse/target/classes/examples/uc.puml | 2626d93a0306301849b241fa802f8fbab150c1fd | [
"Apache-2.0"
] | permissive | BelkhousNabil/Projets-Informatiques | 6be114f6a8dbcf978ef67daffb1394ee023255cf | 47ffd6526bb66ae263c34725fe2b515b751127bb | refs/heads/master | 2021-01-17T07:12:08.050466 | 2017-02-26T17:03:56 | 2017-02-26T17:03:56 | 54,788,129 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 137 | puml | @startuml
rectangle k {
actor a
usecase uc
(uc) -> :a:
}
actor :zef:
(us) -> :a:
usecase "coucou" as c
note top of c : ALL
@enduml | false | true | false | false | usecase |
f27886f151ef99e74ae53ee34bef06d5458ead3e | e3479658ab5b620ea745349224511ceba1e034ba | /docs/top-level-sequence.puml | 645c8ca81012111282eb8b28c1ebce64620051b3 | [
"Apache-2.0",
"MIT"
] | permissive | IPFS-eX/go-graphsync | cfa3a25b197649778eddb24728156d39322d813f | 9dfb6b84e55b3bd34d4b5b433654f3637985e0d4 | refs/heads/master | 2022-09-26T15:09:20.619569 | 2020-06-03T06:58:32 | 2020-06-03T06:58:32 | 269,011,276 | 0 | 0 | NOASSERTION | 2020-06-03T06:47:48 | 2020-06-03T06:47:45 | null | UTF-8 | PlantUML | false | false | 2,245 | puml | @startuml Top Level Sequence
participant Client
participant "GraphSync\nTop Level\nInterface" as TLI
participant "Requestor\nImplementation" as Requestor
participant "Responder\nImplementation" as Responder
participant IPLDBridge
participant "Intercepted Loader" as ILoader
participant Loader
participant Storer
participant "Message Sending\nLayer" as Message
participant Network
== Initialization ==
Client -> TLI ** : Create With\nNetwork, Bridge,\nLoader/Storer
TLI -> Requestor ** : Setup
TLI -> Responder ** : Setup
TLI -> Message ** : Setup
== Performing a Request ==
Client -> TLI : Make a request with\na selector and\na target peer
TLI -> Requestor : Call with requested\nselector/target peer
Requestor -> Message : Send Request To Sent Over Network
Message -> Network : Encode and Send\nRequest
== Message Crosses Network, Now On Target Peer ==
Network -> TLI : Network receives message calls top level interface to process
TLI -> Responder : Send new request for processing
Responder -> IPLDBridge : Start a traversal\nof the selector
IPLDBridge -> ILoader : Request to load blocks\nto perform traversal
ILoader -> Loader : Load blocks\nfrom local storage
Loader -> ILoader : Blocks From\nlocal storage
par
ILoader -> IPLDBridge : Blocks to\ncontinue traversal
IPLDBridge -> Responder : Traversal completes to\nnotify response is done
else
ILoader -> Responder : Blocks+Responses To Send Back
end
Responder -> Message : Send Responses+Blocks To Send Over Network
Message -> Network : Encode and Send\nResponses+Blocks
== Message Crosses Network, Back On Original Peer ==
Network -> TLI : Network receives message calls top level interface to process
TLI -> Requestor : Send Responses+Blocks\nfor Processing
par
Requestor -> IPLDBridge : Kick of selector traversal to verify response
IPLDBridge -> ILoader : Request to load blocks\nto perform traversal
else
Requestor -> ILoader : Blocks To Feed Back To Selector Verfication
end
ILoader -> Storer : Save blocks as they are verified
Storer -> ILoader : Blocks Were Stored
ILoader -> IPLDBridge : Blocks To Continue\n Ongoing Verification
IPLDBridge -> Requestor : New IPLD Nodes Visited
Requestor -> TLI : Stream Of\nNew IPLD Nodes
TLI -> Client: Stream Of\nNew IPLD Nodes
@enduml | false | true | false | false | sequence |
5e7b87d7723315134de776936fc6ca018f24c391 | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/UseCases/Manage-Security/Detect-State-of-the-Platform.puml | d9d6276c5450f60ad4a93ea40cb7fb69458974b8 | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 273 | puml | @startuml
Actor "actorName" as A
box "Manage-Security" #lightblue
participant CLI as CLI
participant Web as Web
participant "Edgeville" as S
A -> CLI : Edgeville-state-detect()
CLI -> S : state/detect()
A -> Web : state/detect()
Web -> S : state/detect()
end box
@enduml
| false | true | false | false | sequence |
b91102a04365513cd2050200dca105a49fb1eb56 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TransactionType.puml | 396a2841284ea7d85d2219a2fb8e4b41b36c3b39 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,192 | puml | @startuml
hide methods
enum TransactionType {
AUTHORIZATION
CANCEL_AUTHORIZATION
CHARGE
REFUND
CHARGEBACK
}
interface MyTransactionDraft [[MyTransactionDraft.svg]] {
timestamp: DateTime
type: [[TransactionType.svg TransactionType]]
amount: [[Money.svg Money]]
interactionId: String
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface Transaction [[Transaction.svg]] {
id: String
timestamp: DateTime
type: [[TransactionType.svg TransactionType]]
amount: [[CentPrecisionMoney.svg CentPrecisionMoney]]
interactionId: String
state: [[TransactionState.svg TransactionState]]
custom: [[CustomFields.svg CustomFields]]
}
interface TransactionDraft [[TransactionDraft.svg]] {
timestamp: DateTime
type: [[TransactionType.svg TransactionType]]
amount: [[Money.svg Money]]
interactionId: String
state: [[TransactionState.svg TransactionState]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
TransactionType --> MyTransactionDraft #green;text:green : "type"
TransactionType --> Transaction #green;text:green : "type"
TransactionType --> TransactionDraft #green;text:green : "type"
@enduml
| false | true | false | false | sequence |
29125cb677eec26411323188a5d572cce5cb54e2 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /SingleClass/iResourceDB.plantuml | 8ccbcd7d37472ed96d47b73dc54d9f0db1235e49 | [] | 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 | 260 | plantuml | @startuml iResourceDB
class IResourceDB <<interface>> {
+ save_resource()
+ get_resource_url()
+create(classroom_id, uploaded_by, resource_url)
+read(classroom_id)
+read(uploaded_by)
+read(resource_id)
+delete(resource_id)
}
@enduml | false | true | false | false | class |
56b154147fa2ce7004fab7d48b10459b0c1c0e03 | e49567ea3e4e5a6e5c7e988a46e8175f6a39857f | /uml/UncompletedItems.puml | 820ad7273b17e9ee5eb96c272bdd5316ae5b5092 | [] | no_license | mate-gam/Gamero-cop3330-assignment4 | c5405940b3dd352731beb8b376734cf138d48d57 | 47193a255453dca6d73f4dd6bd2a2f5f3624cb50 | refs/heads/master | 2023-09-05T09:42:47.978569 | 2021-11-01T23:29:04 | 2021-11-01T23:29:04 | 423,345,539 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 219 | puml | @startuml
class ShowAll{
TableColumn tableColumn
CheckBoxTableCell checkBoxTableCell
==
.. Get Unchecked Column ..
+ TableColumn getUncheckedComplete()
.. Set Unchecked Column ..
+ void setUncheckedComplete()
}
@enduml | false | true | false | false | class |
e46fe43434cbb0b19d6c7775f9c72dde05e3107d | 418493e99ee0c87456da7cb3ef22aa4bcb83be60 | /documentation/software_design/manage_split_participation/participant_join_split_diagSequence.puml | 460bae7bb795d4a079f4a599d19530319d39cb13 | [] | no_license | AyoubMoujane/SplitPay | 8fc6fe1eb09b5d1566015994b5443e77eb5ec2a4 | 8408108f732a77ed837dfc695e9a712c33b614a7 | refs/heads/main | 2023-02-16T11:40:57.259756 | 2021-01-17T07:26:19 | 2021-01-17T07:26:19 | 311,427,277 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,102 | puml | @startuml
autonumber
actor Participant
Participant ParticipantView
Participant ManageParticipantController
Participant SplitClientFacade
Participant ObservableSplitClient
Participant AdaptableSplitClient
Participant -> ParticipantView : Participation attempt
ParticipantView -> ManageParticipantController: goToCodeJoinView(actionEvent: ActionEvent):void
ManageParticipantController -> SplitClientFacade: joinSplit(splitCode: view)
SplitClientFacade -> ObservableSplitClient: sendToServer()
ObservableSplitClient -> AdaptableSplitClient: sendToServer()
AdaptableSplitClient -> AdaptableSplitClient: handleMessageFromServer()
AdaptableSplitClient -> ObservableSplitClient: handleMessageFromServer()
ObservableSplitClient -> ObservableSplitClient: notifyAllObservers()
ObservableSplitClient -> SplitClientFacade: update()
SplitClientFacade -> SplitClientFacade: handleMessageFromServer()
alt participation success
SplitClientFacade -> ManageParticipantController: Participation Success
else Invalid SplitCode
SplitClientFacade -> ManageParticipantController: wrong SplitCode Exception
end
@enduml
| false | true | false | false | usecase |
a3689afa3db5e5337297e876f2e4776dce8ce55f | c0cca0a927c0bd4a78414fce9a5c02d398e9436d | /Desing/Patterns/1. RelationsClasses/relations.puml | 546ea3adb1652b8e9c54be1ed3e86c81b7582bd7 | [] | no_license | RybalkoValeriy/Design | bacc29fb163a16d5bffed4dc54972748886b8101 | 139a0707266d0e23377d9eefafce81c9531c3c5a | refs/heads/master | 2020-12-21T14:54:53.606944 | 2020-01-27T10:32:44 | 2020-01-27T10:32:44 | 236,466,068 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 370 | puml | @startuml
class User {
+ int Id
+ string FirstName
+ string LastName
+ void SomeBehavior()
}
class UserExtensions {
+ string Desctiption
+ void AdditionalBehavior()
}
User <|-- UserExtensions : Inheritance/extension
interface IInterface {
+ void Method()
}
class Class {
+ void Method()
}
IInterface <|.. Class : Implementation
@enduml | false | true | true | false | class |
86e84682df6e3af1dd154e9c0b0457652e6cdece | 08ef327e8a5acbe6345b82a70517357654b03091 | /reg.puml | 180fc93083126e065c7e3d8f365d1bc3a2445bfb | [] | no_license | Janezthh/OOAD | 401bc061d0e85ff6ce1a55f4ab9799889579c193 | b2df0b5bdf099edb2555abb7fd0db2d897fa9b02 | refs/heads/main | 2023-04-03T18:17:00.594491 | 2021-04-08T18:18:45 | 2021-04-08T18:18:45 | 355,971,508 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 388 | puml | @startuml
left to right direction
:Student:as std
(Computer)as com
(Webpage Error)as we
(Full number of people)as full
rectangle RegSystem{
usecase "login" as c1
usecase "select subject" as c2
usecase "submit"as c3
}
std --> com
com --> c1
c1 --> c2
c2 --> c3
we --|> c3#green;line.dashed;text:green : extends
full --|> c3#green;line.dashed;text:green : extends
@enduml | false | true | false | false | usecase |
1d75d18ee8c451331c1929547a4aabb5651ce2f2 | e13266d8dcc9fee1cdea8c8db39b899f12f6ba77 | /diagrams/number.puml | ae886b7e27944ba77439d1d95dc74e3928f3f026 | [] | no_license | shin1x1/php8-toy-json-parser | a18b5bc6bb24745e3e4a3ad11b6268e148c7ee9e | ad28f8b123a98b88962289cdad52da373ad73bbb | refs/heads/master | 2023-02-04T16:39:57.533388 | 2020-12-25T10:31:49 | 2020-12-25T10:31:49 | 319,538,575 | 9 | 0 | null | 2020-12-25T10:31:51 | 2020-12-08T05:43:37 | PHP | UTF-8 | PlantUML | false | false | 515 | puml | @startuml
left to right direction
[*] --> START
START --> MINUS : -
MINUS --> INT_ZERO : 0
MINUS --> INT : 1-9
START --> INT_ZERO : 0
INT_ZERO --> DECIMAL_POINT : .
INT_ZERO --> [*]
START --> INT : 1-9
INT --> INT : 0-9
INT --> DECIMAL_POINT : .
INT --> [*]
DECIMAL_POINT -->DECIMAL_POINT_INT : 0-9
INT --> EXP : e or E
DECIMAL_POINT_INT --> [*]
DECIMAL_POINT_INT --> EXP : e or E
DECIMAL_POINT_INT --> DECIMAL_POINT_INT : 0-9
EXP --> EXP_INT : - or + or 0-9
EXP_INT --> EXP_INT : 0-9
EXP_INT --> [*]
@enduml | false | true | false | false | sequence |
fcde7cf654d61027d45b965505d69a584ab6bb8f | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/financial.plantuml | 349da40584977a3b3484150a5be9fa7ce9ea8cd2 | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 404 | plantuml | @startuml
title __FINANCIAL's Class Diagram__\n
namespace com.vrush.microservices.financial {
class com.vrush.microservices.financial.FinancialApplication {
{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 |
3f6ad21aa4312257bc6ee624c075232f21f3cafe | c9b9ca73d3c9c9d3f31ec5818a412aed33e8e464 | /models/src/uml/ParametersUML.puml | 22c9b4b6504b04561b9f5cea24590cc57ce9ff15 | [] | no_license | xmljim/algorithms | bb7540c603b79a59ceb7f69347e874c679ac2d7d | 133ad06ef2fdf473215e982712596b100b1e4701 | refs/heads/main | 2023-08-02T12:32:25.423844 | 2021-09-08T22:43:28 | 2021-09-08T22:43:28 | 400,223,452 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 793 | puml | @startuml
'https://plantuml.com/class-diagram
interface NamedEntity
interface VariableEntity
interface Parameter<T>
interface ScalarParameter
interface Function<T>
interface FunctionParameter<T>
interface ScalarFunction
interface ScalarFunctionParameter
interface Vector<T>
interface VectorParameter<T>
interface ScalarVector
interface ScalarVectorParameter
class Scalar
NamedEntity <|-- VariableEntity
VariableEntity <|-- Parameter
Parameter <|-- ScalarParameter
ScalarParameter *-- Scalar
Parameter <|-- FunctionParameter
FunctionParameter *-- Function
Parameter <|-- VectorParameter
VectorParameter *-- Vector
Function <|-- ScalarFunction
FunctionParameter <|-- ScalarFunctionParameter
ScalarFunctionParameter *-- ScalarFunction
ScalarFunction *-- Scalar
Vector <|-- ScalarVector
@enduml | false | true | false | false | class |
1ff066a07ece95f7abb6f925dfbf1f9e036bff10 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/kepala/VIewFilePersetujuanSPTBKA.puml | 43d92660f67a191fa036d63e41d7b9af5fe02cce | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 906 | puml | @startuml
autonumber
hide footbox
title Melihat File Persetujuan SPT BKA
Actor Kepala
boundary Dashboard_V
boundary SPRBKA_V
boundary PDF_V
control Admin_C
control SuratPerintahTugas_C
Entity SuratPerintahTugas_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> Kepala: Halaman Dashboard
Kepala --> Dashboard_V: klik menu SPT BKA
Dashboard_V --> SuratPerintahTugas_C: sptbka()
SuratPerintahTugas_C --> SuratPerintahTugas_E:
SuratPerintahTugas_E --> SuratPerintahTugas_C:
SuratPerintahTugas_C --> SPRBKA_V: load->view()
SPRBKA_V --> Kepala: Halaman SPT BKA
Kepala --> SPRBKA_V: klik tombol Lihat File Persetujuan SPT BKA
SPRBKA_V --> SuratPerintahTugas_C: viewspt()
SuratPerintahTugas_C --> SuratPerintahTugas_E:
SuratPerintahTugas_E --> SuratPerintahTugas_C:
SuratPerintahTugas_C --> PDF_V: load->view()
PDF_V --> Kepala: Tampilan file Persetujuan SPT BKA
@enduml | false | true | false | false | sequence |
08c7984cfccaa2c51d759c00faa02b23752c3bd2 | 58cd3947ad68d2661919d1037ff89bd5919fd901 | /docs/chatapp/Sequence-Diagram/getUserList.puml | 8825b663a039e82e7ef4bcd9b35299d81104bffb | [] | no_license | minhduc2803/Snail-Project | 8c5349e5a3089023d8fff3ed10f4d159d14c9892 | cb3660917c6a82b19996cfdc1355a43a7a4bb389 | refs/heads/master | 2023-01-11T19:04:24.824330 | 2020-11-04T08:06:29 | 2020-11-04T08:06:29 | 294,295,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 434 | puml | @startuml getUserList
skinparam backgroundColor #EEEBDC
skinparam handwritten true
actor User
User -> "backend" : get user list
"backend" -> "backend" : confirm JWT token
alt (token is invalid)
"backend" -> User : Unauthorized
else (token is valid)
"backend" -> "MySQL" : get user list information
"MySQL" -> "backend" : return user list
"backend" -> User : return user list
end
@enduml | false | true | false | false | usecase |
01fccf150926d6bdad6ede93b0e9760a4b159941 | deaea2d2654b67f1dd3d7bbfd92720b417afa21f | /metrics/ci_integrations/docs/diagrams/resync_builds_stage_sequence_diagram.puml | 6b18b27eb141cfd96d8f78ef9a4daca041a8c76a | [
"Apache-2.0"
] | permissive | solid-maxim/monorepo | 3b3af830bb1ac779f6bb2e21cf1c064080b2ade4 | 6cdba060331b15dd81e388b6fba3018fa802bc45 | refs/heads/master | 2023-03-30T07:22:29.002984 | 2021-03-29T11:30:17 | 2021-03-29T11:30:17 | 310,013,265 | 0 | 0 | Apache-2.0 | 2020-11-04T13:37:54 | 2020-11-04T13:37:54 | null | UTF-8 | PlantUML | false | false | 1,063 | puml | @startuml resync_builds_stage_sequence_diagram
'https://plantuml.com/sequence-diagram
skinparam SequenceMessageAlignment center
participant CiIntegration
participant SourceClient
participant DestinationClient
?-> CiIntegration ++ : _syncInProgressBuilds(//config//)
|||
CiIntegration -> DestinationClient ++ : fetchBuildsWithStatus(//config.destinationProjectId, BuildStatus.inProgress//)
return //buildsInProgress//
note right of CiIntegration: //final buildsUpdate = []//
loop for each //build// in //buildsInProgress//
CiIntegration -> CiIntegration ++ : _syncInProgressBuild(//config, build//)
return //refreshedBuild//
|||
opt //refreshedBuild// != null
note right of CiIntegration: //buildsUpdate.add(refreshedBuild)//
end
end
|||
opt config.coverage
||8||
CiIntegration -> CiIntegration ++ : //_addCoverageData(buildsUpdate)//
return //buildsUpdate//
||8||
end
CiIntegration -> DestinationClient ++ : updateBuilds(//config.destinationProjectId, buildsUpdate//)
return void
return InteractionResult
@enduml
| false | true | false | false | sequence |
4b20e07814c4e69683b59f2961e623b09e41acdf | f307970b839abfefbcd59b5aec6d5f871a961f72 | /src/main/java/com/slas/repo/repo.plantuml | 9708074d9869631dcce2d53a29c66d42fa06c1b1 | [] | no_license | atanuroy911/SLAS_WEB | f27cd49c8dee735432c9521b77e21db14c1a27b4 | d6dcf31ec7a1d6bc592afdd3bfa6d3841ab21d5e | refs/heads/main | 2023-03-05T06:24:00.145938 | 2021-02-20T00:08:03 | 2021-02-20T00:08:03 | 335,622,112 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 455 | plantuml | @startuml
title __REPO's Class Diagram__\n
namespace java {
namespace com.slas {
namespace repo {
interface com.slas.repo.LectureSlas {
}
interface com.slas.repo.RepoSlas {
}
}
}
}
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 |
a6f84d33ec29acae2af4c536146ba343e0060764 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1130303/sprint3/chat_app_analysis_receive.puml | 121cc0d1a86d3cc97eb6892d9010617789a14e03 | [] | 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 | 1,121 | puml | @startuml doc-files/chat_app_analysis_receive.png
actor User
participant "<<analysis>>\nChatAppUI" as ChatAppUI
participant "<<analysis>>\nChatAppController" as ChatAppController
participant "<<analysis>>\nUdpService" as UdpService
participant "<<analysis>>\nTcpService" as TcpService
participant "<<analysis>>\nVolt.UdpClient" as UdpClient
participant "<<analysis>>\nVolt.UdpServer" as UdpServer
participant "<<analysis>>\nVolt.TcpServer" as TcpServer
User->ChatAppUI: open chat option
ChatAppUI->ChatAppController: new()
ChatAppController->UdpService: new()
UdpService->UdpClient:client(int seconds)
UdpService->UdpServer:server(int localPort, int targetPort)
ChatAppController->UdpService: getInstancesOnNetwork()
ChatAppController->TcpService: new()
TcpService->TcpServer:server(int port)
TcpService-->ChatAppController: receiveMessage()
ChatAppController-->ChatAppUI: notifiesChange(messageReceived)
User->ChatAppUI: close chat option
ChatAppUI->ChatAppController: changeToOffline()
ChatAppController->UdpService: sendOffline()
ChatAppController->UdpService: stop()
ChatAppController->TcpService: stop()
@enduml | false | true | false | false | usecase |
6c95e5d6ccb96aa6e517fd06e309a03b474b02aa | 5bc472c0d70bb4075616daeb13b6f6b7ab33ccb4 | /docs/consistency.puml | 4c291e431a2fec911f23afe74a24528b2568b08f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | afaruga-atlassian/db-replica | d906aa65254cf6462195b191a8a827af308e3fd5 | 09757beacd0f558ec954abc651693e4018b6c784 | refs/heads/master | 2023-06-10T05:42:06.259732 | 2021-03-09T17:02:40 | 2021-03-10T12:59:22 | 343,390,025 | 0 | 0 | Apache-2.0 | 2021-03-10T15:13:47 | 2021-03-01T11:20:17 | Java | UTF-8 | PlantUML | false | false | 386 | puml | @startuml
@startuml
class DualConnection
interface ReplicaConsistency{
void write(Connection main)
boolean isConsistent(Supplier<Connection> replica)
}
DualConnection *-- ReplicaConsistency
DualConnection --> ReplicaConsistency::write : db write operation
DualConnection --> ReplicaConsistency::isConsistent : validate consistency for db read operation
@enduml
@enduml
| false | true | false | false | sequence |
2db46e7985eb691ca88906abc08a1e678db5d214 | 549a5d6435aa26d5b42a3ac865d25bbfe3b6b3b1 | /docs/exercises/oop/hard/dining/Guest.plantuml | 1b39b4bf6e712d0d574e1ce0fd099f937e77c7b1 | [] | no_license | 92annaszabo/bh-fst01 | 08529f349b3f354538a1374397eed36b24ad6c6c | efb0b077f1cd28e3c6754a22c22ec92facbae0f1 | refs/heads/master | 2020-11-30T02:33:04.903983 | 2020-02-10T15:18:30 | 2020-02-10T15:18:30 | 230,276,802 | 0 | 0 | null | 2020-02-10T15:18:32 | 2019-12-26T14:22:56 | HTML | UTF-8 | PlantUML | false | false | 99 | plantuml | @startuml
class Guest {
- _dispreferences: string[]
+ dispreferences(): string[]
}
@enduml | false | true | false | false | class |
7576bd0b3fa14ae023ff6b33662f7f1ef10cc5b1 | af60d432a684cefb6c1aa2ba3cce7fc342f591fb | /src/main/resources/ocp_refactored_step1_arch.puml | 2c7fbbf744f8403814df4f8cc63dd99381d42a6b | [] | no_license | pbinny/solid-principles | ef424ccc03ea43c1cf07ae78ea68bb11232a8d88 | 4a465e4ffd108a605dbcffb2f78a620f5ab111a7 | refs/heads/master | 2023-06-05T18:12:06.053217 | 2021-06-19T14:24:03 | 2021-06-19T14:24:03 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,886 | puml | @startuml
interface IncomeRepository{
}
interface ExpenseRepository{
}
class IncomeController {
- IncomeService service;
+ List<Income> getIncomes();
+ Income getIncome(Long id);
+ Income createIncome(Income income);
+ Income saveIncome(Income income);
+ void deleteIncome(Long id);
}
class ExpenseController {
- ExpenseService service;
+ List<Expense> getExpenses();
+ Expense getExpense(Long id);
+ Expense createExpense(Expense expense);
+ Expense saveExpense(Expense expense);
+ void deleteExpense(Long id);
}
component cashflow.core.* {
class IncomeServiceImpl {
- IncomeRepository repository;
+ List<Income> getIncomes();
+ Income getIncome(Long id);
+ Income createIncome(Income income);
+ Income saveIncome(Income income);
+ void deleteIncome(Long id);
}
class ExpenseServiceImpl {
- ExpenseRepository repository;
+ List<Expense> getExpenses();
+ Expense getExpense(Long id);
+ Expense createExpense(Expense expense);
+ Expense saveExpense(Expense expense);
+ void deleteExpense(Long id);
}
interface IncomeService{
{abstract} List<Income> getIncomes();
{abstract} Income getIncome(Long id);
{abstract} Income createIncome(Income income);
{abstract} Income saveIncome(Income income);
{abstract} void deleteIncome(Long id);
}
interface ExpenseService{
{abstract} List<Expense> getExpenses();
{abstract} Expense getExpense(Long id);
{abstract} Expense createExpense(Expense expense);
{abstract} Expense saveExpense(Expense expense);
{abstract} void deleteExpense(Long id);
}
}
IncomeController --> IncomeService
ExpenseController --> ExpenseService
class IncomeServiceImpl implements IncomeService
class ExpenseServiceImpl implements ExpenseService
IncomeServiceImpl --> IncomeRepository
ExpenseServiceImpl --> ExpenseRepository
@enduml | false | true | false | false | class |
8fd8190df7c5bca2d1f8eda8107641ae1f2ae593 | 4cf0212dccebbc5b4228a61d05df137725814468 | /puml/nats/acknowledgement.puml | f9c25cdf002c49dae9c9f822b5a64696b69898b4 | [] | no_license | JianLiu666/plantuml | fa7680743c9d913f1feb6f2a2509476b0933e696 | 8cb593ec14f8ebc652610e0dc7fd8cb6b91d70e2 | refs/heads/master | 2023-07-18T13:37:02.944777 | 2021-08-20T13:55:03 | 2021-08-20T13:55:03 | 357,549,577 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,117 | puml | @startuml acknowledgement
skinparam ParticipantPadding 80
skinparam BackgroundColor #EFF1F3
skinparam Shadowing false
skinparam sequence {
ParticipantBorderColor #777777
ParticipantFontColor #FFFFFF
LifeLineBorderColor #777777
ArrowColor #666666
ArrowFontColor #333333
NoteFontColor #333333
}
participant "Consumer\nApplication" as con #D98032
participant "NATS Streaming\nServer" as server #D98032
participant "Producer\nApplication" as pro #D98032
autonumber "0."
pro -> server : publish msg_1
pro -> server : publish msg_2
pro -> server : publish msg_3
con -> server : subscribe with options:\n - manual ack mode\n - ack wait = 5s\n - max in flight = 2
server -> con : receive msg_1
activate con #Gray
server -> con : receive msg_2
activate con #FCD766
con -> server : ack msg_2
deactivate con
server -> con : receive msg_3
activate con #FCD766
note over con : msg_1 & msg_3 still in flight
server -> con : receive msg_1'
activate con #FFAAAA
note right of con : msg_1 isn't available unitl its Ack expires.\nserver will be re-sent until it is acknowledged.
@enduml | false | true | false | false | sequence |
9d4485588d0fdecb715227ac6c7ecfc580d9d1eb | b721a08bf46181e3b203173c5740456481d61796 | /example_scripts/example1.plantuml | 45a547eea8d1d1f32a0d61a452928aadd5060100 | [] | no_license | pradeepa-s/heliview | e1cf73c561a9b9d06644c5750bb32482f32a0f4b | 65d4f12849faba64c279eaad88a99e481ca740c8 | refs/heads/main | 2023-04-05T17:20:21.622679 | 2021-04-18T10:10:46 | 2021-04-18T10:10:46 | 358,223,623 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 286 | plantuml | class MyClass1
{
+ PublicFunc
- PrivateFunc
}
class MyClass2
{
+ PublicFunc
- PrivateFunc
}
class MyClass3
{
+ PublicFunc
- PrivateFunc
}
class MyClass4
{
+ PublicFunc
- PrivateFunc
}
MyClass1 --> MyClass2
MyClass1 o-- MyClass3
MyClass1 *-- MyClass4
| false | true | false | false | class |
ef20699687742ff42c156fe607cbf7e95436d9e4 | 1e4af347653c6becd13e8f24a2d22d6244926c9e | /src/main/java/com/dekinci/eden/model/model.plantuml | 48a7e2c25b327b35886ea09ea098b4efc3d4522e | [] | no_license | NeuroTeam/CyberEden | e0a686555f6871cfdd7af314c81e809b7620afc2 | 0b2bdcb3e9378b70e0905f3cf1bfe2f8f13be578 | refs/heads/master | 2020-03-09T11:33:52.160781 | 2018-06-01T22:32:21 | 2018-06-01T22:32:21 | 128,764,470 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,448 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package com.dekinci.eden {
package com.dekinci.eden.model {
class AnimalManager {
- activeCells : Map<Coordinate, Cell>
- animalTransaction : Map<Coordinate, Cell>
~ AnimalManager()
~ placeRandomly()
- placeAnimal()
~ tick()
- getAnimalVision()
- breed()
- feed()
- feedPredator()
- feedVegetarian()
- moveAnimal()
- beginTransaction()
- newCellInTransaction()
- commitTransaction()
+ getCell()
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
class CoordinateInfo {
- chunk : int
- blockId : int
+ CoordinateInfo()
+ getCoordinate()
+ getChunk()
+ getBlockId()
+ getCell()
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
class Game {
{static} + STATE_NOT_READY : int
{static} + STATE_INITIALIZED : int
{static} + STATE_READY : int
{static} + STATE_STARTING : int
{static} + STATE_RUNNING : int
{static} + STATE_STOPPING : int
{static} + STATE_STOPPED : int
- day : AtomicInteger
- state : int
{static} - yearLength : int
{static} - periodLength : int
+ tick()
+ getDay()
+ getYearProgress()
- grassTick()
+ getAnimalManager()
+ getCoordinateInfo()
+ getWorldMap()
+ setWorldMap()
- addGrass()
- getGrassMultiplier()
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
class Settings {
{static} + SIGMA_COEFFICIENT : double
{static} + NETWORK_DEPTH : int
{static} + VISION_POINTS_PER_TYPE : int
{static} + VISION_TYPES : int
{static} + VISION_POINTS : int
{static} + MUTATION_RATE : Double
{static} + WOLF_SPAWN_RATE : double
{static} + HARE_SPAWN_RATE : double
{static} + GRASS_SPAWN_RATE : double
{static} + GRASS_SPREAD_RATE : double
{static} + GRASS_GROW_RATE : double
{static} + GRASS_SHRINK_RATE : double
{static} + WOLF_SIGHT : int
{static} + WOLF_FULL_SATIETY : int
{static} + WOLF_FULL_HP : int
{static} + WOLF_INIT_SATIETY : int
{static} + WOLF_INIT_HP : int
{static} + HARE_SIGHT : int
{static} + HARE_FULL_SATIETY : int
{static} + HARE_FULL_HP : int
{static} + HARE_INIT_SATIETY : int
{static} + HARE_INIT_HP : int
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
class Worker {
{static} - w : Worker
- daemonWorker : ExecutorService
{static} + getWorker()
+ submit()
+ submit()
}
}
}
AnimalManager o-- WorldMap : worldMap
CoordinateInfo o-- Coordinate : coordinate
CoordinateInfo o-- Cell : cell
Game o-- WorldMap : worldMap
Game o-- AnimalManager : animalManager
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 |
932fc7cb07b741e11d336b13864942f1c592ac26 | eaffff63c2b45bcc99cffa6d87bd9d2940ad648a | /src/main/java/com/nanyin/pattern/v2/factory/methodFactory/simpleFactory.puml | 6ad579ace3c4abc5f5efb841e5e99c542fe1f13b | [] | no_license | welnercruisen/design-patterns | ef1d2d186118200e45fdab0029578b3887efab30 | c3ddc86098d22660ed2b34f5bf8e9df557b8f616 | refs/heads/master | 2023-03-19T15:28:50.536812 | 2020-10-07T04:38:45 | 2020-10-07T04:38:45 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 370 | puml | @startuml
interface Weapon <<interface>>{
attack() : void
}
class Axe <<class>>{
attack() : void
}
class EnchantedAxe <<class>>{
attack() : void
}
interface WeaponFactory <<interface>>{
build() : Weapon
}
class AxeFactory <<class>>{
build() : Weapon
}
Weapon <|.. Axe
Axe <|-- EnchantedAxe
WeaponFactory <|.. AxeFactory
Axe <.. AxeFactory
@enduml
| false | true | false | false | class |
4ff02c3bd57fef3777066d96289aacc582d5d030 | 6483289261f01bee2e885f91644858845fe20734 | /src/main/java/oop/assignment3/ex44/assignment3_ex44_diagram.puml | 37ef4cf2d5ea9855ce2f2d41cd1c51138d806b05 | [] | no_license | savosburn/osburn-cop3330-assignment3 | 3fc0ddc063c7016e4778d531602d85840153a238 | 1493287005fa9473b17733e1102da43e505331e6 | refs/heads/master | 2023-06-01T14:11:18.097116 | 2021-06-20T23:38:00 | 2021-06-20T23:38:00 | 377,905,760 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 352 | puml | @startuml
class App{
App myApp
JSONParser jParser
String outcome
String product name
+ productName()
}
class JSONParser{
+ jsonReader(productName)
- getProductPrice(productJsonObject)
- getProductQuantity(productJsonObject)
- ifEqual(productName, productJsonObject)
+ notEqual()
}
App <|-- JSONParser
@enduml | false | true | false | false | class |
6c39897edd18df8e615db09ae77e2721a75433c9 | 3495a3bc8450a240a21780fb8c795c215f88000a | /docs/UC7 - Do Payment Automatically/UC7_SD_DoPayment.puml | 76359d710a2c5a6ad6c2852f5fd1585a99af9ae8 | [] | no_license | 1190452/LAPR2 | f27ac4e485b91d04189dd0a37551bc108c070b12 | 97c5488c091243cf65f9e16821f56a5020e0ae2e | refs/heads/master | 2023-05-09T02:35:50.850483 | 2020-06-14T21:07:59 | 2020-06-14T21:07:59 | 372,570,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,654 | puml | @startuml
autonumber
participant "task\n:DoPaymentTask" as TASK
participant "ApplicationPOT" as _APP
participant "app\n:ApplicationPOT" as APP
participant "Platform" as P
participant "rFree\n:RegisterFreelancer" as RF
participant "lf\n:List<Freelancer>" as LF
participant "org\n:Organization" as O
participant "lt\n:List<Task>" as LT
participant "ts :Task" as T
participant "amountsET\n: List<Task>" as LTS
participant "freel\n:Freelancer" as F
participant "rt\n:RegisterTransaction" as RT
participant "ltr\n:List<TransactionExecution>" as LTR
participant "tr\n:TransactionExecution" as TR
participant "p\n:Payment" as PA
participant "nltr\nList<TransactionExecution>" as NLTR
participant "CurrencyConverter" as CC
participant "Writer" as W
[o-> TASK : DoPayment()
activate TASK
TASK -> _APP : app = getInstance()
activate _APP
deactivate _APP
TASK -> APP : plt = getPlatform()
activate APP
deactivate APP
TASK -> P : rFree = getRegisterFreelancer()
activate P
deactivate P
TASK -> RF : lf = getFreelancerList()
activate RF
deactivate RF
TASK -> O : lt = getTaskList()
activate O
deactivate O
TASK --> LTS** : create()
loop [for every task]
TASK -> LT : ts = get(j)
activate LT
deactivate LT
TASK -> T : verifier = isIsFinished()
activate T
deactivate T
TASK -> T : verifier2 = isIsPayed()
activate T
deactivate T
opt [if verifier == true && verifier2 == false]
TASK -> LTS : addAmountsET(ts)
activate LTS
deactivate LTS
end opt
end loop
TASK -> O : rt = getRTrans()
activate O
deactivate O
TASK -> RT : ltr = getTransactions()
activate RT
deactivate RT
TASK --> NLTR** : create()
loop [for every Freelancer]
TASK -> NLTR : removeAll()
activate NLTR
deactivate NLTR
TASK -> LF : freel = getFreelancer(i)
activate LF
deactivate LF
loop [for every task not payed]
TASK -> LTS : ts = get(j)
activate LTS
deactivate LTS
loop [for every transaction]
TASK -> LTR : tr = get(k)
activate LTR
deactivate LTR
TASK -> TR : f = getFreelancer()
activate TR
deactivate TR
TASK -> TR : cts = getTask()
activate TR
deactivate TR
opt [if ts == cts && freel == f]
TASK -> NLTR : addNltr(tr)
activate NLTR
deactivate NLTR
TASK -> TR : p = getPayment()
activate TR
deactivate TR
TASK -> PA : value = getValueE()
activate PA
deactivate PA
TASK -> TASK : sum = addThisValue(value)
end opt
end loop
end loop
opt [if sum != 0]
TASK -> F : country = getCountry()
activate F
deactivate F
TASK -> CC : curr = convertToCurrency(sum, country)
activate CC
deactivate CC
TASK -> W : writeOrg(org, sum)
activate W
deactivate W
TASK -> W : generateReceipt(nltr, sum, curr)
activate W
deactivate W
end opt
end loop
deactivate TASK
@enduml | false | true | false | false | sequence |
bf19208d038210390675612cfeafa6ef73cccb5d | 70075e63dae20a56540fceb30bd2c0f5d15e2428 | /doc/DI.puml | f79646f695bf6aedc1739e65bf7410a0bc94ba8d | [
"Apache-2.0"
] | permissive | TNG/mustard-cli | a280d0765b178b59bfede6e0652e2ce6413f4a3a | 69d7f1a8193543602d4b549871b2b6157faaaf6d | refs/heads/release | 2023-08-15T07:46:12.354230 | 2022-05-06T10:00:01 | 2022-05-06T10:00:01 | 180,951,062 | 12 | 1 | Apache-2.0 | 2020-07-21T07:04:10 | 2019-04-12T07:08:50 | C++ | UTF-8 | PlantUML | false | false | 1,876 | puml | @startuml
package workflow {
rectangle InfoWorkflow
rectangle AutoconfWorkflow
rectangle StopReviewWorkflow
rectangle StartReviewWorkflow
}
package comments {
rectangle CommentExtractor
rectangle CommentExtractorImpl
rectangle LineClassifier
}
package bitbucket {
rectangle BitBucketConfigGuesser
rectangle BitBucketConfiguration
rectangle BitBucketClient
rectangle BitBucketClientImpl
}
component infra{
package git{
rectangle GitClient
rectangle GitClientImpl
rectangle GitClientException
}
package system {
rectangle CommandRunner
rectangle HttpClient
rectangle LinuxCommandRunner
}
package authentication{
rectangle AuthenticationProviderImpl
rectangle AuthenticationProvider
}
package credentials{
rectangle LibSecretCredentialProvider
rectangle CredentialProvider
}
}
AuthenticationProviderImpl --> BitBucketConfiguration
BitBucketClientImpl --> BitBucketConfiguration
BitBucketClientImpl ---> HttpClient
BitBucketCommentUploader ---> BitBucketConfiguration
BitBucketCommentUploader ---> HttpClient
BitBucketConfigGuesser ---> GitClient
BitBucketConfiguration ---> CredentialProvider
BitBucketConfiguration ---> GitClient
CommentExtractorImpl ---> GitClient
CommentExtractorImpl ---> LineClassifier
GitClientImpl ---> CommandRunner
HttpClient ---> AuthenticationProvider
AutoconfWorkflow ---> BitBucketConfigGuesser
AutoconfWorkflow ---> GitClient
InfoWorkflow ---> BitBucketClient
InfoWorkflow ---> GitClient
StartReviewWorkflow ---> BitBucketClient
StartReviewWorkflow ---> GitClient
StopReviewWorkflow ---> BitBucketClient
StopReviewWorkflow ---> CommentExtractor
StopReviewWorkflow ---> GitClient
LinuxCommandRunner ..> CommandRunner
AuthenticationProviderImpl ..> AuthenticationProvider
LibSecretCredentialProvider ..> CredentialProvider
GitClientImpl ..> GitClient
CommentExtractorImpl ..> CommentExtractor
BitBucketClientImpl ..> BitBucketClient
@enduml | false | true | false | false | class |
d5dbc8916cf19c8a29361d5a21599d8446cc2c47 | b64428b6502c30fccc907d6d2289c2d6599917ae | /oauth-manager/doc/mix-up-attack.puml | b18712dbb390f5b0947841687d44a2e1c20748b2 | [
"Apache-2.0"
] | permissive | gilsonsf/oauth-fiware | 73f3aacf9cb8cc1beafa7b3c4571188d8cedd114 | 4f1053a2cfda63f6b2fc09fde41155fda776d937 | refs/heads/main | 2023-06-05T07:01:39.981297 | 2021-06-26T23:44:05 | 2021-06-26T23:44:05 | 353,072,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,732 | puml | @startuml
!define LIGHTBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
'diagram title'
title Ataque **Mix-Up Attack** no OAuth 2.0 Authorization Code Grant \n(Uso de //code injection// para quebrar autorização)
autonumber
legend top
Em **Mix-Up Attack** o atacante confunde um cliente sobre qual AS o usuário escolheu no início
do processo de login/autorização para adquirir o authorization_code ou o access_token.
end legend
actor "User \n**(Browser)**" as USER #LightBlue
box
participant "<color #FFFF>Attacker Authorization Server</color>\n<color #FFF>**(A-AS)**</color>" as AAS #CC0000
end box
box
participant "Client\n" as CLIENT #LightBlue
end box
box
participant "Authorization Server\n **(H-AS)**" as AS #LightBlue
participant "Resource Server\n **(H-RS)**" as RS #LightBlue
end box
'passo 1
USER -> CLIENT: **POST** www.site.com
note over of AAS #LightYellow
O ataque inicia quando o //user// seleciona o H-AS para efetuar login.
O //attacker// intercepta a solicitação para o //client// e modifica seu conteúdo: troca H-AS por A-AS
end note
'passo 2
CLIENT --> AAS: 302 Redirect para **A-AS** /authorize \npassando client_id, redirect_uri, state
note right of AAS #LightYellow
O //attacker// intercepta novamente a solicitação
modificando **redirect_uri** e **client_id** e passando
o //user// para para o H-AS
end note
'passo 3
AAS --> USER: 302 Redirect para **H-AS** /authorize \npassando client_id, redirect_uri, state
'autonumber stop
'group Variação usando um atacante web
' 'passo 1
' USER -> CLIENT: **POST** www.site.com
'
' 'passo 2
' CLIENT --> AAS: redirect
'
' 'passo 3
' AAS --> AS: redirect
'
' 'passo 4
' AAS --> AS: redirect
'
'end group
'
'autonumber 5
'passo 4
USER -> AS: **GET** /oauth2/authorize?response_type=code&\nredirect_uri=/callback&state=xyz&client_id=abc
'passo 5
AS --> USER: 302 Redirect
note over of AAS #LightYellow
H-AS utiliza **redirect_uri** para retornar ao //Client//
tela para efetuar login
end note
'passo 6
USER -> AS: **POST** /login
note right of USER #LightYellow
//User// efetua login no AS com **username, password**
end note
'passo 7
AS --> USER: 302 Redirect para o //Client// **redirect_uri + authorization_code + state**)
'passo 8
USER -> CLIENT: **GET** redirect_uri, authorization_code, state
'passo 9
CLIENT -> AAS:**POST** /oauth2/token
note left of CLIENT #LightYellow
Devido o passo 2, o //client// acredita que o **authorization_code**
foi emitido por A-AS, em vez de H-AS e tenta obter o **access_token**
no A-AS
end note
'passo 10
AAS -> CLIENT: **POST** www.site.com
note right of AAS #LightYellow
//Attacker// inicia um novo OAuth //flow// com o
//client// usando seu proprio //browser//
end note
'passo 11
CLIENT --> AAS: 302 redirect /authorize passando \nclient_id, redirect_uri, state**(new)**
note right of AAS #LightYellow
//Client// redireciona para H-AS que é ignorado
end note
'passo 12
AAS -> CLIENT: **GET** redirect_uri, authorization_code, state**(new)**
note right of AAS #LightYellow
redirecionamento do cliente usando um novo state e
o authorization_code adquirido anteriormente
end note
'passo 13
CLIENT -> AS: **POST** /oauth2/token
'passo 14
AS -> CLIENT: 200 OK **acess_token**
'passo 15
CLIENT -> RS: **GET** /resource
'passo 16
RS -> CLIENT: 200 OK //protected resource//
'passo 17
CLIENT -> AAS: 200 OK //protected resource//
@enduml
| false | true | true | false | usecase |
b27d4eb507d8d9aa3c54624cfbc7985a6824fb51 | f5b099f6ac173a229125b1fed2ade31c2ba6796a | /UML/Scene.plantuml | 10552f072374e99c83d5f1bf85a7ecb315624b2f | [] | no_license | IshmaelHeathcliff/Sallow | 1137018ffa541a0469bea61ff57274145b5b127d | b16bd1c91ba6be38bc5bee177258ac33d7dc8836 | refs/heads/master | 2022-04-03T22:06:48.218880 | 2020-01-10T07:44:47 | 2020-01-10T07:44:47 | 210,548,552 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 979 | plantuml | @startuml
interface IDataPersistable{
DataInfo:DataInfo
LoadData(Data data):void
SaveData():Data
}
class DataInfo{
DataTag:string
PersistenceType:DataPersistenceType
}
enum DataPersistenceType{
Persist
DoNotPersist
}
abstract class Data{
}
class PersistentDataManager{
+{static}Instance:PersistentDataManager
-_dataPersistables:List<IDataPersistable>
-_persistentData:Dictionary<DataTag:string,Data>
+Register(IDataPersistable persistable):void
+Unregister(IDataPersistable persistable):void
+SaveAllData():void
-SaveData(IDataPersistable persistable):void
+LoadAllData():void
+ClearPersistables():void
}
class PlayerCharacter{
+FaceDirection:Vector2
+DataInfo:DataInfo
+ArrowCount:int
+SaveData():Data
+LoadData(Data data):void
}
DataInfo +-- DataPersistenceType
DataInfo <|-- DataPersistenceType
IDataPersistable *-- DataInfo
IDataPersistable <|.. PlayerCharacter
PersistentDataManager o-- IDataPersistable
PersistentDataManager <.. Data
IDataPersistable <.. Data
@enduml | false | true | false | false | class |
8d25b71c3dd7dbf6c356671b05ebc96730911699 | 923d50fe4c2e07dcae434017ae95de9330385bfc | /application1/docs/Application.puml | ced21f8beb08261d250f383cd6cb5bafa6fdbe91 | [] | no_license | Roesnware/Roy-app1-design | 25695bddbc3672d747759f6f1e62ddd53cdeb910 | 8bc884c0f515aa5099b674e6811a3f7553aeb371 | refs/heads/main | 2023-08-25T04:47:39.353819 | 2021-10-25T03:10:06 | 2021-10-25T03:10:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 371 | puml | @startuml
'https://plantuml.com/class-diagram
class Application {
+main(args: String)
-in main:
call launch
-in start:
define parent root
give scene a title
set stage
display scene
load styles
+start(stage: Stage)
}
class MainAppController {
+initialize(url: URL, rb: ResourceBundle)
-in initialize:
declare java version and javafx version
set label object
}
@enduml | false | true | false | false | class |
025f2930aa951d2ebaa773cba4bf1d081ee7ba90 | f1043bbb871f3e3a5dd14feae76075162bf62678 | /diagramas/clases/clase_mensaje.plantuml | 5961d4a3c1f859eca05ce546a95ca28f48f23ae9 | [
"MIT"
] | permissive | diegosanchez/invap-modulo-uml | cd9e7329f3a4ff6bfbee36249ac936b50e3ed2f8 | 7ba9b07cde50a655df58de80801b48d8b47f8a06 | refs/heads/main | 2023-07-17T06:16:50.063408 | 2021-08-25T12:43:12 | 2021-08-25T12:43:12 | 396,763,438 | 1 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 114 | plantuml | @startuml
class Mensaje {
+ Mensaje()
+ ~Mensaje()
+ ConvertirA() : string
}
@enduml
| false | true | false | false | class |
3eb44690f65bd78f9e02b08d6c1a23e10dfe9d62 | 507feae29e37c4a20f7be86010ec9a2c119b52b6 | /docs/UiUML.puml | a6fdfa095508240247f2e5cd2ba2d68877b9ae48 | [] | no_license | serenakemono/tp | b6d55db4a72593e675085d06cb6a07d9389c1ed7 | 3823311f8977716ee3f9ff813024425ccf3ab846 | refs/heads/master | 2023-09-02T01:04:30.050776 | 2021-11-08T13:53:34 | 2021-11-08T13:53:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,716 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
hide footbox
->":Ui":
":Ui" -> ":Clue":getClueName()
activate ":Clue"
":Clue" --> ":Ui"
":Ui" -> "investigation:Investigation" : getStages()
activate "investigation:Investigation"
"investigation:Investigation" --> ":Ui"
"investigation:Investigation" -> "investigation:Investigation":getStage()
":Ui" -> "sceneList:SceneList":getCurrentSceneIndex()
activate "sceneList:SceneList"
"sceneList:SceneList" --> ":Ui"
":Ui" -> "sceneList:SceneList":getCurrentScene()
"sceneList:SceneList" --> ":Ui"
":Ui" -> "investigation:Investigation":getCurrentSceneType()
"investigation:Investigation" --> ":Ui"
deactivate "investigation:Investigation"
":Ui" -> "sceneList:SceneList":getCurrentSceneType()
"sceneList:SceneList"-->":Ui"
deactivate "sceneList:SceneList"
":Ui" -> ":Scene":investigateSuspect(suspectName)
activate ":Scene"
":Scene"-> ":Suspect":getClues()
activate ":Suspect"
":Suspect"-->":Scene"
deactivate ":Suspect"
":Ui" -> ":Note": getNoteTitle()
activate ":Note"
":Note"--> ":Ui"
":Ui"-> ":Note": getNoteContent()
":Note" --> ":Ui"
":Ui" -> "notes:NoteList":getIndexNote()
activate "notes:NoteList"
"notes:NoteList" ->":Note": getNoteTitle()
":Note" --> "notes:NoteList"
":Ui" -> "notes:NoteList":getIndexNote()
"notes:NoteList" --> ":Ui"
deactivate ":Note"
deactivate "notes:NoteList"
":Ui"-> SuspectList:toString()
activate SuspectList
":Ui" -> SuspectList:printSuspects(suspects)
SuspectList --> SuspectList:toString()
deactivate SuspectList
":Ui" --> Scene:printAllSuspectInCurrentScene(scene)
Scene --> Scene: toString()
deactivate Scene
":Ui" --> ":Clue":printSelectedClue(scene)
":Clue" --> ":Clue": toString()
deactivate ":Clue"
@enduml | false | true | false | false | sequence |
a65dd89f059d9fbd2d16fd08c4e19993ed956ead | dd3daa8aef55201585aad5cdd02b2f8f68418d80 | /uml/LocalList.puml | 65770307b8473f6c9f6d7fde788705a6f74b89a3 | [] | no_license | rodriguezA3/Rodriguez-cop3330-assignment4 | a5e42305365dd594f7e625b450dd7125f2b6cd38 | 6f4fddae7131559012bb04c3ba9ffd2be11056eb | refs/heads/master | 2023-08-27T03:54:40.163580 | 2021-11-02T03:49:41 | 2021-11-02T03:49:41 | 423,698,699 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 101 | puml | @startuml
class LocalList{
+String listName
+String listDescription
+ListView()
}
@enduml | false | true | false | false | class |
76001e478c02f226a70ecac8c9f0515ab539c46b | b27b1c82ff4783149041cd7a81d372f3be98746b | /subsystem_user.puml | c0c45b449e830057fddebb3c95cf0486da80f5d7 | [] | no_license | Huy-Ngo/reddit-design | b9c25f4c79a5bb69507820432a1cda7f3c7c1015 | b91146dc29ae29d9dffe511a8a56c8d8aef3e19d | refs/heads/master | 2022-12-30T09:05:53.794370 | 2020-10-23T03:10:03 | 2020-10-23T03:10:03 | 297,368,530 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 502 | puml | @startuml
class UserController <<subsystem>> {
// block user()
// unblock user()
}
class IUser <<interface>> {
blockUser(blockedUser: User, user: User)
unblockUser(unblockedUser: User, user: User)
}
class UserProxy <<subsystem proxy>> {
blockUser(blockedUser: User, user: User)
unblockUser(unblockedUser: User, user: User)
}
class User <<entity>>
UserController "0..1" --> "0..1" IUser : block other users via
IUser <|- UserProxy
IUser --> User
UserProxy --> User
@enduml
| false | true | false | false | sequence |
a60cf8df5cedd53fcd0339423e74d47240bb9b9a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerAddAddressAction.puml | 4ef1266d3271b6380bd08c3b6d46c6a2424971d6 | [] | 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 | 471 | 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 CustomerAddAddressAction [[CustomerAddAddressAction.svg]] extends CustomerUpdateAction {
action: String
address: [[BaseAddress.svg BaseAddress]]
}
interface CustomerUpdateAction [[CustomerUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
2c5be2d9e708f81fb801a8e55e17872928965ddc | 286c7b7dd9bd48c73fd94f8e89bde99a8d3f74c5 | /modelscript/tools/plantuml/sandbox/examples/CyberResidences2.puml | 38c052c0997767e0ba14dbe20080fa3eced36251 | [
"MIT"
] | permissive | ScribesZone/ModelScript | e7738471eff24a74ee59ec88d8b66a81aae16cdc | a36be1047283f2e470dc2dd4353f2a714377bb7d | refs/heads/master | 2023-03-18T02:43:57.953318 | 2021-03-08T15:26:40 | 2021-03-08T15:26:40 | 31,960,218 | 1 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,733 | puml | @startuml
enum Category {
economy
standard
premium
prestige
}
enum Gender {
male
female
}
package buildings <<Folder>> #EEDDEE {
class Residence [[http://something.org/Residence{tooltoip for Residence}]]
class Residence {
{field} name : String
{field} floorMin : Integer
{field} floorMax : Integer
{field} category : Category
{field} maxNbOfFreeUnits : Integer
{field} avgRate : Real
--
{method} bedrooms():Set(Bedroom) =
{method} usefulBedrooms():Set(Bedroom) =
{method} bathrooms():Set(Bathroom) =
--
inv floorOrder
}
class Room [[http://something.org/Room{tooltoip for Room}]]
class Room {
{field} number : Integer
{field} floor : Integer
{field} isOutOfOrder : Boolean
--
}
class Bathroom [[http://something.org/Bathroom{tooltoip for Bathroom}]]
class Bathroom {
{field} isOnTheLanding : Boolean
--
}
Room <|-- Bathroom
class Bedroom [[http://something.org/Bedroom{tooltoip for Bedroom}]]
class Bedroom {
{field} nbOfSingleBeds : Integer
{field} nbOfDoubleBeds : Integer
{field} rate : Real
{field} isNonSmoking : Boolean
{field} nbOfUnits : Integer
--
}
Room <|-- Bedroom
}
package occupation <<Folder>> #EEDDEE {
class Person [[http://something.org/Person{tooltoip for Person}]]
class Person {
{field} name : String
{field} age : Integer
{field} gender : Gender
--
}
class Resident [[http://something.org/Resident{tooltoip for Resident}]]
class Resident {
{field} isSmoker : Boolean
--
}
Person <|-- Resident
class Tenant [[http://something.org/Tenant{tooltoip for Tenant}]]
class Tenant {
{field} paidRate : Real
--
}
Resident <|-- Tenant
}
package economy <<Folder>> #EEDDEE {
class Discount [[http://something.org/Discount{tooltoip for Discount}]]
class Discount {
{field} percentage : Integer
{field} label : String
--
}
Residence *-- Room : ContainsRooms[[http://something{"1..1 residence" -- ContainsRooms -- "0..* rooms"}.]]
Bathroom - Bedroom : IsInBedroom[[http://something{"0..3 bathrooms" -- IsInBedroom -- "0..1 bedroom"}.]]
Resident - Resident : IsTutoredBy[[http://something{"0..* tutored" -- IsTutoredBy -- "0..2 tutors"}.]]
Resident - Resident : IsMarriedWith[[http://something{"0..1 resident" -- IsMarriedWith -- "0..1 consort"}.]]
Bedroom - Resident : IsOccupiedBy[[http://something{"1..1 occupiedRoom" -- IsOccupiedBy -- "0..* occupants"}.]]
Rent *-- Discount : HasDiscounts[[http://something{"1..1 rent" -- HasDiscounts -- "0..* discounts"}.]]
Bedroom - Tenant : Rent[[http://something{"1..* rentedBedrooms" -- Rent -- "0..1 tenant"}.]]
class Rent [[http://something.org/Rent{tooltoip for Rent}]]
class Rent {
{field} discount : Real
{field} rate : Real
--
}
( Bedroom, Tenant) .. Rent
}
@enduml | false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.