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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bcf26f27a823da6e4c32c6e8fe909ddaf40e3b77
|
aedec23132eabce8e05ee4a0c773b86b470ab0f1
|
/Diagrams/SequenceDiagrams/seq-callback-add-3.1.0.plantuml
|
8606f4f41153ef2f571c0ad855684c9db1fa8a3c
|
[
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] |
permissive
|
arfintechpy/docs
|
465ef01f8bcf8201c7dd36033a4970886e40d09a
|
305a593be2ecd3f470dd6e199ef5656a2c746355
|
refs/heads/master
| 2020-04-20T22:03:45.265174
| 2019-02-01T08:00:32
| 2019-02-01T08:00:32
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 4,222
|
plantuml
|
@startuml
' declate title
title 3.1.0 Add Participant Callback Details
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
actor "HUB OPERATOR" as OPERATOR
boundary "Central Service API" as CSAPI
control "Participant Handler" as PARTICIPANT_HANDLER
entity "Central Service API" as CSAPI
entity "Participant DAO" as PARTICIPANT_DAO
database "Central Store" as DB
box "Central Services" #LightYellow
participant CSAPI
participant PARTICIPANT_HANDLER
participant PARTICIPANT_DAO
participant DB
end box
' start flow
activate OPERATOR
group Add Callback Details
OPERATOR -> CSAPI: Request to add callback details - POST - /paticipants/{name}/endpoints
note right of OPERATOR #yellow
Message:
{
payload: {
endpoint: {
type: <typeValue>,
value: <endpointValue>
}
}
}
end note
activate CSAPI
CSAPI -> PARTICIPANT_HANDLER: Add Callback details for Participant
activate PARTICIPANT_HANDLER
PARTICIPANT_HANDLER ->PARTICIPANT_DAO: Fetch Participant \n<color #FF0000><b>Error code:</b> 3200</color>
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Fetch Participant
activate DB
hnote over DB #lightyellow
participant
end note
DB --> PARTICIPANT_DAO: Retrieved Participant
deactivate DB
PARTICIPANT_DAO --> PARTICIPANT_HANDLER: Return Participant
deactivate PARTICIPANT_DAO
PARTICIPANT_HANDLER ->PARTICIPANT_HANDLER: Validate DFSP
alt Validate participant (success)
PARTICIPANT_HANDLER ->PARTICIPANT_DAO: Add Callback details for Participant \n<color #FF0000><b>Error code:</b> 2003/<b>Msg:</b> Service unavailable </color> \n<color #FF0000><b>Error code:</b> 2001/<b>Msg:</b> Internal Server Error </color>
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Persist Participant Endpoint
activate DB
hnote over DB #lightyellow
participantEndpoint
end note
deactivate DB
note right of PARTICIPANT_DAO #lightgrey
If (endpoint exists && isActive = 1)
oldEndpoint.isActive = 0
insert endpoint
Else
insert endpoint
End
end note
PARTICIPANT_DAO --> PARTICIPANT_HANDLER: Return status
deactivate PARTICIPANT_DAO
PARTICIPANT_HANDLER -> PARTICIPANT_HANDLER: Validate status
alt Validate status (success)
PARTICIPANT_HANDLER -->CSAPI: Return Status Code 201
deactivate PARTICIPANT_HANDLER
CSAPI -->OPERATOR: Return Status Code 201
else Validate status (failure) / Error
note right of PARTICIPANT_HANDLER #red: Error!
activate PARTICIPANT_HANDLER
note right of PARTICIPANT_HANDLER #yellow
Message:
{
"errorInformation": {
"errorCode": <Error Code>,
"errorDescription": <Msg>,
}
}
end note
PARTICIPANT_HANDLER -->CSAPI: Return <color #FF0000><b>Error code</b></color>
' deactivate PARTICIPANT_HANDLER
CSAPI -->OPERATOR: Return <color #FF0000><b>Error code</b></color>
end
else Validate participant (failure)
note right of PARTICIPANT_HANDLER #red: Validation failure!
activate PARTICIPANT_HANDLER
note right of PARTICIPANT_HANDLER #yellow
Message:
{
"errorInformation": {
"errorCode": 3200,
"errorDescription": "FSP id Not Found",
}
}
end note
PARTICIPANT_HANDLER -->CSAPI: Return <color #FF0000><b>Error code:</b> 3200</color>
deactivate PARTICIPANT_HANDLER
CSAPI -->OPERATOR: Return <color #FF0000><b>Error code:</b> 3200</color>
end
deactivate CSAPI
deactivate OPERATOR
end
@enduml
| false
| true
| false
| false
|
usecase
|
ae676588371a4c7fc3860c342aa51c161cfe8bd1
|
4b81e72878f40b705ac32cf8e136311dc4dc3699
|
/app/src/main/java/sud_tanj/com/icare/Backend/Analysis/Analysis.plantuml
|
63a8f5f24996d64f2eacbb199ff6bb426ba63b53
|
[] |
no_license
|
sudtanj/iCare-PHR
|
826f6e1ffa0b4217ed128a36386a7494e22c521e
|
2d334a5dd7854b8cc204dd8adbe9f74d86c7d694
|
refs/heads/master
| 2020-03-23T04:46:07.948787
| 2019-12-22T03:22:09
| 2019-12-22T03:22:09
| 141,104,375
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,157
|
plantuml
|
@startuml
title __ANALYSIS's Class Diagram__\n
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
package sud_tanj.com.icare.Backend.Analysis {
interface AnalysisListener {
{abstract} + onAnalysisDone()
}
}
}
}
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
package sud_tanj.com.icare.Backend.Analysis {
abstract class BaseAnalysis {
{static} + EXCELLENT_CONDITION : int
{static} + GOOD_CONDITION : int
{static} + BAD_CONDITION : int
{static} + WORSE_CONDITION : int
{static} # baseAnalysisList : List<BaseAnalysis>
# analysisListeners : List<AnalysisListener>
+ BaseAnalysis()
# onEventListenerFired()
+ onDispose()
{static} + getBaseAnalysisList()
}
}
}
}
BaseAnalysis -up-|> BaseAbstractComponent
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
|
a5a6811151a6149657987a5123c3daf4c0e70ad5
|
9f0dd7cfce0550509c9c33202513d8ef01b3af72
|
/DOCS/api/register-entity.plantuml
|
aa821f0058bd76717fceb9ee5a23f620a9ef5898
|
[
"ISC"
] |
permissive
|
rbccps-iisc/corinthian
|
3e7af772b52c6e703e39b4c3f27f55ab45ec4071
|
265bec8a7f7d2198d31ebfbd79bc160aec00c4fd
|
refs/heads/master
| 2021-07-11T14:22:03.033543
| 2019-03-05T06:25:36
| 2019-03-05T06:25:36
| 150,595,407
| 6
| 5
|
NOASSERTION
| 2019-02-01T13:49:46
| 2018-09-27T13:57:34
|
CSS
|
UTF-8
|
PlantUML
| false
| false
| 324
|
plantuml
|
actor owner
hide footbox
...
group HTTPS POST /owner/register-entity
owner -> IUDX: **id**: string\r**apikey**: string\r**entity**: string\r (optional) **is-autonomous**: string
end
create entity entity
IUDX -> entity : new account
group 201 CREATED
IUDX -> owner: {"**id**": string, "**apikey**": string}
end
@enduml
| false
| true
| false
| false
|
usecase
|
0fd56b2c07dce2e7b464e7ea588b98a81a56bab7
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/MyQuoteRequestCancelAction.puml
|
1a218f81df1331a6503012349109c8bf081655d8
|
[] |
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
| 448
|
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 MyQuoteRequestCancelAction [[MyQuoteRequestCancelAction.svg]] extends MyQuoteRequestUpdateAction {
action: String
}
interface MyQuoteRequestUpdateAction [[MyQuoteRequestUpdateAction.svg]] {
action: String
}
@enduml
| false
| true
| false
| false
|
class
|
0f31d67e99e4ed48a9f0040a160912ab3b662422
|
53fdc0d90c42c793bbc68772262034f645f71f09
|
/src/main/java/cupcakeuml/cupcake_state.puml
|
a221f286a2a17ef731834d1fb7f0243a7a4fbd36
|
[] |
no_license
|
Pelle-pr/CupCakeProject
|
f6fd124a2e5acf599be732f0c6dd15195a15854e
|
8a3b1b27b2c1eb30980492216c2733ea696932d8
|
refs/heads/master
| 2022-06-24T00:13:06.050002
| 2020-03-30T20:01:51
| 2020-03-30T20:01:51
| 247,090,442
| 0
| 0
| null | 2022-06-21T02:59:04
| 2020-03-13T14:28:49
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 865
|
puml
|
@startuml
Title Cupcake State
state index.jsp
state "Error Login" as error
note top of customerpage.jsp
Username and role
stored in session
end note
[*] -> index.jsp
index.jsp --> customerpage.jsp : ok
index.jsp --> adminpage.jsp : ok
index.jsp --> error : user and pw not ok
error --> index.jsp : try again
state customerpage.jsp {
state basket.jsp
state myorders.jsp
note bottom of basket.jsp
Session stored items in basket
end note
note bottom of myorders.jsp
Retrieving orders stored in DB
end note
[*] --> basket.jsp
[*] --> myorders.jsp
customerpage.jsp -left-> index.jsp : logout
}
state adminpage.jsp {
state orderpage.jsp
state userpage.jsp
note bottom of orderpage.jsp
All orders stored in DB
end note
note bottom of userpage.jsp
All users stored in DB
end note
[*] --> orderpage.jsp
[*] --> userpage.jsp
adminpage.jsp --> index.jsp : logout
}
@enduml
| false
| true
| false
| false
|
sequence
|
e2094e5cf1719b37ee43efb118bdac5ae18e14d6
|
5dae7c3097624dac7d3ef75feb19633a34af4c6b
|
/src/components/ComponentExample.puml
|
48b9f8cbbfc3d39828818b1e3625bc7e74febf67
|
[] |
no_license
|
Cavitedev/plantuml_examples
|
497a94db406367cc3a017a23d00170f7d90207fa
|
f3e8a1dadb6e1c69f2624808729a10bbdd48ca2e
|
refs/heads/master
| 2023-02-03T09:40:36.156097
| 2020-12-17T20:30:03
| 2020-12-17T20:30:03
| 318,535,441
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 257
|
puml
|
@startuml
OrderEntry -# gr
Component "Some [[file:///C:/ab]] Group" as gr {
HTTP -# [First Component]
HTTP .right-> [First Component]
[Another Component] -( HTTP
}
package "Other Groups" {
FTP - [Second Component]
[First Component] --( FTP
}
@enduml
| false
| true
| false
| false
|
component
|
3a4d169de39b10353d5a66d665b6aa6576d2a38b
|
98e5bab0485401877317881181770e28c4251f80
|
/object-value-web/target/classes/activities_simple.puml
|
5d699fac522e8b9246978a1f792e639b25c316b3
|
[] |
no_license
|
bobmin/OVSRV
|
d672b745a8fc3cac0b126cbf009b1f17f05375da
|
6f43db38ddf3b78503cb1b252600306129d89b4d
|
refs/heads/master
| 2020-04-04T13:43:35.711273
| 2018-11-03T10:44:56
| 2018-11-03T10:44:56
| 155,972,882
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 360
|
puml
|
@startuml
'Breite x Höhe
'page 2x1
'left to right direction
(*) --> "Einträge auflisten" as objlist
if "Bearbeitung?" then
-->[nein] "Neuanlage anbieten"
--> ===B1===
else
--> "Bearbeitung anbieten"
--> ===B1===
endif
===B1=== --> if "Abbruch?"
-->[nein] "Daten anlegen/speichern" as objsave
else
--> objlist
endif
objsave --> (*)
@enduml
| false
| true
| true
| false
|
activity
|
55096dd59b683b04994cad6c54ec3a2c9364cce8
|
973dcef38fb285cf4f14a2e937af23e26a05564b
|
/docs/UseCases/Manage-Pipeline/Modify-Pipeline.puml
|
8dfd1876f160e781c098825c7dc2c75f9941b644
|
[] |
no_license
|
CAADE/CAADE
|
6a0d37b31e77fd00eeb1ad056d17d484585cad96
|
3873453a14359879a146f1d5897554ae2e94bd96
|
refs/heads/master
| 2021-06-09T05:28:17.894441
| 2019-06-07T06:08:10
| 2019-06-07T06:08:10
| 104,078,969
| 1
| 0
| null | 2020-08-20T15:13:40
| 2017-09-19T13:32:11
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 277
|
puml
|
@startuml
Actor "actorName" as A
box "Manage-Pipeline" #lightblue
participant CLI as CLI
participant Web as Web
participant "caade" as S
A -> CLI : caade-pipeline-modify()
CLI -> S : pipeline/modify()
A -> Web : pipeline/modify()
Web -> S : pipeline/modify()
end box
@enduml
| false
| true
| false
| false
|
sequence
|
00f2ceaf51f91876cdc66f1b78807ef2d7a8b4a6
|
636d88cc43ec1ba57c3699ed58d0cec51a1a3084
|
/UML/use_case/Student_Use_Case.puml
|
5f77c3d8526bbd87377ce6f2cedf3b8127f6d53c
|
[] |
no_license
|
ahmedAlraimi/Tasarim
|
088944d13cbdaeea4e0537f7035b1e7ad618c91c
|
c5a1ee24b3c57561cca80fd7a6e81359bde5b040
|
refs/heads/master
| 2020-04-26T15:33:28.741752
| 2019-07-10T13:09:39
| 2019-07-10T13:09:39
| 173,650,584
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 808
|
puml
|
@startuml
left to right direction
skinparam packageStyle rectangle
/'Actors'/
actor Alumni_Student
rectangle Alumni_website {
/'Use Cases'/
(Log In)
(Registration)
(Alumni List)
(Preview Events)
(Verify Password)
(Reset Password)
(Verify Membership)
(Brief Info)
(Like/Comment On Events)
(Search Events)
/'Include Relationships'/
(Verify Membership) <. (Registration) : <<include>>
(Log In) .> (Verify Password) : <<include>>
/'Extend Relationships'/
(Reset Password) .> (Log In) : <<extend>>
(Brief Info) .> (Alumni List) : <<extend>>
(Like/Comment On Events) .> (Preview Events) : <<extend>>
(Preview Events) <. (Search Events) : <<extend>>
/'Association'/
Alumni_Student -- (Log In)
Alumni_Student -- (Registration)
Alumni_Student -- (Alumni List)
Alumni_Student -- (Preview Events)
}
@enduml
| false
| true
| false
| false
|
usecase
|
25822288233660aea637e3e5263fba775e8d0139
|
d2995d168000ca575a61b87932d56d763d0b6cc0
|
/docs/sequence/track/get_track.puml
|
f4a7e7a6e808f9a61c5ea1283c38d97be16b76f6
|
[] |
no_license
|
USRUN/server
|
2314b63edb6102f7bcad2c5bc22045b9bfffa87b
|
4c0782bd784f8ddd69f187e339140480126774ec
|
refs/heads/master
| 2021-07-17T08:42:21.917421
| 2020-05-31T15:18:40
| 2020-05-31T15:18:40
| 214,404,169
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 849
|
puml
|
@startuml
activate Client
Client -> TrackController: getTrack(trackId)
activate TrackController
TrackController -> TrackService: getTrack(userId, trackId)
activate TrackService
TrackService -> TrackRepository: findById(trackId)
activate TrackRepository
deactivate TrackRepository
alt track == null
TrackService --> TrackController: return error(TRACK_NOT_FOUND)
else
alt track.userId == userId
TrackService -> PointRepository: findAllByTrackId(trackId)
activate PointRepository
deactivate PointRepository
TrackService --> TrackController: return (track, points)
else
TrackService --> TrackController: return error(TRACK_NOT_BELONG_TO_USER)
end
end
deactivate TrackService
TrackController --> Client: return response(track, points)
deactivate TrackController
deactivate Client
@enduml
| false
| true
| false
| false
|
sequence
|
612713e5171a10d6283262502bd97d904fd3a020
|
7dcfa9af72c8ffdd27dbca9f6360284202a1925a
|
/UMLDiagrams/UsecaseDiagram_Admin.puml
|
97f8d6b5a30122960a9f8d3bb9b1a63afa6021d3
|
[] |
no_license
|
git-gmali/C3_Project_Gajendra
|
d484093068b86ef49d118bbedc9c67681e7a314c
|
c7007a23971fa95671acaba4720609b398e9eedf
|
refs/heads/master
| 2023-04-18T08:35:37.639043
| 2021-05-05T10:09:38
| 2021-05-05T10:09:38
| 363,996,493
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,124
|
puml
|
@startuml
title Restaurent Finder Use case Diagram
skinparam actorStyle awesome
left to right direction
actor "Admin" as au
rectangle RestaurentFinder {
rectangle RestaurentOnboard{
usecase "Authorize restaurent" as authRest
usecase "Remove restaurent" as rmvRest
}
rectangle Analytics{
usecase "View analytics" as vwAnalytics
usecase "Generate analytics reports" as analyticReport
usecase "Generate report in pdf" as reportPdf
usecase "Generate report in excel" as reportExcel
usecase "Generate fixed periodic reports" as reportPeriod
usecase "Generate reports on demand" as reportOndemand
}
}
reportPdf -down-|> analyticReport
reportExcel -down-|> analyticReport
reportPeriod -down-|> analyticReport
reportOndemand -down-|> analyticReport
au -- authRest
au -- rmvRest
au -- vwAnalytics
au ---- analyticReport
(analyticReport) ..> (vwAnalytics) : <<extend>>
(reportPdf) ..> (analyticReport) : <<extend>>
(reportExcel) ..> (analyticReport) : <<extend>>
(reportPeriod) ..> (analyticReport) : <<extend>>
(reportOndemand) ..> (analyticReport) : <<extend>>
@enduml
| false
| true
| false
| false
|
usecase
|
786156ed1e04972d222661b9f3c5b88a05f839fa
|
6ee5cc3fc08bbfefeef5d8d7e89f91cea7a95ae6
|
/doc/system_plan/diagrams/seq_search.puml
|
136b21e6d95aa5664bfa38e56b220f693848c66b
|
[] |
no_license
|
realmoriss/grumpy-free-jaguars
|
71f74e47f22ddd11bf414bba1d3de838218cc6c9
|
e3a2901a0840508c3c426f46efdaad5179c6df83
|
refs/heads/master
| 2023-01-22T09:05:06.067749
| 2020-11-29T22:13:24
| 2020-11-29T22:13:24
| 304,857,097
| 0
| 0
| null | 2020-11-29T21:54:25
| 2020-10-17T10:56:40
|
C++
|
UTF-8
|
PlantUML
| false
| false
| 564
|
puml
|
@startuml
actor "User Agent" as user_agent
boundary "Search Content API" as api_search
database "Content database" as db_content
user_agent --> api_search : Search request (HTTP GET),\ncontains a single string to be searched for in the content db.
activate api_search
api_search -> db_content : Run search query (prepared statement).
activate db_content
api_search <- db_content : Return result of query
deactivate db_content
user_agent <-- api_search: Return HTTP 200 OK,\nbody contains search results in a structured format.
deactivate api_search
@enduml
| false
| true
| false
| false
|
usecase
|
779ce3244566fc0ff0487d7dad21f43e52be52c7
|
068579f9ad18a1368961dc3b9f812129f4f7e858
|
/DesignPattern/Mediator/premediator/uml/class_diagram.puml
|
0c732370201347598b6aa02e2eba6d66a69fc922
|
[] |
no_license
|
AleMidolo/materiale-tutorato-ids
|
d9c27a9d0da9436842144a7cc8bd6d381f6e3546
|
3d95de651214245b113c92481007ec177ce95471
|
refs/heads/master
| 2023-03-30T22:05:39.627666
| 2021-04-01T13:53:07
| 2021-04-01T13:53:07
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,051
|
puml
|
' Documentazione: https://plantuml.com/class-diagram
@startuml
' START STYLE
skinparam {
monochrome true
'shadowing false
classBackgroundColor white
noteBackgroundColor white
classAttributeIconSize 0
linetype ortho
}
hide circle
' END STYLE
interface Device {
'+ setSmartTv(tv: Device)
'+ setGameStation(gs: Device)
'+ setCronCast(cc: Device)
+ turnOn()
+ turnOff()
+ isOn(): boolean
}
class SmartTv implements Device {
- isOn: boolean
+ turnOn()
+ turnOff()
}
note left of SmartTv::turnOff()
gs.turnOff();
cc.turnOff();
isOn = true;
end note
class GameStation implements Device {
- isOn: boolean
+ turnOn()
+ turnOff()
}
note left of GameStation::turnOn()
cc.turnOff();
tv.turnOn();
isOn = true;
end note
class CronCast implements Device {
- isOn: boolean
+ turnOn()
+ turnOff()
}
note left of CronCast::turnOn()
gs.turnOff();
tv.turnOn();
isOn = true;
end note
SmartTv --> GameStation
SmartTv --> CronCast
CronCast --> GameStation
CronCast --> SmartTv
GameStation --> CronCast
GameStation --> SmartTv
@enduml
| false
| true
| false
| false
|
class
|
a81c33ce299d5a15d73d9a75f5196903b484270f
|
052731385890474c5b8e4c56716cd6ec8dda45b0
|
/services/matching/docs/sequence_find-match.puml
|
06791dd857627ae3e88025a17df4830b19730a77
|
[] |
no_license
|
airshhlay/cs3219-project-ay2122-2122-s1-g15
|
1e440ca5e5fc8d900e852f31dc41cc33176642ed
|
a6c4fde1b9373f321e93b2fb079fb6ae3a6562e4
|
refs/heads/master
| 2023-08-25T09:14:26.560359
| 2021-11-10T08:51:54
| 2021-11-10T08:51:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,122
|
puml
|
@startuml
actor User as user
participant "Frontend" as webapp
boundary "API Gateway" as gateway
box "Matching Service"
participant "Controller" as controller
participant "Service" as service
end box
box "Matching Database"
collections Questions as questions
collections MatchRequests as matchrequests
webapp -> gateway: PUT /api/find/match\npayload: {requestId}
gateway -> controller: PUT /api/find/match\npayload: {requestId}
controller -> service: checkForMatch(requestId)
service -> matchrequests: find user's MatchRequest with requestId
matchrequests -> service: user's MatchRequest
service -> matchrequests: find another MatchRequest
matchrequests -> service: another MatchRequest
service -> questions: get a random question
questions -> service: Question
service -> service : create sessionInfo and attach to each MatchRequest
service -> matchrequests: update the 2 MatchRequests
matchrequests -> service
service -> controller: user's MatchRequest
controller -> gateway: 200 OK\npayload: {user's MatchRequest}
gateway -> webapp: 200 OK\npayload: {user's MatchRequest}
webapp-> webapp: switch to session page
@enduml
| false
| true
| false
| false
|
usecase
|
c127d2f0fe121f8f0c7e0c59b0a749ded1bae8b8
|
41bf54743064e61990c7bfb2bbe1070c02c0d6e5
|
/app/UML/Activity Diagram/Add Subject.puml
|
4303d7a9c9ecee01ee98c8e9a483bd0e6817c8f6
|
[] |
no_license
|
ultiferrago/ElStudioGato
|
4206f43fa11867837591cde288638885297350fb
|
15c91c8a6859b513c5f4d2f2b8da2e76abff978e
|
refs/heads/master
| 2021-01-23T13:30:39.323136
| 2015-05-04T01:23:11
| 2015-05-04T01:23:11
| 34,616,703
| 0
| 0
| null | 2015-04-30T22:32:19
| 2015-04-26T15:07:16
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 359
|
puml
|
@startuml
title elStudioGato Add subject
(*) --> "Student presses Plus \nbutton on Action Bar"
--> "Student inputs information for name of subject"
--> "Student done creating subject"
if "Is information empty?" then
-->[no]"System saves flashcard changes"
--> ===done===
else
--> [yes]===done===
endif
--> "Display all subjects"
@enduml
| false
| true
| false
| false
|
activity
|
03f8fa3471dbab3e82657dc811a6b40cf7516b28
|
02b0d37dad8182bfbc5414bbd250f36c6e888b28
|
/PlantUml/Scripts/Libs/GameConstants.puml
|
82af7e8c04da9f836e5f9309af4ee31f628cc0e6
|
[] |
no_license
|
Darcy97/U3D_Libs
|
ee8b1afb4e4cdc99fd80ab404fc8171cf2181ca0
|
cc6143112916cafa346a00bc1fab7841b7888444
|
refs/heads/master
| 2020-06-21T16:37:56.155301
| 2019-08-20T07:04:09
| 2019-08-20T07:04:09
| 197,504,293
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 621
|
puml
|
@startuml
class GameConstants <<static>> {
+ <<const>> BUNDLE_DOWNLOAD_URL : string = "http://127.0.0.1/Bundles"
+ <<const>> IS_DEBUG_LOG : Boolean = true
+ <<const>> VERSION : string = "0.0.1"
+ {static} WYS_IMG_NAME_ARRAY : string[]
+ {static} IRVUE_IMG_NAME_ARRAYs : string[]
+ <<const>> WYS_SCENE_NAME : String = "WYSImage"
+ <<const>> IRVUE_SCENE_NAME : string = "IrvueImage"
+ <<const>> MAIN_SCENE_NAME : string = "MainScene"
+ {static} WaitTwoIn10Second : WaitForSeconds
+ {static} WaitTwoIn100Second : WaitForSeconds
+ {static} WaitTwoSecond : WaitForSeconds
}
@enduml
| false
| true
| false
| false
|
class
|
55f57e03fcc457cfe94a112428096d892877c649
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/TextLineItemDraft.puml
|
acf95edfc756c18a1d2ccb881eec89e33533ca12
|
[] |
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,786
|
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 TextLineItemDraft [[TextLineItemDraft.svg]] {
key: String
addedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
description: [[LocalizedString.svg LocalizedString]]
name: [[LocalizedString.svg LocalizedString]]
quantity: Long
}
interface MyShoppingListDraft [[MyShoppingListDraft.svg]] {
name: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]]
textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
deleteDaysAfterLastModification: Long
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
}
interface ShoppingListDraft [[ShoppingListDraft.svg]] {
name: [[LocalizedString.svg LocalizedString]]
slug: [[LocalizedString.svg LocalizedString]]
customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
key: String
description: [[LocalizedString.svg LocalizedString]]
anonymousId: String
deleteDaysAfterLastModification: Long
lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]]
textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
TextLineItemDraft --> MyShoppingListDraft #green;text:green : "textLineItems"
TextLineItemDraft --> ShoppingListDraft #green;text:green : "textLineItems"
@enduml
| false
| true
| false
| false
|
sequence
|
28b5d15fa4f7ccf99cf6cffad8ed302d7d1abf9d
|
a18370967839d84d724a58879636b1605687dea6
|
/class1.puml
|
af4b5c53b360cd7345a9241efb89a8209af12fd5
|
[] |
no_license
|
03376808-OOAD/plantuml-diagram
|
3794d57e8812b7bd4c075904f67dee0e18605f9b
|
c933d5518f28694d3a2999cbd84626fe50341b9e
|
refs/heads/master
| 2020-04-28T03:12:53.525237
| 2020-02-25T10:01:31
| 2020-02-25T10:01:31
| 174,927,954
| 0
| 4
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 98
|
puml
|
@startuml
Class01 <|-- Class02
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
@enduml
| false
| true
| false
| false
|
class
|
cecf416498537c6c41a0e62564f84b0e86ffb867
|
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
|
/documentation/productSchema/ip/internetAccess/MEF 139 resources/media/IP_SLS.puml
|
33898d61d955a08d83dc8222406ebd15f24b27e0
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Sonata-SDK
|
969c3717fba3fffa009bf3a5de65337b2caccaaf
|
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
|
refs/heads/working-draft
| 2023-07-07T02:17:11.649855
| 2023-06-23T09:30:18
| 2023-06-23T09:30:18
| 90,886,429
| 33
| 32
|
Apache-2.0
| 2023-01-05T23:58:23
| 2017-05-10T16:38:08
| null |
UTF-8
|
PlantUML
| false
| false
| 2,233
|
puml
|
@startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class IpSls {
startTime: date-time
}
IpSls *--> TimeDuration : periodOfTime
IpSls *-u->"*" Location : locationList
IpSls *-->"*" OneWayPacketDelayPercentile : oneWayPacketDelayPercentile
IpSls *-->"*" OneWayMeanPacketDelay : oneWayMeanPacketDelay
IpSls *-->"*" OneWayInterPacketDelayVariation : oneWayInterPacketDelayVariation
IpSls *-->"*" OneWayPacketDelayRange : oneWayPacketDelayRange
IpSls *-->"*" OneWayPacketLossRatio : oneWayPacketLossRatio
IpSls *-u->"*" ServiceUptime : serviceUptime
IpSls *-->"*" MeanTimeToRepair : meanTimeToRepair
class OneWayPacketDelayPercentile {
cosName: string
packetDelayPercentile: Percentage
}
OneWayPacketDelayPercentile *-->"*" SlsRpPair : slsRpPair
OneWayPacketDelayPercentile *--> TimeDuration : packetDelayObjective
class OneWayInterPacketDelayVariation {
cosName: string
interPacketDelayVariationPercentile: Percentage
}
OneWayInterPacketDelayVariation *-->"*" SlsRpPair : slsRpPair
OneWayInterPacketDelayVariation *--> TimeDuration : packetArrivalTimeDifference
OneWayInterPacketDelayVariation *--> TimeDuration : interPacketDelayVariationObjective
class OneWayPacketDelayRange {
cosName: string
packetDelayRangePercentile: Percentage
}
OneWayPacketDelayRange *-->"*" SlsRpPair : slsRpPair
OneWayPacketDelayRange *--> TimeDuration : packetDelayRangeObjective
class OneWayPacketLossRatio {
cosName: string
packetLossRatioObjective: Percentage
}
OneWayPacketLossRatio *-->"*" SlsRpPair : slsRpPair
class OneWayMeanPacketDelay {
cosName: string
}
OneWayMeanPacketDelay *-->"*" SlsRpPair : slsRpPair
OneWayMeanPacketDelay *--> TimeDuration : meanPacketDelayObjective
class MeanTimeToRepair {
}
MeanTimeToRepair *--> TimeDuration : mttrObjective
class ServiceUptime {
serviceUptimeObjective: Percentage
}
class SlsRpPair {
}
SlsRpPair *--> SlsReferencePoint : fromSlsReferencePoint
SlsRpPair *--> SlsReferencePoint : toSlsReferencePoint
class Location {
name: string
description: string
cloudService: boolean
}
Location *-r->"*" IdentifierString : ipvcEndPointIdentifier
class TimeDuration {
<<skipped>>
}
@enduml
| false
| true
| false
| false
|
sequence
|
c6bf9d476a3fcb8e4b0b790780e44b3c3a4c24ac
|
4489b6c6479ad4afa17b4d4e0a5094cc1a3f4c00
|
/PA.puml
|
988f4e1a024bde4e385aaa657d3d71ca3045171d
|
[] |
no_license
|
AiroaeiCatalin/OOP_OA
|
91338b96b68eb4655365aa4eaa8193b86735e84e
|
b273db2e2a327a670170d2c6cb562b701d2e687e
|
refs/heads/main
| 2023-08-14T10:29:37.713111
| 2021-09-23T18:33:56
| 2021-09-23T18:33:56
| 409,698,053
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 570
|
puml
|
@startuml
'https://plantuml.com/class-diagram
class TripPlanner{
- locations : List<Location>
}
abstract class Location{
- x : int
- y : int
+ getClosestCity() : City
}
class Landmark extends Location{
- name : String
- entranceFee : int
- type : LandmarkType
+ setFee() : void
}
enum LandmarkType {
GEOLOGICAL,
BIOLOGICAL,
CULTURAL
}
class City extends Location{
- name : String
}
class UserLocation extends Location{
- oldX : List<Integer>
- oldY : List<Integer>
+ setX() : void
+ setY() : void
}
TripPlanner o-- Location
Landmark <-- LandmarkType
@enduml
| false
| true
| false
| false
|
class
|
4be02332806369953a59ae5c7195fb3704969ffa
|
4bf0b7532a42a4d588b938ba926a8d0e8ff47af6
|
/docs/diagrams/component-diagram.puml
|
38ae1f8ebe024490abe1a866a3f0cfa8b162c3bf
|
[
"Apache-2.0"
] |
permissive
|
vikvorona/stock-exchange-data-collector
|
fd5987186b1d9c8cf87a8b6bf852f89eeac8d777
|
5d41cb23f1814799ca44d0ff83bda285c24f1b06
|
refs/heads/master
| 2021-01-21T11:18:46.401110
| 2017-05-18T20:45:38
| 2017-05-18T20:45:38
| 91,736,099
| 0
| 0
| null | 2017-05-18T20:45:39
| 2017-05-18T20:44:15
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 550
|
puml
|
@startuml
node "sedc-package" as package{
[shell scripts]
[java libraries]
[configuration files]
}
node [sedc-api] as api {
[REST API]
}
node [sedc-core] as core {
[database entity objects]
[main classes]
[processing step classes]
[hibernate configuration]
[spring configuration]
}
node [sedc-web] as web{
[web-UI]
}
database [PostgreSQL] as db {
[stage tables]
[data tables]
[system codes table]
[system variables table]
}
core-->db
api-->db
api-->core
package-->core
web-->core
@enduml
| false
| true
| false
| false
|
sequence
|
a253c994b054af2a16391e37e889a16cb183c6c4
|
ea28e1dc7f12c10ebf139b0f14b8e391766b3dfb
|
/projectointegrador/doc/digramaUml.puml
|
7c307068648d30181a128a6100d6ebb1ef28628d
|
[] |
no_license
|
Wcamaly/tutoringJava
|
1334897d608e1c794a276cdb31eb51d5bf2698cc
|
1486dd97bad9f4186f8fdc0022a9628acbdc45e0
|
refs/heads/main
| 2023-09-02T11:24:46.608985
| 2021-11-13T22:14:34
| 2021-11-13T22:14:34
| 417,947,232
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 748
|
puml
|
rectangle "Modelo de datos" {
entity User {
id
username
password
type
}
entity Person{
id
name
surname
avatar
born
document
typeDocument
userId
}
entity Address {
id
type
city
address
number
}
entity RegisterFollow {
id
followAmountMe
followAmountThem
userId
}
entity Follow{
id
userId
followId
}
entity Publication {
id
text
userId
datePublic
}
entity Comment {
id
publicationId
userId
comment
datePublic
}
Person --|> User
Person --{ Address
RegisterFollow --{ Follow
RegisterFollow --|> User
Follow --{ User
Publication --{ Comment
Publication --{ User
}
| false
| true
| false
| false
|
sequence
|
a245c6213dd154f01aac29995bbdda2d27f5f8cd
|
3a7f1f7ba73ec02d622b28702977a5fc482f1e64
|
/src/main/asciidoc/images/IOException-hierarchy.puml
|
4687da914ecfede5fa784f266a3eb1c3e364b95f
|
[] |
no_license
|
umons-polytech-odl2017/odl-tp4-the-best-team
|
cb4548028af7940ff5506c6eda43589fdb39b248
|
acc8bfdf844924ba6351e3e54ed3b9fe2af4e33b
|
refs/heads/master
| 2022-12-27T23:52:30.654835
| 2020-10-13T19:48:14
| 2020-10-13T19:48:14
| 109,366,001
| 0
| 0
| null | 2020-10-13T19:48:15
| 2017-11-03T07:32:28
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 520
|
puml
|
@startuml
package (java.lang) {
class Object
class Throwable
class Exception
}
Object <|-- Throwable
Throwable <|-- Exception
package (java.io) {
class IOException
class EOFException
class MalformedURLException
class FileNotFoundException
class UnknownHostException
class SocketException
}
Exception <|- IOException
IOException <|-- EOFException
IOException <|-- SocketException
IOException <|--- FileNotFoundException
IOException <|--- UnknownHostException
IOException <|--- MalformedURLException
@enduml
| false
| true
| false
| false
|
class
|
ad2ab89095e1ac501422ef569e70aa716d41e4db
|
f8a1ba4ac815ee086c5291eb949fd7ec6aebb6c7
|
/Barricade/Controllers/GameController.puml
|
b2d7bc468243c40952d60d2a09a125dc8f57d741
|
[] |
no_license
|
Evert-Arends/barricadegameModel3
|
f7def3f2fd0dead5cc7807c488617505fb664ef5
|
98fa3d1e396ca133c424f459ea576086d0840814
|
refs/heads/master
| 2023-03-02T21:33:43.122111
| 2021-02-11T13:06:54
| 2021-02-11T13:06:54
| 337,192,542
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 393
|
puml
|
@startuml
class GameController {
+ GameController(lines:string[])
+ RunGame() : void
- ViewData() : string[]
- {static} ToVerticalConnectionString(field:Field) : string
- {static} ToSquareConnectionString(field:Field) : string
- PlayerWon() : bool
- PieceMovement() : void
}
GameController --> "_gameView" GameView
GameController --> "_gameModel" GameModel
@enduml
| false
| true
| false
| false
|
class
|
3daf4733aeaafeebb21ab4b0187a6ce6a9a3962b
|
5094cb361fcacbd0e3a8cac5dca4c7a4786c1f6c
|
/scripts/designs/component/component-synchronization-batch.puml
|
fa535c39acb5005c899d8d5a7b09b443e2c7f170
|
[] |
no_license
|
anirbandas18/coding-challenge-ionos-javatestaufgabe
|
bee45c0616c904a467f37551968a13b51790d056
|
a1293956d17cf9e4d9c447ce32b838ed2b31bbea
|
refs/heads/main
| 2023-07-28T11:03:15.102210
| 2021-09-11T11:47:39
| 2021-09-11T11:47:39
| 400,106,847
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,921
|
puml
|
@startuml
title "Component - S3EXPORT Synchronization Batch"
node "Synchronization Job" {
frame "Filtering Step" {
package "Filtering Task" {
[Filtering Reader] as filteringReader
[Filtering Processor] as filteringProcessor
[Filtering Writer] as filteringWriter
filteringProcessor ..> filteringReader
filteringReader ..> filteringWriter
}
}
frame "Mapping Step" {
package "Mapping Task" {
[Mapping Reader] as mappingReader
[Mapping Processor] as mappingProcessor
[Mapping Writer] as mappingWriter
mappingReader ..> mappingProcessor
mappingProcessor ..> mappingWriter
}
}
frame "Segmentation Step" {
package "Segmentation Task" {
[Segmentation Reader] as segmentationReader
[Segmentation Processor] as segmentationProcessor
[Segmentation Writer] as segmentationWriter
segmentationReader ..> segmentationProcessor
segmentationProcessor ..> segmentationWriter
}
}
frame "Upload Step" {
package "Upload Task" {
[Upload Reader] as uploadReader
[Upload Processor] as uploadProcessor
[Upload Writer] as uploadWriter
uploadReader ..> uploadProcessor
uploadProcessor ..> uploadWriter
}
}
SynchronizationJobStart ..> filteringProcessor
filteringWriter ..> mappingReader
mappingWriter ..> segmentationReader
segmentationWriter ..> uploadReader
uploadWriter ..> SynchronizationJobEnd
}
[Synchronization Job Service] as synchronizationJobService
note top of synchronizationJobService
Synchronization Job Service is scheduled
to execute Synchronization Job periodically
end note
synchronizationJobService ..> SynchronizationJobStart
@enduml
| false
| true
| false
| false
|
class
|
d79ed382e779be545eee56ab1fbe66870c1bb3bd
|
a546db78e9806979e459831fb16c6e51878eb60b
|
/src/main/model/util/util.plantuml
|
fc8cbf860d604138de939022decd8bbec0c192a3
|
[] |
no_license
|
Bryce-MW/WikidataExplorer
|
92fd35b8e9364d9bd7e005a39d321bc788ea049f
|
9ad2dac3c82077466dcb36f25128611881f8965b
|
refs/heads/master
| 2023-06-22T20:58:25.975518
| 2021-07-25T22:33:33
| 2021-07-25T22:33:33
| 287,648,884
| 5
| 1
| null | 2020-08-16T06:03:52
| 2020-08-15T00:23:27
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 407
|
plantuml
|
@startuml
title __UTIL's Class Diagram__\n
namespace model.util {
class model.util.StringBuilderUtil {
+ StringBuilderUtil()
{static} + pad()
{static} + padAll()
}
}
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
|
ecb95b9fcfc47e8bf61214830edab2a0f660b08a
|
fa9855ed2f2ad20f1876549b9aa036265346adff
|
/use-cases/use-case-4.2.puml
|
c938e676fb7d17e5e60ebac4a6a1e7d5d65e16fe
|
[
"Apache-2.0"
] |
permissive
|
scan-lan/Group-Project
|
fcc0f346ebe2c5495b2c31328275fcd773846892
|
db93a1510cce1355ebb79f01ba8eb42d2312a685
|
refs/heads/master
| 2023-04-15T18:20:10.702190
| 2021-04-27T17:23:47
| 2021-04-27T17:23:47
| 333,326,638
| 0
| 0
|
Apache-2.0
| 2021-04-27T17:23:48
| 2021-01-27T06:32:57
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 314
|
puml
|
@startuml
rectangle Database
rectangle "Organisation" {
usecase UC1 as "User defines N as Integer"
usecase UC2 as "Get top N populated cities in continent"
usecase UCa as "Name, Country, District, Population"
}
User - UC1
UC1 ..> UC2
UC2 ..> UCa : include
UC2 - Database
@enduml
| false
| true
| false
| false
|
usecase
|
677f8153c89993f06ce2ae81e3ca325f1b642cb3
|
c4a18333479166a31ad3e0a165ccfa9dac3516af
|
/docs/main_structure.puml
|
06b2a66e5ed572ce4e7786e2294a2fff1d456c31
|
[
"MIT"
] |
permissive
|
SpeedsterF2/jsoncodegen
|
93ea1996ad56b558cb032ab6bb1ae5aec7c260f3
|
85e7b22f75aeea163c2d14de9e119551fb1e5a52
|
refs/heads/master
| 2023-03-05T23:45:40.026712
| 2023-02-22T15:39:43
| 2023-02-22T15:39:43
| 130,355,897
| 0
| 0
|
MIT
| 2023-02-22T15:39:44
| 2018-04-20T11:56:33
|
Groovy
|
UTF-8
|
PlantUML
| false
| false
| 1,768
|
puml
|
@startuml
hide empty members
interface IModelBuilder {
Model buildModel(File modelFile)
}
note bottom of IModelBuilder
Implementation creates
meta model
If you want implement
your own builder, then
implement this
end note
interface ICodeGen {
void doCodeGen(Model model, Map<String,String> extraParams)
}
note top of ICodeGen
Implementation process
meta model and generate
desired stuff
If you want implementIModelBuilder
your own code generator, then
implement this
end note
class DoCodeGen {
void run()
static void main(String ... args)
}
class JsonSchemaBuilder
class SingleFileGenerator
class MultiFileGenerator
class JavaBeanGenerator
note left of DoCodeGen
start class that
handles the code gen
process
end note
note bottom of JsonSchemaBuilder
builds
from JSON schemas
end note
note bottom of JavaBeanGenerator
builds simple
Java beans from
meta model
end note
DoCodeGen o-- IModelBuilder
DoCodeGen o-- ICodeGen
IModelBuilder <|-- JsonSchemaBuilder
ICodeGen <|-- MultiFileGenerator
ICodeGen <|-- SingleFileGenerator
MultiFileGenerator <|-- JavaBeanGenerator
SingleFileGenerator <|-- SwaggerGenerator
class Model {
List<Type> types
}
class Type {
List<Property> properties
}
class Property {
BaseType type
}
BaseType <|-- BooleanType
BaseType <|-- ByteType
BaseType <|-- MinMaxType
BaseType <|-- ComplexType
MinMaxType <|-- DateType
MinMaxType <|-- DateTimeType
MinMaxType <|-- IntType
MinMaxType <|-- LongType
MinMaxType <|-- NumberType
BaseType <|-- RefType
BaseType <|-- StringType
BaseType <|-- ArrayType
BaseType <|-- UnsupportedType
Property o-- BaseType
Type o-- Property
Model o-- Type
RefType o-- Type
ICodeGen -- Model
@enduml
| false
| true
| false
| false
|
activity
|
bbda0b439d9520db87eac47c4268f2246667cb9b
|
c8e5514bd3ea44e6613f469e88bc0562ba16ae62
|
/src/site/sphinx/formatting/puml/colors/MediumPurple.puml
|
c8b05f16503fcdd0a6a2e15c1bd9a032641dceb8
|
[] |
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 #MediumPurple
skinparam ClassFontColor #MediumPurple
skinparam ClassBorderColor #MediumPurple
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml
| false
| true
| false
| false
|
class
|
0450570730d47f610f1cac59a53d722c9e837b0b
|
35d567e689aa9ea7027448ef44be0be480759654
|
/docs/images/usecase/categories.puml
|
4232553338f4a203b3e9cda36f9fec00a55037d1
|
[] |
no_license
|
Zercos/Coin
|
8b8a151a0d1ceff036c7bf2be83a1aef3308e787
|
91059079a7779cb18daca9adcf729fc231939537
|
refs/heads/master
| 2023-08-07T02:42:03.663429
| 2023-05-07T09:41:24
| 2023-05-07T09:41:24
| 244,215,285
| 0
| 0
| null | 2023-07-25T21:42:02
| 2020-03-01T20:04:20
|
Vue
|
UTF-8
|
PlantUML
| false
| false
| 433
|
puml
|
@startuml "Manage categories"
left to right direction
actor User
rectangle Application {
User --> (Manage categories)
(Manage categories) .> (Authentication) : include
(Add category) .> (Manage categories) : extends
(Manage categories) <.. (Edit category) : extends
(Add category) ..> (Enter category info) : include
(Edit category) .> (Enter category info) : include
User --> (Show planning)
}
@enduml
| false
| true
| false
| false
|
usecase
|
9be4a54290e00dc5b453c1391e7fd7018f4a0bb5
|
c211337d51e433919be2fa87efa2ae57f6ca76c2
|
/src/mei/designpattern/creational/facade/structure/facadestructure.puml
|
a18a65d23797e15196b90e13dcac19e89e9991d8
|
[] |
no_license
|
nyannko/coder-notes
|
86ae29bfdffa79f681edea6a207ccbf2f35e5827
|
5789764bfc92379ca4fa9e2703db022fac8e463b
|
refs/heads/master
| 2020-05-29T09:12:21.050431
| 2019-06-10T19:37:17
| 2019-06-10T19:37:17
| 189,054,041
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 331
|
puml
|
@startuml
class Facade {
+void method()
}
note left of Facade
method() {
methodA()
methodB()
methodC()
}
end note
class SubsystemA{
+void methodA()
}
class SubsystemB{
+void methodB()
}
class SubsystemC{
+void methodC()
}
/' --> means has '/
Facade --> SubsystemA
Facade --> SubsystemB
Facade --> SubsystemC
@enduml
| false
| true
| false
| false
|
class
|
238ec712d50a6399f61b37bb136de4cd11b8e2f3
|
ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd
|
/ch08-command-patterns/diagrams/command-pattern-sequence.puml
|
5faae614e3039a51d425e5e69e4c36210e7a2020
|
[] |
no_license
|
outofworld98/java-design-patterns
|
d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427
|
75964a5387cad3f54726d0f7ba98b0765ca0d650
|
refs/heads/master
| 2022-03-29T17:38:14.238273
| 2019-01-17T11:10:00
| 2019-01-17T11:10:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 281
|
puml
|
@startuml
hide footbox
participant Receiver
participant aClient
create aCommand
aClient -> aCommand : 1. <<create>>
participant Invoker
aClient -> Invoker : 2. setCommand(aCommand)
Invoker -> aCommand : 3. execute() : void
aCommand -> Receiver : 4. action() : void
@enduml
| false
| true
| false
| false
|
sequence
|
a805b9c3923200b06f1d1820ae2c173a6c5ad5d0
|
49a4948b55aa5acee6f1559bc76413e7d0cf1293
|
/assets/0017-SequenceDiagram-InvitationPhase.puml
|
bf23c4c0021328bcc1874d6a5746073aa9bb18f6
|
[] |
no_license
|
comit-network/spikes
|
af9515d83e2384c32dc914e5c988dae088110625
|
c9fd3548464dbfade838a8aea6a2c4ea87cae9fc
|
refs/heads/master
| 2021-07-07T18:58:36.533143
| 2020-08-24T04:55:33
| 2020-08-24T04:55:33
| 173,885,928
| 2
| 0
| null | 2020-08-24T04:55:34
| 2019-03-05T06:12:27
| null |
UTF-8
|
PlantUML
| false
| false
| 1,291
|
puml
|
' DIAGRAM #########################################
' Invitation phase messaging
' #################################################
@startuml
' #################################################
' SETTINGS: color settings of diagram
' #################################################
skinparam sequence {
BorderColor black
ArrowColor black
ActorBorderColor black
LifeLineBorderColor black
LifeLineBackgroundColor white
ParticipantBorderColor black
ParticipantBackgroundColor white
ParticipantFontColor black
ActorBackgroundColor white
ActorFontColor black
}
' #################################################
' ACTORS
' #################################################
actor Maker as M
participant "Social\nMedia" as I
actor Taker as T
' allow parallelism
!pragma teoz true
' #################################################
' DIAGRAM
' #################################################
group invitation phase
M->I: publish trade invite
note right #white
required:
- connect-info
- ask-asset
- ask-ledger
- bid-asset
- bid-ledger
optional:
- ask-amount
- bid-amount
- creation-date
end note
T->I: process trade invite
end
@enduml
| false
| true
| false
| false
|
sequence
|
536df496eee2288afbb0bb60d7b2d4c4fd8e8fc6
|
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
|
/PlantUML/P2oDriver2D/P2oDriver2D_Activity_doP2o.puml
|
7a47bf869ea3beb2e4e84ea07b2f1adce81c119e
|
[] |
no_license
|
ShisatoYano/SLAMDesignUML
|
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
|
bb8678908952205d1fdc2ea5e49c9ca752e123b9
|
refs/heads/master
| 2022-11-25T17:49:03.514885
| 2020-08-02T00:27:38
| 2020-08-02T00:27:38
| 261,206,484
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,732
|
puml
|
@startuml
/'
adjust pose graph
robot trajectory based on the result is stored as new pose
input1: PoseGraph &pg
input2: vector<Pose2D> &newPoses
input3: int N
'/
(*) --> "vector<PoseNode*> &nodes = pg.nodes \n vector<PoseArc*> &arcs = pg.arcs"
--> "vector<p2o::Pose2D> pnodes"
--> "Loop: size_t i: 0 - nodes.size()"
--> if "i < nodes.size()" as judge_i then
--> [Yes] "PoseNode *node = nodes[i]"
--> Pose2D pose = node->pose
--> "pnodes.push_back(p2o::Pose2D(pose.tx, pose.ty, DEG2RAD(pose.th)))"
--> judge_i
else
-> [No] "p2o::Con2DVec pcons"
"p2o::Con2DVec pcons" --> "Loop: size_t j: 0 - arcs.size()"
--> if "j < arcs.size()" as judge_j then
--> [Yes] "PoseArc *arc = arcs[j] \n PoseNode *src = arc->src \n PoseNode *dst = arc->dst"
--> "Pose2D &relPose = arc->relPose \n p2o::Con2D con"
--> "con.id1 = src->nid \n con.id2 = dst->nid"
--> "con.t = p2o::Pose2D(relPose.tx, relPose.ty, DEG2RAD(relPose.th))"
if "0 <= k < 3" as judge_k then
--> [Yes] if "0 <= m < 3" as judge_m then
--> [Yes] "con.info(k, m) = arc->inf(k, m)"
--> judge_m
else
--> [No] judge_k
else
judge_k -> [No] "pcons.push_back(con)"
--> judge_j
else
judge_j -> [No] "p2o::Optimizer2D opt"
--> "std::vector<p2o::Pose2D> result = opt.optimizePath(pnodes, pcons, N)"
--> if "0 <= n < result.size()" as judge_n then
--> [Yes] "p2o::Pose2D newPose = result[n]"
--> "Pose2D pose(newPose.x, newPose.y, RAD2DEG(newPose.th))"
--> newPoses.emplace_back(pose)
--> judge_n
else
-> [No] (*)
@enduml
| false
| true
| false
| false
|
sequence
|
893af370957278857ff7c08790fbbed555e7ad5b
|
e30845c4d0895cfaf7b5480f77b20129188d62b2
|
/src/main/java/ex43/ex43.puml
|
451a3dc5affeb4e0508f111f570d74d518f8bc67
|
[] |
no_license
|
Stevenortiz97/ortiz-cop3330-assignment3
|
82fd6dc7ad474ddcddaf195441a6527d130a3351
|
7cd75a4cf6538e00357b4a88c1c5030195c8ae85
|
refs/heads/master
| 2023-05-27T10:45:09.328974
| 2021-06-21T04:02:44
| 2021-06-21T04:02:44
| 378,793,800
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 153
|
puml
|
@startuml
class ex43 {
+ path: String
+ author: String
+ name: String
+ javaScript: char
+ css: char
+ main (): void
- makeWebsite(): void
}
@enduml
| false
| true
| false
| false
|
class
|
c1ea507a937f625c0b58b9b45134af114e148779
|
4e735a2b94ef137437adc8798f08fe9ca8b8b6c5
|
/docs/diagrams/StatisticsClassDiagram.puml
|
12a3212201999b9a8573e1daf39d3516317a30ac
|
[
"MIT"
] |
permissive
|
AY1920S1-CS2103T-T11-1/main
|
077c196c06f1ce91d5fb1afe8b969390ba737f85
|
e2e0e05955f04931ddaff41685a3dba64c0e6e86
|
refs/heads/master
| 2020-07-21T05:18:09.774695
| 2019-11-12T15:45:13
| 2019-11-12T15:45:13
| 206,758,681
| 0
| 7
|
NOASSERTION
| 2019-11-12T15:18:58
| 2019-09-06T09:19:12
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 2,026
|
puml
|
@startuml
interface Statistics {
~getTitle(): String
~setTitle(String)
~populateData()
~createFactory(): StatisticsRegionFactory
}
class PieChartStatistics {
-Timestamp: startDate
-Timestamp: endDate
-ObservableList<Expense>: expenses
-String: title
-List<String>: formattedCategories
-List<Double>: formattedPercentages
-List<Category>: budgetCategories
+List<String>: getFormattedCategories()
+List<Double>: getFormattedPercentages()
-generatePercentages(List<List<Expense>>, List<Double>, List<Integer>, List<String>,String)
-extractRelevantExpenses(Timestamp,Timestamp)
-List<Category> collateBudgetCategories(ObservableList<Expense>)
}
class TrendStatistics {
-Timestamp: startDate
-Timestamp: endDate
-Budget: primaryBudget
-boolean: isBudgetLimitMode
-ObservableList<Expense>: expenses
-List<Timestamp>: dates
-List<Double>: periodicTotalExpenditures
-List<Double>: periodicBudgetLimits
-List<List<Double>>: periodicCategoricalExpenses
-String: title
-getCategorisedPeriodicExpenses(Timestamp, Timestamp): List<List<Expense>>
-getExpenditureForCategory(List<Expense>): double
-getTotalExpenditure(List<List<Expense>>): double
-getCategoricalExpenditure(List<List<Expense>>): List<Double>
+getPeriodicCategoricalExpenses(): List<List<Double>>
+getDates(): List<Timestamp>
-getPeriodicTotalExpenditure(): List<Double>
}
class TabularStatistics {
-Timestamp: firstStartDate
-Timestamp: firstEndDate
-Timestamp: secondStartDate
-Timestamp: secondEndDate
-int: numOfCategories
-ObservableList<Expense>: expenses
-List<FiveElementTableEntry>: unionDifferenceTable
-String: title
-createEmptyTableWithoutPercentage(): List<ThreeElementTableEntry>
-secondMinusFirst(List<ThreeElementTableEntry>, List<ThreeElementTableEntry>): List<ThreeElementTableEntry>
-extractRelevantExpenses(Timestamp, Timestamp): List<List<Expense>>
-convertDataToFigures(List<List<Expense>>, List<ThreeElementTableEntry>)
}
Statistics <|-- PieChartStatistics
Statistics <|-- TabularStatistics
Statistics <|-- TrendStatistics
@enduml
| false
| true
| false
| false
|
class
|
1578c9ccd795c62dbfabccfbc473bb6fa25f15a8
|
1aa6c18785e25eb617b145ba441c70ec33e4ed95
|
/docs/ex46.puml
|
da26a6582117c684e3f4918eed73b49bebc08ad3
|
[] |
no_license
|
Stephan-Hartig/hartig-cop3330-assignment3
|
6467a8f1319bd6207e2904aceee96fc044bd7b42
|
26c7eb18d1ff06188d433e074786b6598f8a823d
|
refs/heads/master
| 2023-06-03T00:45:41.904247
| 2021-06-21T03:08:10
| 2021-06-21T03:08:10
| 376,984,543
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 315
|
puml
|
@startuml
package shared.io {
class InputOutput {
print()
getLine()
}
class FileIO {
slurp()
spit()
}
}
package ex46 {
class App {
--
main()
}
class WordCounter {
fromString()
}
}
App --> InputOutput
App --> FileIO
App --> WordCounter
@enduml
| false
| true
| false
| false
|
class
|
01642f2c6f400a9c9c5c66b07a9ddc80f276a45e
|
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
|
/documentation/productApi/serviceability/site/media/src/useCases.puml
|
854a2652f2521739b218249e27676c003c12c728
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Sonata-SDK
|
969c3717fba3fffa009bf3a5de65337b2caccaaf
|
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
|
refs/heads/working-draft
| 2023-07-07T02:17:11.649855
| 2023-06-23T09:30:18
| 2023-06-23T09:30:18
| 90,886,429
| 33
| 32
|
Apache-2.0
| 2023-01-05T23:58:23
| 2017-05-10T16:38:08
| null |
UTF-8
|
PlantUML
| false
| false
| 297
|
puml
|
@startuml
actor Seller
left to right direction
actor Buyer
rectangle {
Buyer --> (3. Retrieve Service Site List)
Buyer --> (4. Retrieve Service Site by Identifier)
Seller -[hidden]up-> (4. Retrieve Service Site by Identifier)
Seller -[hidden]up-> (3. Retrieve Service Site List)
}
@enduml
| false
| true
| false
| false
|
usecase
|
2c0ed62964edcf78392770efff0bb3fa9515edc6
|
65c79e69d7c97dc7eb1532e77ae1bd2ece83fbe6
|
/notes/Design/UML/ObjectAdapter.puml
|
c2ccc55010545ec739b6d45d505a1014a09b3ce2
|
[] |
no_license
|
zhangjukai/Go-Gad
|
8618bf0a377d34f784ad7c201d08431861f48c52
|
d463e3faccc580d77b67886a11288c78622ddbae
|
refs/heads/master
| 2023-05-31T06:37:30.215749
| 2023-05-12T03:28:19
| 2023-05-12T03:28:19
| 185,611,030
| 0
| 0
| null | 2022-12-15T23:30:09
| 2019-05-08T13:25:51
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 247
|
puml
|
@startuml
Interface Target {
+ request(): void
}
Class Adapter {
- adaptee : Adaptee
+ request(): void
}
Class Adaptee {
+ SpecificRequest() : void
}
Class Client{}
Client ..> Target
Adapter ..|> Target
Adapter o-- Adaptee
@enduml
| false
| true
| false
| false
|
class
|
3f6eac40ede8d1afdac463ae295641c37125f7ca
|
7b7b52f5a9a9e7f624f60a5f7cff72ef94f16b89
|
/android/YOLOV2trafficsigns/app/src/main/java/com/example/yolov2_traffic_signs/yolov2_traffic_signs.plantuml
|
6109ed11fbf0db946456cfcbce1e618922397ea0
|
[] |
no_license
|
MaciejJaskolski/yolo-traffic-signs
|
a3c763bc9dd7db26f98d7d6207708952399b98b4
|
b7fb681150abff3c83e922cec49a30d63b4d431b
|
refs/heads/master
| 2020-12-01T09:49:19.306717
| 2019-12-28T12:57:29
| 2019-12-28T12:57:29
| 230,603,607
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,421
|
plantuml
|
@startuml
title __YOLOV2_TRAFFIC_SIGNS's Class Diagram__\n
namespace com.example.yolov2_traffic_signs {
class com.example.yolov2_traffic_signs.App {
# attachBaseContext()
}
}
namespace com.example.yolov2_traffic_signs {
class com.example.yolov2_traffic_signs.MainActivity {
~ intentLocation : Intent
- CLASS_NUMBER : int
- GRID_SIZE : int
- IMAGE_MEAN : int
- IMAGE_STD : float
- INPUT_NAME : String
- INPUT_SIZE : int
- MODEL_NAME : String
- NUM_OF_BBOX : int
- OUTPUT_NAME : String
- PIXEL_DEPTH : int
{static} - TAG : String
- THRESHOLD : float
- camera : CameraView
- currentLocation : Location
- detectionText : String
- inferenceInterface : TensorFlowInferenceInterface
- labels : List<String>
- serviceConnectionLocation : ServiceConnection
- switchToMaps : Button
- txtCurrentDetection : TextView
- txtCurrentLocation : TextView
# onCreate()
- classifyImage()
- degreesToFirebaseRotation()
- getClassess()
- getImageFromFrame()
- getOutputSize()
- getTopDetections()
- listenToButton()
- processBitmap()
- processFrame()
- readLabels()
}
}
namespace com.example.yolov2_traffic_signs {
class com.example.yolov2_traffic_signs.MapsActivity {
{static} - TAG : String
- mMap : GoogleMap
- signs : List<TrafficSigns>
- switchToCamera : Button
+ onMapReady()
+ synchronizeData()
# onCreate()
- listenToButton()
- placeMarkersOnMap()
}
}
com.example.yolov2_traffic_signs.App -up-|> android.app.Application
com.example.yolov2_traffic_signs.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.yolov2_traffic_signs.MainActivity o-- com.example.yolov2_traffic_signs.services.LocationService : locationService
com.example.yolov2_traffic_signs.MapsActivity .up.|> com.google.android.gms.maps.OnMapReadyCallback
com.example.yolov2_traffic_signs.MapsActivity -up-|> androidx.fragment.app.FragmentActivity
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
|
47a86574cf8ef3c7a03502d5567058f1b702ba40
|
5c2dc59411b5658c701e6028ed463c92dedd4c4f
|
/syncSequence.puml
|
9db0ed6c842c591eb464940f35046107458f18ff
|
[] |
no_license
|
akryvtsun/throttle
|
63f58d3e56f2b31c6e394989b26e902caf6e48e0
|
f7cf3470a997b6d3e44e5bf00ae58f50a833e9bc
|
refs/heads/master
| 2021-05-31T02:06:34.407240
| 2016-02-04T17:52:38
| 2016-02-04T17:52:38
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 423
|
puml
|
@startuml
actor Developer as D
participant Throttle as Tr
participant "Throttle\nStrategy" as TrS
participant Timer as T
group Loop in developer thread
D -> Tr: execution request
activate Tr
Tr -> TrS: ask execution permit
TrS -> T: ask current time
TrS <- T: return time
TrS -> T: wait next execution time
...
TrS <-- T
Tr <-- TrS
Tr -> Tr: execute task
activate Tr #DarkSalmon
deactivate Tr
deactivate Tr
end
@enduml
| false
| true
| false
| false
|
sequence
|
98b156cb0919fb3132598126fa653e82b2bc0f4a
|
d5f72e45dd7882228519ecc861fc02d961129722
|
/Diagrams/src/ClassDiag.puml
|
cb2ae04b8d008283b74e0cc9859e383686659ef7
|
[] |
no_license
|
HDmech/Catan
|
ca9449cf6dd84ecb2adbdd2e9c382e24fc39bb58
|
ea2fd6530da3141a69432207d21ab9811f333cf4
|
refs/heads/master
| 2022-12-17T15:16:16.176761
| 2020-09-25T14:13:28
| 2020-09-25T14:13:28
| 296,877,123
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,022
|
puml
|
@startuml
Class Controller
Class Game
Controller o-- Game
Class View
Controller o-- View
Class GUI_View
Class TUI_View
View <|-- GUI_View
View <|-- TUI_View
Class Board
Game o-- "1" Board
Class Player
Game o-- "3,4" Player
Class LocalPlayer
LocalPlayer --|> Player
Class NetworkPlayer
NetworkPlayer --|> Player
Class ComputerPlayer
ComputerPlayer --|> Player
Class Piece{
(Int, Int) coordinates
}
Board o-- "0..*" Piece
Player o-- "0..*" Piece
Piece o-- Player : Owned by
Enum PieceType {
Settlement
City
Street
}
Piece o-- PieceType
Class Tile{
Int boardIndex
}
Board o-- Tile
Enum TileType{
Forest
Hill
Pasture
Field
Mountain
}
Tile o-- TileType
@enduml
| false
| true
| false
| false
|
class
|
514bad3fd66838c6fa16d5ea0f6fe8a7eb3a7f09
|
c452e4f63f50eca1ab44e5bb5fa557cbc5c93515
|
/src/main/resources/ex44/ClassDiagrams/ConsoleOut.puml
|
6c3a03b8c7d3a78d1bbac672bb691e55ba7e5661
|
[] |
no_license
|
mplekunov/Assignment_3
|
b1ca62cde7a6a1dd495bdc8c52e34d494a8e947b
|
81138b959274d3c8bf9586c0c4f6c164f6c84780
|
refs/heads/master
| 2023-05-31T12:28:19.214249
| 2021-06-21T00:40:42
| 2021-06-21T00:40:42
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 159
|
puml
|
@startuml
'https://plantuml.com/class-diagram
class ConsoleOut {
-PrintStream printStream
+ConsoleOut()
+void writeLine(String input)
}
@enduml
| false
| true
| false
| false
|
class
|
f8f322f7ef12d584cc85218328e81b308856f816
|
a1e6b39389dfab9a409686482a434cc7c2275831
|
/appupgrade/src/main/java/appupgrade.puml
|
2552f1a9b5e42960aca8e772e50c8f14218395fe
|
[] |
no_license
|
machengmas/androidcomponent
|
716edc6c1eb3a1f12425b33438b8e09e1a322bef
|
93776febb8b2e06b91f0f38a5c2c1d3c3fa49254
|
refs/heads/master
| 2021-09-24T10:19:04.593970
| 2018-10-08T02:35:26
| 2018-10-08T02:35:26
| 115,851,155
| 2
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,212
|
puml
|
@startuml
interface UpgradeCallback
interface Upgrade
interface OnUpgradeListener
interface Download
interface OnDownloadListener
interface Install
interface OnUpgradeDialogClickListener
class UpgradImp
class DownloadImp
class InstallImp
class UpgradeDialog
class UpgradeService
class JobServiceImp
class AppUpgradeInfo
class AppUpgradeExecutor
class WrappedUpgradeCallback
interface UpgradeCallback{
void afterUpgrade(boolean success)
void onProgressUpgrade(int progressPercentage)
void cancel()
}
interface Upgrade{
void checkUpdate(String checkUpgradeUrl, OnUpgradeListener onUpgradeListener)
void update(AppUpgradeInfo appUpgradeInfo, OnUpgradeListener onUpgradeListener)
}
interface OnUpgradeListener{
void afterCheckUpdate(boolean hasNewVersion, AppUpgradeInfo appUpgradeInfo)
void afterUpgrade(boolean success)
void onProgressUpgrade(int progressPercentage)
}
interface Download{
void download(AppUpgradeInfo appUpgradeInfo, OnDownloadListener onDownloadListener)
}
interface OnDownloadListener{
void afterDownload(boolean isSuccess,String locaSavePath)
void onProgressDownload(int progressPercentage)
}
interface Install{
void install(String localSavePath)
}
interface OnUpgradeDialogClickListener{
void clickUpgrade();
void clickcancel();
}
class AppUpgradeExecutor{
-WrappedUpgradeCallback wrappedUpgradeCallback
+void executor(String checkUpgradeUrl)
}
class UpgradImp{
-Download download
-Install install
-AppUpgradeInfo appUpgradeInfo
-OnUpgradeListener onUpgradeListener
}
class DownloadImp{
-OnDownloadListener onDownloadListener
}
class InstallImp{
}
class UpgradeDialog{
-AppUpgradeInfo appUpgradeInfo
-OnUpgradeDialogClickListener onUpgradeDialogClickListener
}
class UpgradeService{
-Upgrade upgrade
-UpgradeCallback upgradeCallback
+void setUpgradeCallback(UpgradeCallback upgradeCallback)
}
class JobServiceImp{
-Upgrade upgrade
}
class AppUpgradeInfo{
-int latestVersionCode;
-String latestVersionName;
-String downloadUrl;
-String minOSVersion;
-int size;
+int getLatestVersionCode()
+void setLatestVersionCode(int latestVersionCode)
+String getLatestVersionName()
+void setLatestVersionName(String latestVersionName)
+String getDownloadUrl()
+void setDownloadUrl(String downloadUrl)
+String getMinOSVersion()
+void setMinOSVersion(String minOSVersion)
+int getSize()
+void setSize(int size)
}
AppUpgradeExecutor o--> WrappedUpgradeCallback
AppUpgradeExecutor ..> UpgradeService
AppUpgradeExecutor ..> JobServiceImp
WrappedUpgradeCallback ..|> UpgradeCallback
WrappedUpgradeCallback o--> UpgradeCallback
UpgradeService *--> Upgrade
UpgradeService o--> UpgradeCallback
UpgradeService ..> UpgradeDialog
UpgradeService ..> OnUpgradeDialogClickListener
UpgradeService ..> OnUpgradeListener
JobServiceImp *--> Download
UpgradeDialog o--> AppUpgradeInfo
UpgradeDialog o--> OnUpgradeDialogClickListener
UpgradImp..|> Upgrade
UpgradImp *--> Download
UpgradImp *--> Install
UpgradImp o--> AppUpgradeInfo
UpgradImp ..> OnDownloadListener
DownloadImp ..|> Download
DownloadImp ..>OnDownloadListener
InstallImp ..|> Install
@enduml
| false
| true
| false
| false
|
class
|
51faff710bc2ee09ff75f4a9be4295a05aefe670
|
f6e8978f34d6768a763d8b2a93a1b34676deffb9
|
/doc/UMLClass.puml
|
d924b5f6d82c2ea6d0d989790dad7f7534cf98dd
|
[] |
no_license
|
dzienki/PasswordGenerator
|
7ce51bc3d908da76dac90d200ef37fdf016a6a92
|
908f92565efc373dee2de112cbc4a7b486191232
|
refs/heads/master
| 2020-11-30T14:37:33.963649
| 2020-01-15T23:55:58
| 2020-01-15T23:55:58
| 230,419,264
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,636
|
puml
|
@startuml
package "view"{
class view.Window<? extends JFrame>{
{static} - HEIGHT : int
{static} - WIDTH : int
- algorithmChooser : JComboBox<String>
- allowedChar : JTextArea
- copyPassword : JButton
- digitsQuantity : JSpinner
- emailAdress : JTextField
- generate : JButton
- lowerCaseQuantity : JSpinner
- numberOfCharacters : JTextField
- panel1 : JPanel
- passwordDisplay : JTextArea
- passwordQuantity : JSpinner
- saveToFile : JButton
- sentToEmail : JButton
- specialQuantity : JSpinner
- upperCaseQuantity : JSpinner
+ Window()
+ getAlgorithmChooser(): JComboBox<String>
+ getAllowedChar() : JTextArea
+ getCopyPassword(): JButton
+ getDigitsQuantity(): JSpinner
+ getEmailAdress(): JTextField
+ getGenerate(): JButton
+ getLowerCaseQuantity() : JSpinner
+ getNumberOfCharacters(): JTextField
+ getPasswordDisplay(): JTextArea
+ getPasswordQuantity() : JSpinner
+ getSaveToFile() : JButton
+ getSentToEmail() : JButton
+ getSpecialQuantity() : JSpinner
+ getUpperCaseQuantity() : JSpinner
- createUIComponents() : void
}
}
package "mailSender" {
class mailSender.sendMail {
{static} + sendEmail(email : String, text: String) : void
}
}
package "generators" {
abstract class generators.PasswordGenerator {
{static} + GeneratePasswordWithOwnChar(digits : int, allowedChars : String) : String
{static} + GeneratePasswordWithRandom(upper : int, lower : int, digit: int, special: int): String
{static} + GeneratePasswordWithSecureRandom(upper : int, lower : int, digit: int, special: int): String
{static} - deleteEndLines(chars : String) : String
{static} - shuffleCharacters(input : StringBuilder) : StringBuilder
}
}
package "controllers" {
class controllers.WindowController {
- charsList : CharsList
+ WindowController()
- checkChosenAlgorithm() : void
- coppyPasswordsToClipBoard() : void
- initButtons() : void
- initSpinners() : void
- printCharList() : void
- savePasswordsToFile() : void
- updateContent() : void
}
}
package "charsHolder" {
class charsHolder.CharsList {
- firstDigit : int
- firstLowerCase : int
- firstUpperCase : int
- lastDigit : int
- lastLowerCase : int
- lastUpperCase : int
- rand : Random
- secureRandom : SecureRandom
- symbols : char[]
+ CharsList()
+ getDigitList() : char[]
+ getLowerList() : char[]
+ getRandomDigitChar() : char
+ getRandomLowerChar() : char
+ getRandomSymbolChar() : char
+ getRandomUpperChar() : char
+ getSecureRandomDigitChar() : char
+ getSecureRandomLowerChar() : char
+ getSecureRandomSymbolChar() : char
+ getSecureRandomUpperChar() : char
+ getSymbolsList() : char[]
+ getUpperList() : char[]
+ getWholeCharString() : char[]
- getStringFromAscii(first : int, last : int) : String
}
}
class Main{
+ {static} main(args : String)
}
generators.PasswordGenerator o-- charsHolder.CharsList
Main o-- controllers.WindowController
controllers.WindowController --> generators.PasswordGenerator
controllers.WindowController --> mailSender.sendMail
controllers.WindowController --|> view.Window
controllers.WindowController o-- charsHolder.CharsList : charsList
@enduml
| false
| true
| false
| false
|
class
|
30f30910b2c2b31186a45c968230e89b52159ca1
|
7262ce4e38e365bf1077a7f52a8fda117f93ec56
|
/Schema.puml
|
ef82c951a08d3b9879d28768fde8a649d4ee3433
|
[] |
no_license
|
slava-basko/identity-server
|
de1ded99a3c515a96755673603d086489653c090
|
f4ba04c3faf51f89bab6f4d572c921bdcfa0cae0
|
refs/heads/master
| 2020-06-13T10:40:01.474936
| 2019-08-30T13:49:21
| 2019-08-30T13:49:21
| 194,629,992
| 0
| 1
| null | 2020-02-12T21:11:05
| 2019-07-01T08:17:11
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 609
|
puml
|
@startuml
object User {
String email
String password
Role[] roles
}
object Role {
String name
Permission[] permissions
}
object DomainEntity {
String name
}
object Permission {
String operation
DomainEntity domainEntity
BusinessRule[] businessRules
}
object BusinessRule {
String name
String type
String rule
}
object Token {
User user
String token
DateTime expire
}
Token o-- User : has one >
User *-- Role : has many >
Role *-- Permission : has many >
Permission o-- DomainEntity : has one >
Permission *- BusinessRule : has many >
@enduml
| false
| true
| false
| false
|
class
|
533546623dc4d8f018eaca24d6192db0917f6881
|
f843c9d5922c2ef92cc3ca50f20f44184ed27ef8
|
/src/main/java/Strategie/Rabais/README.puml
|
acb340e920d13412d7e81afb0351562ac2e794f0
|
[] |
no_license
|
yvanross/LOG121-GOF-exemples
|
c80a4d1b29f0b953e4666e100a82d4fde1923bea
|
7cff56d019b40901ed54b85a62d69317cf61da59
|
refs/heads/master
| 2023-05-04T07:39:48.742354
| 2021-05-21T13:43:50
| 2021-05-21T13:43:50
| 261,219,115
| 2
| 25
| null | 2021-01-25T22:44:14
| 2020-05-04T15:11:44
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 883
|
puml
|
@startuml diagamme de classe
class Vente {
prixAvantRabais(): Double
getCost(): Double
setStrategyRabais(IStragegyRabais strategy): void
}
interface IStrategyRabais{
getCost(Vente vente) : Double
}
class StrategiePourcentageRemise{
strategyRabais : IStrategyRabais
pourcentageRemise : Double
getCost(Vente vente) : Double
StrategiePourcentageRemise(Vente contexte, Double pourcentageRemise){
}
class StrategieRemiseAPartirDe{
strategyRabais : IStrategyRabais
rabais : Double
aPartirDe : Double
getCost() : Double
StrategieRemiseAPartirDe(Vente contexte, Double rabais, Double aPartirDe){
}
IStrategyRabais <|.. StrategiePourcentageRemise
IStrategyRabais <|.. StrategieRemiseAPartirDe
Vente -> IStrategyRabais: stragegie de vente
Vente <.. IStrategyRabais: dépend de
@enduml
@startuml diagamme de séquence
title N/A
@enduml
| false
| true
| true
| false
|
sequence
|
557086a81aeb1924115f043267836443634e4013
|
7574efb7885ccd7b95bcb950a7695c7e7a0a0120
|
/src/factoryMethod/docs/ClassDiagram.puml
|
ca0fa4e5f88fca0bfe309af4136a83aa2c441fa3
|
[] |
no_license
|
Yaote/Senao_DesignPattern
|
3956c6f13ebb831fc05e9262c9e9ffd0dc063d5d
|
65934068340c0416d817db08cf5811f60d3ae08b
|
refs/heads/master
| 2021-05-13T15:10:45.947225
| 2018-01-18T17:27:23
| 2018-01-18T17:27:23
| 116,761,099
| 0
| 0
| null | 2018-01-18T17:27:24
| 2018-01-09T03:28:23
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 630
|
puml
|
@startuml Factory Pattern
class BankFactory{
-Map<BankEnum, BankService> bankServiceMap;
+BankFactory();
+void init();
+BankService getBankService();
}
interface BankService {
+String authorize()
}
class NCCCBankService{
+String authorize()
}
class CTBCBankService{
+String authorize()
}
class TSPGBankService{
+String authorize()
}
class CATHYBankService{
+String authorize()
}
class BankEnum
BankService <|.. NCCCBankService
BankService <|.. CTBCBankService
BankService <|.. TSPGBankService
BankService <|.. CATHYBankService
BankFactory ..> BankEnum
BankFactory ..> BankService
@enduml
| false
| true
| false
| false
|
class
|
3e79299af08c5dc7331d55ae951635d6ebcaccaf
|
11eb610c81465b53d61aaf77f1f30bfd16eecd47
|
/diagrams/class-general/src/class-mapCreator.puml
|
eb1e702fbeb08cc71b5e978ec7e8bc7c915632b8
|
[] |
no_license
|
bauerkamil/hogwartSim
|
a0ff366bb764c325d4d98907edfbf06188a37455
|
cc47e0cd27040520c4916d79cf64b12436591442
|
refs/heads/main
| 2023-05-24T10:08:02.273423
| 2021-06-15T21:42:28
| 2021-06-15T21:42:28
| 361,216,537
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 334
|
puml
|
@startuml
'https://plantuml.com/class-diagram
skinparam classAttributeIconSize 0
package hogwartSim.map.creator{
interface IMapCreator{
+createMap(): IMap
+seed: long
}
class MapCreator{
-mapSize: int
+mapCreator(int, long)
+createMap(): IMap
}
IMapCreator <|-- MapCreator
}
@enduml
| false
| true
| false
| false
|
class
|
f9828872bc7b5ff04e59e418a4ae73de1c76d976
|
4621f2eaaf89c3ba9bba2ec286d090c768c3257c
|
/src/TemplateMethod.puml
|
e3dd89bc13d43b8e2d47132e8df7e9d86b42df2d
|
[] |
no_license
|
c16318/TemplateMethod
|
5224600c5465843c6fd7a933a36fe91ee4c7aa58
|
4763603034013af1a4f53cbf42b4f35c6fadb26a
|
refs/heads/master
| 2020-06-01T06:18:11.836871
| 2017-06-12T07:21:26
| 2017-06-12T07:21:26
| 94,065,278
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 250
|
puml
|
@startuml
class AbstractDisplay{
open()
print()
close()
display()
}
class CharDisplay{
open()
print()
close()
}
class StringDisplay{
open()
print()
close()
printLine()
}
AbstractDisplay <|-- CharDisplay
AbstractDisplay <|-- StringDisplay
@enduml
| false
| true
| false
| false
|
class
|
b78f72defbe8772036a0b781a5c781659c2d113f
|
aebd34b9e382092a2c1243e7b0653cd10e6b15b9
|
/diagrams/farmacyFamily-usecases.puml
|
d8a583edf98a71f1d7ee0318c4d8eab89868f061
|
[] |
no_license
|
rachagullak/Arkhamtectures
|
eeb59374dcc72a5d522eb492c11e828245ab85a5
|
8c11bf198b3ef4952ad5435f195d9deece0826cd
|
refs/heads/main
| 2023-08-29T12:25:30.599003
| 2021-11-03T15:50:24
| 2021-11-03T15:50:24
| 422,800,412
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,843
|
puml
|
@startuml
'https://plantuml.com/use-case-diagram
skinparam actorStyle awesome
left to right direction
Package Customer {
actor "Transactional Customer" as transactionalCustomer
actor "Engaged Customer" as engagedCustomer
actor "Support Community" as supportCommunity
}
Package SystemActors {
actor Admin
actor System
}
Package Professionals {
actor Dietitian
actor Clinician
}
transactionalCustomer --> (Create Profile)
Admin --> (Create Profile)
engagedCustomer --> (Preference personalization)
engagedCustomer --> (Provide dietary needs)
Admin --> (Create Forums)
Admin --> (Modify Forums)
transactionalCustomer --> (Subscribe to Forum)
engagedCustomer --> (Subscribe to Forum)
engagedCustomer --> (Unsubscribe to Forum)
Admin --> (Delete Forums)
Dietitian --> (Create Blogpost)
Clinician --> (Create Blogpost)
Dietitian --> (Modify Blogpost)
Clinician --> (Modify Blogpost)
Dietitian --> (Delete Blogpost)
Clinician --> (Delete Blogpost)
Dietitian --> (Create Events)
Clinician --> (Create Events)
Dietitian --> (Create Classes)
Clinician --> (Create Classes)
Dietitian --> (Modify Classes)
Clinician --> (Modify Classes)
Dietitian --> (Delete Classes)
Clinician --> (Delete Classes)
engagedCustomer --> (Enroll to Events and classes)
engagedCustomer --> (Cancel event or class enrolment)
Dietitian --> (Provide generic advice)
Dietitian --> (Access to customer medical information)
Clinician --> (Access to customer medical information)
Dietitian --> (Send message)
engagedCustomer --> (Send message)
Dietitian --> (Receive message)
engagedCustomer --> (Receive message)
System --> (Send on-boarding email to Transactional Customer)
Clinician --> (Trigger request to test every 3 months)
Clinician --> (Analyze results )
System --> (Tagging food to dietary choices)
System --> (Rank dietary choices by Farmacy Food Fridge)
@enduml
| false
| true
| false
| false
|
usecase
|
20494ce7176b585387b097b0baf078cbc513c0e1
|
4f2db1e9fa3ebb63cdb5580daef2006bd9b40d87
|
/use-case/diagrams/album.iuml
|
b73cf1296732b32f6902e2f884165212f2fd8fe2
|
[] |
no_license
|
arielazzi/desenvolvimento-de-software-II
|
f3420abbf2ba71e67510b559df918ccfdb9be497
|
99f88a365bc1933b7bd2c3abfd6d88df7e2920e8
|
refs/heads/master
| 2023-06-05T01:20:56.539391
| 2021-06-23T01:20:05
| 2021-06-23T01:20:05
| 343,940,350
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 691
|
iuml
|
@startuml album
left to right direction
:Usuario: as Usuario
:Acadêmico: as Academico
:Admnistrador: as admnistrador
Academico <|-- Autor
Usuario <|- Academico
Usuario <|-left- admnistrador
rectangle Sistema {
rectangle Conta {
(Autenticar usuário)
}
rectangle Album {
Autor -- (Criar Album)
Usuario -- (Visualizar albuns)
(Autenticar usuário) <. (Criar album) : includes
(Autenticar usuário) <. (Visualizar albuns) : includes
(Visualizar albuns) <|-- (Visualizar albuns novos)
(Visualizar albuns) <|-- (Visualizar albuns recentes)
(Visualizar albuns) <|-- (Visualizar todos os albuns)
}
}
@enduml
| false
| true
| true
| false
|
class
|
6add51d4d76bf32aa739bffe622400e155e1eac0
|
a81e562f727c45dbbca8c325630d0e26005d651c
|
/docs/plantuml/components/IconDisplay.puml
|
4cf368b099fa42437de6dcf5fa253ac50b10a927
|
[] |
no_license
|
kelvinleclaire/PA2
|
46768de9af832d892812d39b248bf1636eb52db3
|
39fc53a5ecbcdecd81ace88a5f681769dc62813c
|
refs/heads/main
| 2023-04-30T16:37:05.951439
| 2021-05-18T10:21:49
| 2021-05-18T10:21:49
| 368,485,770
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 206
|
puml
|
@startuml
class IconDisplay {
..props ..
icon: string
..consts ..
icon: string
..functions ..
useEffect(): void
PassIcon(): JSX.Element
FailIcon(): JSX.Element
}
@enduml
| false
| true
| false
| false
|
class
|
72fde33eb3f96fecb7a97826ec27db11aaf7a1f4
|
a26bbd033192f4ea245a6dd3f166976b39459752
|
/3_Documentazione/design/be/jdbc.puml
|
0aeb0eb10f9843758987e4da7b1250c6ed71cc3d
|
[] |
no_license
|
giuliobosco/freqline
|
fdc673e09e4cfc96dc67a759788120b81fdbae46
|
e94256cc349797447cf414bbe4267ef45c89723e
|
refs/heads/master
| 2022-04-10T16:22:55.993289
| 2020-04-06T13:28:19
| 2020-04-06T13:28:19
| 206,082,972
| 3
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,475
|
puml
|
@startuml
skinparam classAttributeIconSize 0
package ch.giuliobosco.freqline.jdbc {
class DaoQueryBuilder {
- String database
- String table
- String[] attributes
+ DaoQueryBuilder(String database, Class <? extends Base> baseClass)
- void setDatabase(String database)
- void setTable(String table)
- void setAttributes(String[] attributes)
- String getDatabaseTable()
+ int getUpdateIdIndex()
+ String getAllQuery()
+ String getByIdQuery()
+ String getAddQuery()
+ String getUpdateQuery()
+ String getDeleteQuery()
}
class JdbcConnector {
- {static} String S_USERNAME
- {static} String S_PASSWORD
- {static} String S_HOST
- {static} String S_PORT
- {static} String S_DATABASE
- {static} String S_USE_SSL
- {static} String S_USE_UNICODE
- {static} String S_JDBC_TIMEZONE_SHIFT
- {static} String S_LEGACY_DATETIME
- {static} String S_SERVER_TIMEZONE
- {static} String S_ZERO_TIME_BEHAVOIR
- {static} String PORT
- {static} String USE_SSL
- {static} String USE_UNICODE
- {static} String JDBC_TIMEZONE_SHIFT
- {static} String LEGACY_DATETIME
- {static} String SERVER_TIMEZONE
- {static} String ZERO_DATE_TIME_BEHAVOIR
- String username
- Stirng password
- String host
- String port
- String database
- boolean useSsl
- boolean useUnicode
- boolean jdbcTimezoneShift
- boolean legacyDateTime
- String serverTimezone
- String zeroDateTimeBehavoir
- Connection connection
+ Connection getConnection()
+ Connection getOpenConnection()
+ DaoQueryBuilder getQueryBuilder(Class clazz)
+ JdbcConnector(...)
+ JdbcConnector(String username, String password, String host, int port, String database)
+ JdbcConnector(String propertiesFilePath)
- String getConnectionString()
- Properites getConnectionProperties()
+ void close()
+ void openConnection()
+ writeProperties(String propertiesFilePath)
}
class JapiConnector() {
- {static} String PROPERTIES_FILE_PATH
- {static} boolean SSL
+ JapiConnector()
+ {static} JdbcConnector initialize()
+ {static} Connection get()
}
}
@enduml
| false
| true
| false
| false
|
class
|
cb1989b3c790606c1cfdc944cbce48080a9ded45
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/CategoryChangeAssetNameAction.puml
|
e435685f07ad28a1f717b66dda2ad9ad18b1a9bb
|
[] |
no_license
|
commercetools/commercetools-api-reference
|
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
|
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
|
refs/heads/main
| 2023-09-01T05:22:42.100097
| 2023-08-31T11:33:37
| 2023-08-31T11:33:37
| 36,055,991
| 52
| 30
| null | 2023-08-22T11:28:40
| 2015-05-22T06:27:19
|
RAML
|
UTF-8
|
PlantUML
| false
| false
| 527
|
puml
|
@startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface CategoryChangeAssetNameAction [[CategoryChangeAssetNameAction.svg]] extends CategoryUpdateAction {
action: String
assetId: String
assetKey: String
name: [[LocalizedString.svg LocalizedString]]
}
interface CategoryUpdateAction [[CategoryUpdateAction.svg]] {
action: String
}
@enduml
| false
| true
| false
| false
|
class
|
14af2ad6fca0ab1f043f16882a9972545c6746e4
|
06132bb306986359c8958effdb12134da4aa9a23
|
/spring-cloud-design-pattern/structure-composite-pattern/src/main/resources/static/safe/diagram-demo.puml
|
c484429182a98168c72463a99e5f3e56ede0f2a6
|
[] |
no_license
|
sunnyzhy/Design-pattern
|
1fe797d2af0e102be63704aad5a5e3a3d8feb5a9
|
665b5cde412e965665469af1b5011c6c280ea7d0
|
refs/heads/master
| 2023-07-01T15:50:37.005870
| 2023-06-13T09:33:49
| 2023-06-13T09:33:49
| 55,023,406
| 2
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 426
|
puml
|
@startuml
interface Component {
+String getName()
+void operation()
}
class File implements Component {
-String name
+File(String name)
+String getName()
+void operation()
}
class Folder implements Component {
-String name
-List<Component> componentList
+Folder(String name)
+void add(Component)
+void remove(Component)
+Component getChild(int i)
+String getName()
+void operation()
}
@enduml
| false
| true
| false
| false
|
class
|
84b15f1aecca95f43fb906a27efbedf6aaa9100e
|
72c605a8372b04f19ec6ee6cefaf5517524d8f74
|
/LevelCrossing/LevelCrossingConcreteEnv.emi/src-models/output-LevelCrossingCS/output-Class.plantuml
|
5607416aef39ccd16ed20101bc35c7391e428214
|
[] |
no_license
|
ValentinBesnard/emi-deployment
|
73fba07d8f2cb6fabf82b4274bff564c3d17798e
|
d18eac496381bbf60ff6a2a0492083c8f0705a72
|
refs/heads/master
| 2022-04-15T22:09:51.331064
| 2020-02-24T07:03:54
| 2020-02-24T07:03:54
| 182,274,203
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,385
|
plantuml
|
@startuml
class "[[LevelCrossingSystem%3A%3AEntranceTCPort-Class.svg LevelCrossingSystem::EntranceTCPort]]" as LevelCrossingSystem_EntranceTCPort
class "[[LevelCrossingEnvironment%3A%3AEnvEntranceTCPort-Class.svg LevelCrossingEnvironment::EnvEntranceTCPort]]" as LevelCrossingEnvironment_EnvEntranceTCPort
class "[[LevelCrossingSystem%3A%3AExitTCPort-Class.svg LevelCrossingSystem::ExitTCPort]]" as LevelCrossingSystem_ExitTCPort
class "[[LevelCrossingEnvironment%3A%3AEnvExitTCPort-Class.svg LevelCrossingEnvironment::EnvExitTCPort]]" as LevelCrossingEnvironment_EnvExitTCPort
class "[[LevelCrossingSystem%3A%3ARailwaySignPort-Class.svg LevelCrossingSystem::RailwaySignPort]]" as LevelCrossingSystem_RailwaySignPort
class "[[LevelCrossingEnvironment%3A%3AEnvRailwaySignPort-Class.svg LevelCrossingEnvironment::EnvRailwaySignPort]]" as LevelCrossingEnvironment_EnvRailwaySignPort
class "Main" as LevelCrossingCS_Main {
+♦ env : [[LevelCrossingEnvironment%3A%3AEnvironment-Class.svg Environment]]
+♦ sys : [[LevelCrossingSystem%3A%3ASystem-Class.svg System]]
}
LevelCrossingSystem_EntranceTCPort -- LevelCrossingEnvironment_EnvEntranceTCPort : envTcEntrancePort
LevelCrossingSystem_ExitTCPort -- LevelCrossingEnvironment_EnvExitTCPort : envTcExitPort
LevelCrossingSystem_RailwaySignPort -- LevelCrossingEnvironment_EnvRailwaySignPort : envRailwaySignPort
@enduml
| false
| true
| true
| false
|
class
|
8b25d011565b558d4a1cc698862e7118724c4a65
|
0fc07e65dd376f17f35ecf643d34767654932510
|
/doc/usecases/xs2a-connector-examples-ReadAccount.puml
|
38333897f31395cf57b0bcdff202a5ba5a55f578
|
[
"Apache-2.0"
] |
permissive
|
adorsys/xs2a-connector-examples
|
2d61a7052d61683c15f194e14827ad788eaff7a9
|
47f1d0a8933d1ca79f7dbcb7a50786f8a16b513a
|
refs/heads/develop
| 2023-07-25T00:56:27.320198
| 2022-01-19T08:38:03
| 2022-01-19T08:38:03
| 161,804,680
| 12
| 9
|
Apache-2.0
| 2021-05-26T13:15:44
| 2018-12-14T15:35:09
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 829
|
puml
|
@startuml
entity XS2A as xs2a
entity CONNECTOR as con
entity ASPSP as aspsp
xs2a->con: Java Call Request Account List\n"withBalance (True/False)\nSpiContexData\nSpiAspspConsentDataProvider\nSpiAcountConsent"
|||
alt Dedicated Account Consent
con->aspsp: REST Call getAccountDetailsByIban\n"iban"
|||
aspsp-->con: Account Details
|||
else BankOffered / Global / AllPsd2 / AllAvailableAccounts Consent
|||
con->aspsp: REST Call getListOfAccounts
|||
aspsp-->con: list AccountDetails
|||
end
con-->xs2a: List SpiAccountDetails
|||
xs2a->con: Java Call Request AccountDetailForAccount\n"SpiContexData\withBalance (True/False)\nSpiAccountReference\nSpiAccountConsrnt\nSpiAspspConsentDataProvider"
|||
con->aspsp: REST Call getAccountDetailsById\n"AccountId"
|||
aspsp-->con: Account Details
|||
con-->xs2a: SpiAccountDetails
@enduml
| false
| true
| false
| false
|
sequence
|
aef073d3403bd22732174e0b5a77c0929da0285a
|
08786d4bd50e2964cce3311687b5fac65da7563c
|
/fixtures/diff/newModel.puml
|
6c0eede67eca947491f9eb4ed7232d85aae3faae
|
[
"MIT"
] |
permissive
|
yvettemuki/TypeFlow
|
9d21b2716ece6bf209971b01166e238081a72d97
|
781bff33ead00b3c3f2d4da917f5917bbfd718dd
|
refs/heads/master
| 2020-08-16T02:29:03.814440
| 2019-10-29T08:53:49
| 2019-10-29T08:53:49
| 215,443,124
| 0
| 0
|
MIT
| 2019-10-16T02:52:53
| 2019-10-16T02:52:52
| null |
UTF-8
|
PlantUML
| false
| false
| 494
|
puml
|
@startuml
skinparam class {
BackgroundColor<<InputEndpoint>> BurlyWood
BackgroundColor<<CommandLineInputEndpoint>> BurlyWood
BackgroundColor<<OutputEndpoint>> BurlyWood
}
class NumInput <<CommandLineInputEndpoint>>
class Add2 <<PureFunction>>
class AddAndPrint <<OutputEndpoint>>
class Multi3 <<PureFunction>>
NumInput --> NI::Integer
NI::Integer --> Add2
NI::Integer --> Multi3
Add2 --> A2::Integer
A2::Integer --> AddAndPrint
Multi3 --> M3::Integer
M3::Integer --> AddAndPrint
@enduml
| false
| true
| false
| false
|
sequence
|
331357172f891a18742f6d70d302254ec2fde2eb
|
a6dacfed7998847d8edcb6dbf4bed16068cd83b1
|
/time-based-domain-events/modelling/.assets/diagrams/event_postponding.puml
|
8cf2569e2317849d5c415d6a980042253dd20845
|
[] |
no_license
|
puncoz-bookmarks/ddd-public-materials
|
689258869da350a2e74e069dbfd5ad8735c1c2b8
|
8ed0700c4b5b955efc2f1e8405628578bad484be
|
refs/heads/master
| 2023-04-09T23:42:55.480926
| 2021-04-21T08:57:49
| 2021-04-21T08:57:49
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,382
|
puml
|
@startuml
!include <tupadr3/common>
!include <tupadr3/font-awesome-5/clock>
!include <tupadr3/font-awesome-5/calendar_alt>
!include <tupadr3/font-awesome-5/gripfire>
skinparam defaultFontName Purisa
skinparam handwritten true
skinparam backgroundcolor transparent
skinparam defaultTextAlignment center
scale 1200*480
storage EmployeeWorkCycleContext #Moccasin
storage BenefitsContext #SandyBrown
file EmployeeMarkedAsLeaver #Orange [
**EmployeeMarkedAsLeaver**
....
leavingDate
]
file EmployeePostponedLeaving #Orange [
**EmployeePostponedLeaving**
....
leavingDate
]
file EmployeeLeft #Orange [
**EmployeeLeft**
]
rectangle "ACL\n<<Event Scheduler>>" #SandyBrown {
file ScheduleEvent #DeepSkyBlue [
**ScheduleEvent**
....
effectiveDate
event
]
file ReScheduleEvent #DeepSkyBlue [
**ReScheduleEvent**
....
effectiveDate
event
]
rectangle Clock #Orange [
<$clock>
**ScheduledEvent**
....
effectiveDate
]
file PublishEvent #DeepSkyBlue [
**PublishEvent**
]
EmployeeWorkCycleContext -U-> EmployeeMarkedAsLeaver
EmployeeMarkedAsLeaver -> ScheduleEvent
EmployeeWorkCycleContext -R-> EmployeePostponedLeaving
EmployeePostponedLeaving -R--> ReScheduleEvent
ScheduleEvent -R-> Clock
ReScheduleEvent -U-> Clock
Clock -> PublishEvent
PublishEvent -> EmployeeLeft
}
EmployeeLeft -> BenefitsContext
@enduml
| false
| true
| false
| false
|
timing
|
90e40a6832920ad78aae1b9e09ca137982526cdd
|
f65b22067552e458fb27305fae2057091d07c9bc
|
/uml/2. Diagrama de casos de uso.puml
|
b1a89a824266fea285c8b4ec606dd29cc3ce4b14
|
[] |
no_license
|
0imdz/trackiD_JavaSE_Project
|
29f602357b29bd6f6c13f8b12bf6db0030fb5578
|
9b34154512aac1dd565e2bb5e36f46646e543f7b
|
refs/heads/master
| 2023-07-21T08:35:57.011457
| 2021-07-05T14:39:18
| 2021-07-05T14:39:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 328
|
puml
|
@startuml
left to right direction
:BBDD: --(Anyadir cancion)
:BBDD: --(Actualizar cancion)
:BBDD: --(Borrar cancion)
usecase UC1 as "Login o registro
--
Include: Borrar cancion
--
Include: Actualizar cancion
--
Include: Ver detalles de cancion
--
Include: Ver lista de canciones"
:Usuario: --> (UC1)
:BBDD: --> (UC1)
@enduml
| false
| true
| false
| false
|
usecase
|
e18b8dc024d270705fabd77ddc72754daee8fd07
|
f4da6e8a094f5658cf24ac46369905315f1c66a0
|
/p1940StagingRequest.plantuml
|
dad70a111264202f1f488a4698894542cff5769e
|
[
"Apache-2.0"
] |
permissive
|
p1940/p1940
|
43def654658c0f417798cdd39e924073559a1736
|
592b407cf7da1799da58a5591531802b7a8c9073
|
refs/heads/master
| 2021-03-29T19:28:23.448288
| 2020-07-22T16:02:08
| 2020-07-22T16:02:08
| 247,979,736
| 1
| 19
|
Apache-2.0
| 2021-01-26T05:06:30
| 2020-03-17T13:40:33
|
TeX
|
UTF-8
|
PlantUML
| false
| false
| 477
|
plantuml
|
@startuml
autonumber
participant "User" as User
participant "Mobile App" as MobileApp
participant "ATM\nTerminal" as ATM
participant "Mobile App\nServer" as MobileSrv
User -> MobileApp : User invokes app
MobileApp -> MobileApp : CWD Initiation\nand Amount Entry
MobileApp -> MobileSrv : Stage user's transaction
User -> ATM : User initiates transaction
ATM --> MobileApp : Pass terminal and session ID
MobileApp -> MobileSrv : Fulfill staged transaction
@enduml
| false
| true
| false
| false
|
sequence
|
a26f47c396c0bd2c567753f6a1b8574dcdd9ba3c
|
2c5f312da00b00e6eb2508a0d6f3203ca65a58c0
|
/docs/async-model/async-api.puml
|
7acf326980e037f59721ed80ae23781e95e78cc9
|
[
"Apache-2.0"
] |
permissive
|
Workiva/eva-client-service
|
7a152eee8c53ca8645ca5d4ab36e5d08d23505a8
|
e1d14af515d7e566db988dfa86f00065a8a066e8
|
refs/heads/master
| 2023-06-28T06:32:16.252750
| 2021-02-22T18:10:44
| 2021-02-22T18:10:44
| 190,780,445
| 2
| 1
|
NOASSERTION
| 2023-06-11T21:13:29
| 2019-06-07T17:03:23
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 15,020
|
puml
|
@startuml
actor Client
participant "Client-Service"
participant Query
database Cache
note left of Client
**Eva ETag Specification**
---
""**//<schema>//=//<payload>//**""
---
""**schema**"" defines the encoding of the payload.
** ""**EET1**"" = Eva ETag Version 1
---
EET1 Payload Specification
---
The payload is a base64 encoded JSON structure with the following members:
** t: the database T value **[Client-Service must deliver this]**
end note
== Polling & Ranging Asynchronous Query ==
group Initiation
Client -> "Client-Service" : ""**POST** /q/{tenant}/{category}?operation=polling""\n __//or//__\n""**POST** /q/{tenant}/{category}?operation=range""
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Accept-Ranges: entries **[__Optional: Range__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//If-Match: {etag} **[__Optional: Precond__]**//""
""//If-None-Match: {etag} **[__Optional: Precond__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""//Range: entries=0-99 **[__Optional: Range__]**//""
end note
"Client-Service" --> Client : ""**412** Precondition Failed"" - Invalid precondition (failure)
note over Client, "Client-Service"
If the ""**Range**"" header is larger then some specified configuration value,
a ""**416 Range Not Satisfiable**"" response should be expected.
end note
"Client-Service" --> Client : ""**416** Range Not Satisfiable"" - Invalid range (failure)
"Client-Service" -> Query : Start Query
note over Client, "Client-Service"
For ranged requests, the ""**Range**"" header is optional. If the ""**Range**""
header is in the request, then the service will wait until the initial
range can be satisfied, and return that block.
end note
activate Query
Query --> Cache : Add Cache Entry
note over Cache
The cache entry should
include the token, an
expiration, the status,
and any result. Note that
results may be paged.
end note
"Client-Service" --> Client : ""**202** Accepted"" - Non-ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 0""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 16:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""Location: /q/{tenant}/{category}/{token}""
""Retry-After: 120""
end note
note right
=Response
==
""Content-Type: application/json""
// **Note:** This response format could change according to the input//
// ""**Accept**"" header value //
""{""
"" "links": [{""
"" "rel": "status",""
"" "href": "/check/{tenant}/{category}/{token}"""
"" }]""
""}""
end note
"Client-Service" --> Client : ""**206** Partial Content"" - Ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 0""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""Content-Length: 100""
""Content-Range: entries=0-99/*""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 16:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""Location: /q/{tenant}/{category}/{token}""
""Retry-After: 120""
end note
note right
=Response
The first payload may not exist if the return type is the
**""//polling//""** operation type.
==
""Content-Type: multipart/mixed; boundry={boundry}""
""--{boundry}""
""Content-Type: application/vnd.eva+edn""
--
.. Body of the initial response ..
--
""--{boundry}""
""Content-Type: application/json""
// **Note:** This response format could change according to the input//
// ""**Accept**"" header value //
""{""
"" "links": [{""
"" "rel": "status",""
"" "href": "/check/{tenant}/{category}/{token}"""
"" }]""
""}""
""~--{boundry}--""
end note
deactivate "Client-Service"
end
...
group Polling Loop - Not complete
Client -> "Client-Service" : ""**GET** /q/{tenant}/{category}/{token}""
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//If-Match: {etag} **[__Optional: Precond__]**//""
""//If-None-Match: {etag} **[__Optional: Precond__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""//Range: entries=100-199 **[__Optional: Range__]**//""
end note
"Client-Service" --> Client : ""**404** Not Found"" - Invalid token (failure)
"Client-Service" --> Client : ""**412** Precondition Failed"" - Invalid precondition (failure)
note over Client, "Client-Service"
If the ""**Range**"" header is larger then some specified configuration value,
a ""**416 Range Not Satisfiable**"" response should be expected.
end note
"Client-Service" --> Client : ""**416** Range Not Satisfiable"" - Invalid range (failure)
group Determin Progress
else Query is Local
"Client-Service" <--> Query : Check Status
else Query is not Local
"Client-Service" <--> Cache : Check Status
end
"Client-Service" --> Client : ""**204** No Content"" - Non-ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 10""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 18:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""Retry-After: 120""
end note
"Client-Service" --> Client : ""**206** Partial Content"" - Ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 10""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""Content-Length: 100""
""Content-Range: entries=100-199/*""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 18:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""Retry-After: 120""
end note
deactivate "Client-Service"
note over Client, "Client-Service"
The client should wait the ""**Retry-After**"" number of seconds before attempting to
check again for results. If they fail to respond before the ""**Expires**"" time, the
client service should terminate the request and recover the resources. Note that the
""**Expires**"" time should be configurable and have a reasonable default. It is
assumed this would be in the minutes time frame (5 to 15 minutes?).
end note
end
...
group Polling Loop - Extend Expiration
Client -> "Client-Service" : ""**HEAD** /q/{tenant}/{category}/{token}""
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//If-Match: {etag} **[__Optional: Precond__]**//""
""//If-None-Match: {etag} **[__Optional: Precond__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
"Client-Service" --> Client : ""**404** Not Found"" - Invalid token (failure)
"Client-Service" --> Client : ""**412** Precondition Failed"" - Invalid precondition (failure)
"Client-Service" --> Client : ""**204** No Content"" - Typical response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 10""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 18:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""Retry-After: 120""
end note
deactivate "Client-Service"
end
...
group Polling Loop - Complete
Client -> "Client-Service" : ""**GET** /q/{tenant}/{category}/{token}""
deactivate Query
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//If-Match: {etag} **[__Optional: Precond__]**//""
""//If-None-Match: {etag} **[__Optional: Precond__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
""//Range: entries=200-299 **[__Optional: Range__]**//""
end note
"Client-Service" --> Client : ""**404** Not Found"" - Invalid token (failure)
"Client-Service" --> Client : ""**412** Precondition Failed"" - Invalid precondition (failure)
note over Client, "Client-Service"
If the ""**Range**"" header is larger then some specified configuration value,
a ""**416 Range Not Satisfiable**"" response should be expected.
end note
"Client-Service" --> Client : ""**416** Range Not Satisfiable"" - Invalid range (failure)
group Get Results
else Query is Local
"Client-Service" <--> Query : Check Status
"Client-Service" <-- Query : Retrieve Results
else Query is not Local
"Client-Service" <--> Cache : Check Status
"Client-Service" <-- Cache : Retrieve Results
end
"Client-Service" --> Client : ""**200** OK"" - Non-ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 50""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 18:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
"Client-Service" --> Client : ""**206** Partial Content"" - Ranged response (successful)
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""Age: 50""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""Content-Length: 84""
""Content-Range: entries 200-283/284""
""ETag: {etag-value}""
""Expires: Thu, 01 Dec 2018 18:00:00 GMT""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
deactivate "Client-Service"
note over Client, "Client-Service"
At this point the service should return the results of the query to the client. Note that this could
actually be returned many times. The ""**Expires**"" header should advance on each ""**GET**"" to
ensure the contents are not deleted inadvertently.
end note
end
...
group Cleanup
Client -> "Client-Service" : ""**DELETE** /q/{tenant}/{category}/{token}""
activate Query
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
"Client-Service" --> Client : ""**404** Not Found"" - Invalid token (failure)
"Client-Service" <--> Query : Check Status
"Client-Service" -> Query : Send Kill Command
Query -> Cache : Update Cache to \nreflect termination
Query -> Query : Terminate
note over Client, "Client-Service"
If there is any error on the termination process, a ""**500 Internal Server Error**"" should be expected.
end note
"Client-Service" --> Client : ""**500** Internal Server Error""
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
Query --> "Client-Service" : Termination verified
destroy Query
"Client-Service" --> Client : ""**200** OK""
deactivate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""ETag: {etag-value}""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
note over Client, "Client-Service"
This should follow the same rules as if the request expired. There should be a retention period for
the knowledge that the ""**{token}**"" actually existed, but eventually even that should be removed.
Also, if this is called before the polling can complete, this is effectively a kill signal to the
query engine and the query should recover the resources.
end note
end
...
group Polling Loop - Expired
Client -> "Client-Service" : ""**GET** /q/{tenant}/{category}/{token}""
activate "Client-Service"
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//If-Match: {etag} **[__Optional: Precond__]**//""
""//If-None-Match: {etag} **[__Optional: Precond__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
"Client-Service" --> Client : ""**404** Not Found"" - Invalid token (failure)
"Client-Service" --> Client : ""**412** Precondition Failed"" - Invalid precondition (failure)
group Get Results
else Query doesn't exist, so check cache
"Client-Service" <--> Cache : Check Status
"Client-Service" <-- Cache : Retrieve Results
end
"Client-Service" --> Client : ""**408** Request Timeout""
note left
**Headers**
""//_cid: {correlation-id} **[__Optional: Correlation__]**//""
""//Connection: keep-alive **[__Optional: Conn__]**//""
""//Keep-Alive: timeout=5, max=1000 **[__Optional: Conn__]**//""
end note
deactivate "Client-Service"
note over Client, "Client-Service"
This should only be returned for requests that //just// expired. If requests happens after
the expiration, a ""**404 Not Found**"" response is appropriate. This clean out time frame
should be configurable, and have a reasonable default (One Day?).
end note
end
@enduml
| false
| true
| false
| false
|
usecase
|
818d2fff942547bb2cf61fc8d0aaf7e8962c3887
|
71a886e08b95bc6eb6bcf83fee1e494a0be5c231
|
/architecture/src/main/resources/diagrams/qq/activity.puml
|
092695bf6d350fc91b448003dc7ddfc8b1e798d6
|
[] |
no_license
|
siarhei/java8
|
6cfce577f9c25daecc930042a71347998a5988e1
|
18201e75ddfca19415a63dbddfe031162c4738e2
|
refs/heads/master
| 2021-09-08T04:01:25.935910
| 2021-09-06T17:01:51
| 2021-09-06T17:01:51
| 147,394,381
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 635
|
puml
|
@startuml
(*) --> if "Customer exists?"
->[Yes] "Gather
0. Pick Risk State
1. Insured Info
2. Driver Info
3. Vehicle Info"
else
-right->[No] "Register Customer"
endif
--> "Gather
0. Pick Risk State
1. Insured Info
2. Driver Info
3. Vehicle Info"
-> "Select Coverages
for 'Standard' package
and coverageType (Split/Single)"
'note left : "Based on the chosen Risk State"
-down-> "Save Quote"
-> "Validate Quote" as validate
if "Validation Fails?" then
->[Yes] "Fix Problems
& Update Quote"
-> validate
else
-->[No] "Calculate Premium"
endif
-right-> "Purchase Policy"
-->(*)
@enduml
| false
| true
| false
| false
|
activity
|
a52486ab6dae457819a5bfd5ae8bb162fadac526
|
6d6600eb670f57682b9c5264113ae56911acd6c2
|
/apigateway-service/docs/design.puml
|
c63e77ad8328e192550c0ea67b2add47022e5bdd
|
[] |
no_license
|
michaljirman/newsapp
|
d5f64e6e79e17d1e5e93cd4d2bab9b6ed921df25
|
e715deec1c72d2ab1e766a48382a535998e22efa
|
refs/heads/master
| 2020-11-29T15:34:56.198240
| 2019-12-29T12:54:44
| 2019-12-29T12:54:44
| 230,151,904
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,779
|
puml
|
@startuml
scale 0.7
participant "mobile app" as mobileapp
participant "apigatewaysvc" as apigatewaysvc
participant "newsfeedersvc" as newsfeedersvc
database "newsfeedersvc-postgres" as db
alt Connect to the newsfeedersvc
apigatewaysvc--[#green]>newsfeedersvc: connect to service via gRPC
newsfeedersvc--[#green]>db: connect to DB
end
alt get all feeds
mobileapp->apigatewaysvc: GET: /newsfeeder/feeds [Rest API]
apigatewaysvc-[#0000FF]>newsfeedersvc: GetFeedsRequest [GRPC]
newsfeedersvc<->db: retrieve feeds from the DB
newsfeedersvc-[#0000FF]>apigatewaysvc: GetFeedsReply [gRPC]
apigatewaysvc-->mobileapp: list of feeds [Rest API]
end
alt get feeds by category or provider
mobileapp->apigatewaysvc: GET: \n/newsfeeder/feeds?category=UK \n/newsfeeder/feeds?provider=Reuters \n[Rest API]
apigatewaysvc-[#0000FF]>newsfeedersvc: GetFeedsRequest [GRPC]
newsfeedersvc<->db: retrieve feeds from the DB
newsfeedersvc-[#0000FF]>apigatewaysvc: GetFeedsReply [gRPC]
apigatewaysvc-->mobileapp: list of feeds [Rest API]
end
alt create a new feed
mobileapp->apigatewaysvc: POST: /newsfeeder/feeds [Rest API]
apigatewaysvc-[#0000FF]>newsfeedersvc: CreateFeedRequest [GRPC]
newsfeedersvc<->db: store a new feed to the DB
newsfeedersvc-[#0000FF]>apigatewaysvc: CreateFeedReply [gRPC]
apigatewaysvc-->mobileapp: feed ID and resource location [Rest API]
end
alt get articles by feed ID
mobileapp->apigatewaysvc: GET: /newsfeeder/feeds/1/articles [Rest API]
apigatewaysvc-[#0000FF]>newsfeedersvc: GetArticlesRequest [GRPC]
newsfeedersvc->newsfeedersvc: processes the feed URL (gofeed)
newsfeedersvc->newsfeedersvc: prepare web site thumbnail URL (api.urlbox.io)
newsfeedersvc-[#0000FF]>apigatewaysvc: GetArticlesReply [gRPC]
apigatewaysvc-->mobileapp: list of articles [Rest API]
end
@enduml
| false
| true
| false
| false
|
sequence
|
cb95686f6ba18f2eded39201df49388d78e6ca94
|
fafaf973381b21bea8eb334545ded62282cba3a2
|
/iterator/Iterator.plantuml
|
9b9c1263225a8eeb2efb83f506614e0587977567
|
[] |
no_license
|
recepkaraca/DesignPatternsCourse
|
d9edc61009b4313a08b0383473b0d97f8fb0a2dd
|
69f507ebec842c6b50e9a2a093496f62760170fe
|
refs/heads/master
| 2022-09-11T10:19:54.206890
| 2020-06-02T22:51:09
| 2020-06-02T22:51:09
| 245,816,321
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 731
|
plantuml
|
@startuml scenario_uml
skinparam classAttributeIconSize 0
left to right direction
abstract class Iterator{
+Key()
+Current()
+MoveNext()
+Reset()
}
abstract class IteratorAggregate{
+IEnumerator GetEnumerator()
}
class CarIterator{
-CarCollection _collection
-int _position
-bool _reverse
+CarIterator()
+object Current()
+int Key()
+bool MoveNext()
+void Reset()
}
class CarCollection{
+ReverseDirection()
+List<string> getItems()
+void AddItem()
+IEnumerator GetEnumerator()
}
CarCollection ..> CarIterator : create
CarCollection --o CarIterator
CarIterator -|> Iterator
CarCollection -|> IteratorAggregate
IteratorAggregate ..> Iterator : create
@enduml
| false
| true
| false
| false
|
class
|
fc90c6abe94369ff0085d299c0cec97b49b8a6ec
|
35fb4960297c31a530317e50ed8ec31b8dfd671b
|
/BranchMerge/branch01withfiles.puml
|
5ba11775809f3e5d13eae85e3dc5c2b41e66790b
|
[] |
no_license
|
jalbertomr/githubBloggerDoc
|
cedf2e38f54b3ee620ae7d1a38a3ce860d3bf166
|
a36f5650b5252967f56ce6bcfba3e790908e1edb
|
refs/heads/main
| 2023-01-31T04:40:23.795375
| 2020-12-16T04:35:45
| 2020-12-16T04:35:45
| 321,867,336
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,239
|
puml
|
@startuml
scale 350 width
title <color:silver><size:25>Very simple Branch and Merge with files before merge branch_01\n jalbertomr.blogspot.com
skinparam backgroundColor royalblue
skinparam arrowcolor white
skinparam arrowfontStyle bold
skinparam arrowfontcolor w
skinparam state {
backgroundColor SkyBlue
BorderColor gray
backgroundColor<< Stage >> LimeGreen
backgroundColor<< WorkDir >> Tomato
backgroundColor<< History >> Khaki
FontSize 16
FontStyle bold
fontcolor navy
}
state HEAD
state master
state branch_01
state 48ed828 <<History>>
state 3f95103 <<History>>
state 5ec83b9 <<History>>
state fe45123 <<History>>
[*] -up-> 48ed828 : commit_01
48ed828 -up-> 3f95103 : commit_02
3f95103 -up-> 5ec83b9 : commit_03
5ec83b9 -up-> fe45123 : commit_04
48ed828 : <size:20>file1 \n\n<size:20>A
3f95103 : <size:20>file1 \n\n<size:20>A\n<size:20>B
5ec83b9 : <size:20>file1 file2\n<size:20>A A\n<size:20>B\n<size:20>-->file2 A
fe45123 : <size:20>file1 file2\n<size:20>A A\n<size:20>B B\n<size:20>-->file2 A\n<size:20>-->file2 B
HEAD -right-> master
master -right-> 3f95103
branch_01 -right-> fe45123
@enduml
| false
| true
| false
| false
|
sequence
|
8865cd56c177f245b43bc5f2f44089bcc399c418
|
17fbc86fb934baca05b2b21e090624b46dc28495
|
/docs/diagrams/MeetingClassDiagram.puml
|
ad8e427dce0e02627e8fd11ec97d76c27c5c8038
|
[
"MIT"
] |
permissive
|
R-D-D-D/main
|
90493a10ef8aec062cd6aa94e9f2a2db6a9367e1
|
e58fb862bd4d88e72d11244fe03f16179a8ee2a8
|
refs/heads/master
| 2020-07-31T21:48:34.506942
| 2019-11-09T14:01:03
| 2019-11-09T14:01:03
| 210,764,412
| 0
| 0
|
NOASSERTION
| 2019-09-25T05:43:15
| 2019-09-25T05:43:15
| null |
UTF-8
|
PlantUML
| false
| false
| 458
|
puml
|
@startuml
skinparam classAttributeIconSize 0
Package Model <<Rectangle>> {
Class AddressBook
Package Project <<Rectangle>> {
Class Project
Class UniqueProjectList
Class Time
Class Description
Class Meeting {
}
Class Time {
+time: String
+date: Date
}
Class Description {
+description: String
}
}
}
AddressBook *--> "1" UniqueProjectList
UniqueProjectList o--> "*" Project
Project *--> "*" Meeting
Meeting *--> "1" Time
Meeting *--> "1" Description
@enduml
| false
| true
| false
| false
|
class
|
c94942b3d7b7c4db091caef98cf42ace656756fa
|
daa338659f3fb14a9053bfdd45d13dac11e00b86
|
/UML/include.puml
|
4052148679334310cd8d60bff54ccf5cad0066ee
|
[] |
no_license
|
r2d2m/unity-generate-uml
|
22ad90e47f781f9b7c895b4e504ec99df0eb86e2
|
d158475832d144f9fb0673f2c8970029a281df95
|
refs/heads/master
| 2023-05-04T20:53:00.676119
| 2021-03-24T21:21:32
| 2021-03-24T21:21:32
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 195
|
puml
|
@startuml
class ExampleComponent {
}
MonoBehaviour <|-- ExampleComponent
class OtherComponent {
}
MonoBehaviour <|-- OtherComponent
OtherComponent --> "ExampleComponent" ExampleComponent
@enduml
| false
| true
| false
| false
|
class
|
ed85e7d6abcb0bd2b20aef70e3404204ae15db9c
|
92ca9eba715c2dadc25851d47d3cef4779b54f03
|
/uml/lab.puml
|
96d1d802bed01469b65473519913bb8ec5a5d4b3
|
[
"MIT"
] |
permissive
|
CSCI305/csci305-java-lab
|
0415adf285f16aded558c4ab36c68357deda16fd
|
139c9cea33cce6e8c95c585fcb87372aef70a91e
|
refs/heads/master
| 2021-09-13T10:47:15.233559
| 2018-04-28T16:05:19
| 2018-04-28T16:05:19
| 115,332,420
| 1
| 94
|
MIT
| 2018-03-23T01:09:56
| 2017-12-25T11:21:30
| null |
UTF-8
|
PlantUML
| false
| false
| 1,032
|
puml
|
@startuml
package csci305.javalab {
abstract class Element {
# name : String
+ {abstract} compareTo() : Outcome
}
abstract class Player {
+ {abstract} play() : Element
}
class StupidBot {
+ play() : Element
}
class RandomBot {
+ play() : Element
}
class IterativeBot {
+ play() : Element
}
class LastPlayBot {
+ play() : Element
}
class HumanPlayer {
+ play() : Element
}
class MyBot {
+ play() : Element
}
class Main {
+ {static} main(args:String[]) : void
}
class Outcome {
- outcome : String
- value : String
}
class Rock {
+ compareTo() : Outcome
}
class Paper {
+ compareTo() : Outcome
}
class Scissors {
+ compareTo() : Outcome
}
class Lizard {
+ compareTo() : Outcome
}
class Spock {
+ compareTo() : Outcome
}
Player <|-- StupidBot
Player <|-- RandomBot
Player <|-- IterativeBot
Player <|-- LastPlayBot
Player <|-- HumanPlayer
Player <|-- MyBot
Element <|-- Rock
Element <|-- Paper
Element <|-- Scissors
Element <|-- Lizard
Element <|-- Spock
Main *--> Element
Main ..> Player
Element .> Outcome
}
@enduml
| false
| true
| false
| false
|
class
|
0e5b553a00e60a45d2d8d7ad2e9e52a0ec4fcfb4
|
c37bafc1eb38801ae9aa4b0061042478f909a7f6
|
/soml2puml/img/bsdd-graphql-soml-diagram-overview.puml
|
e50174b6bca350f15ac43314148df47fc6eac06e
|
[] |
no_license
|
VladimirAlexiev/soml
|
d2b747091b5d57576ac83af80ee4d67bdcbcf7cc
|
b00033c8dd3f4cb6a5ee4bdbaef12b169cf0e2aa
|
refs/heads/master
| 2023-06-08T15:47:29.437153
| 2023-05-29T06:06:03
| 2023-05-29T06:06:03
| 239,968,939
| 3
| 2
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,478
|
puml
|
@startuml
hide empty members
hide circle
left to right direction
skinparam nodesep 50
class "<:triangular_ruler:> Unit" as Unit
class "<:globe_with_meridians:> Language" as Language
class "<:earth_americas:> Country" as Country
class "<:books:> ReferenceDocument" as ReferenceDocument
class "<:label:> Domain" as Domain
class "<:file_folder:> Classification" as Classification
class "<:wrench:> Property" as Property
class "<:link:> PropertyRelation" as PropertyRelation
class "<:link:> ClassificationRelation" as ClassificationRelation
class "<:hammer_and_wrench:> ClassificationProperty" as ClassificationProperty
class "<:book:> PropertyValue" as PropertyValue
Domain "1..1" -d- "0..*" Classification : classification\n domain
Classification "1..1" -d- "0..*" ClassificationProperty : classificationProperty\n classification
Classification "0..*" -d- "0..1" Classification : parentClassification\n childClassification
Classification "2..2" -r- "0..*" ClassificationRelation : relation\n related
Property "1..1" -d- "0..*" ClassificationProperty : classificationProperty\n property
Property "2..2" -r- "0..*" PropertyRelation : relation\n related
Property -d-> "0..*" PropertyValue : allowedValue
ClassificationProperty -d-> "0..*" PropertyValue : allowedValue
@enduml
| false
| true
| false
| false
|
sequence
|
05060324b723acc7eb6a6b30e2394f807a43f98f
|
867ee10049e726cedd0de9b42fe9e372e51e9775
|
/QuizzGame/app/src/main/java/com/example/padurean/quizzgame/Diagrams/BattleshipLvl.puml
|
47dff301b8b72abc7f5aa16c4690293c4003708c
|
[] |
no_license
|
florinapadurean/Licenta
|
726ce08b39c1ee032edc1f1af64400c3842be8f4
|
73ff6cc990d43a5865ae5ba79ea141823c6a1f77
|
refs/heads/master
| 2021-01-21T11:03:07.281994
| 2017-07-07T21:32:09
| 2017-07-07T21:32:09
| 91,721,963
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,484
|
puml
|
@startuml
actor Player
Player->LevelsMenu:onClick(Button battleship)
LevelsMenu -> MainActivity: MainActivity.send("battleship");
LevelsMenu -> BattleshipLvl: getFragmentManager.replace(R.id.frag_menu,battleshipLvl,"battleshipfragment"))
BattleshipLvl -> BattleshipLvl: wait for friend\npress the same level
Socket->MainActivity: recieveMessage("battleship");
MainActivity->BattleshipLvl: setMessage("battleship");
BattleshipLvl->BattleshipLvl:counter=0;
BattleshipLvl->BattleshipLvl:chooseShipDialog.show()
loop
loop
Player->BattleshipLvl:onClick(ImageView rXcY)
note over Player,BattleshipLvl
when click on Image view with rXcY,change background color
end note
end
Player->BattleshipLvl:onClick(Button checkShip)
alt counter=0
BattleshipLvl->BattleshipLvl:ship=checkShipOnePiece(shipLength,type)
alt ship=true
BattleshipLvl->BattleshipLvl:counter=1;
else
BattleshipLvl->BattleshipLvl:setWater(type);
BattleshipLvl->BattleshipLvl:Toast.makeText(errormessage).show;
end
else counter=1
BattleshipLvl->BattleshipLvl:ship=checkShipOnePiece(shipLength,type)
alt ship=true
BattleshipLvl->BattleshipLvl:counter=2;
else
BattleshipLvl->BattleshipLvl:setWater(type);
BattleshipLvl->BattleshipLvl:Toast.makeText(errormessage).show;
end
else counter=2
BattleshipLvl->BattleshipLvl:ship=checkShipOnePiece(shipLength,type)
alt ship=true
BattleshipLvl->BattleshipLvl:counter=3;
else
BattleshipLvl->BattleshipLvl:setWater(type);
BattleshipLvl->BattleshipLvl:Toast.makeText(errormessage).show;
end
else counter=3
BattleshipLvl->BattleshipLvl:ship=checkShipTwoPieces(shipLength,type)
alt ship=true
BattleshipLvl->BattleshipLvl:counter=4;
else
BattleshipLvl->BattleshipLvl:setWater(type);
BattleshipLvl->BattleshipLvl:Toast.makeText(errormessage).show;
end
else counter=4
BattleshipLvl->BattleshipLvl:ship=checkShipOnePiece(shipLength,type)
alt ship=true
BattleshipLvl->BattleshipLvl:counter=5;
alt friend had placed its ships && WifiP2pGroup.isGroupOwner()
Battleshiplvl->MainActivity:MainActivity.send("I start");
end
else
BattleshipLvl->BattleshipLvl:setWater(type);
BattleshipLvl->BattleshipLvl:Toast.makeText(errormessage).show;
end
end
end
@enduml
| false
| true
| false
| false
|
usecase
|
d61b2e204c40d541e275f5ec5e0fc8b75e7abfc6
|
af8463ed465ec2d12fedb4b0cfa0dc8a74d822a1
|
/samples/element.puml
|
c7b19deac3689777731503e862ba1066ff1c6058
|
[
"MIT"
] |
permissive
|
transtone/plantuml-style-c4
|
4797ac9e00eebfa6835735a0dee29707c7e15dee
|
ded2cd2e491e25220d015c6beacc7203836072e0
|
refs/heads/master
| 2020-07-19T19:39:12.070882
| 2019-09-06T00:52:15
| 2019-09-06T00:52:15
| 206,503,109
| 0
| 0
|
MIT
| 2019-09-05T07:33:42
| 2019-09-05T07:33:42
| null |
UTF-8
|
PlantUML
| false
| false
| 517
|
puml
|
@startuml element
!includeurl https://raw.githubusercontent.com/transtone/plantuml-style-c4/master/core.puml
' uncomment the following line and comment the first to use locally
'!include core.puml
actor actor
agent agent
artifact artifact
boundary boundary
card card
cloud cloud
component component
control control
database database
entity entity
file file
folder folder
frame frame
interface interface
node node
package package
queue queue
stack stack
rectangle rectangle
storage storage
usecase usecase
@enduml
| false
| true
| false
| false
|
usecase
|
e9b325e4878c1fea8e361eb769a7c02a66d2d98d
|
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
|
/documentation/serviceApi/pm/performance/media/src/useCase5DeleteFlow.puml
|
df59bbfde50c40a616c76880ac275fcdf978ab06
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Legato-SDK
|
b2ed422108f4bbb5d3aff27123d3f31305fd808f
|
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
|
refs/heads/working-draft
| 2023-07-06T06:44:01.113378
| 2023-06-23T14:14:48
| 2023-06-23T14:14:48
| 94,903,642
| 5
| 4
|
Apache-2.0
| 2022-05-04T10:22:56
| 2017-06-20T15:00:38
| null |
UTF-8
|
PlantUML
| false
| false
| 584
|
puml
|
@startuml useCase5DeleteFlow
hide footbox
participant "Buyer/Client" as B
participant "Seller/Server" as S
entity "Performance Profile" as PP
activate PP
autonumber
note over PP: Performance Profile in `active` state
B -> S : DELETE /performanceProfile/{{id}} request
S -> S: find Performance Profile by id
S -> S: check Performance Profile state
S -> S: check if any Performance Job refers to Performance Profile
S -> PP: (causes status change)
PP -> PP: status: deleted
S --> B: DELETE /performanceProfile/{{id}} response
PP -> B: POST performanceProfileDeleteEvent
@enduml
| false
| true
| false
| false
|
sequence
|
a16b62c895cef7e9a55da3dea24ff141b95b10b8
|
7814fb0d5e6e12a5010f3e238120603103b351d1
|
/Layer2.puml
|
d61d9dfa82b2b779be837c3ecce4fad0523b05bc
|
[] |
no_license
|
LeifHelbig/Systemudvikling2021
|
3655ae2647bdce45b174a98e93fc933cc6548c56
|
dba042974776d66f178668b365ac5deafd2d6f3c
|
refs/heads/main
| 2023-05-30T21:34:24.866487
| 2021-06-14T20:56:41
| 2021-06-14T20:56:41
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 422
|
puml
|
@startuml
'https://plantuml.com/sequence-diagram
actor Citizen
Citizen -> UI: Login
activate UI
UI -> Web_services: Verificer bruger
activate Web_services
alt succesfuldt login
Web_services --> UI: bruger ok
UI -> Citizen: Menu
else Bruger ikke fundet
Web_services --> UI: invalid bruger
deactivate Web_services
UI -> Citizen: log ud
deactivate UI
end
@enduml
| false
| true
| false
| false
|
sequence
|
d85ca4146776a8d90c772bea0d034654d351d92c
|
ccc4a578b9cf4323653f87212acca9b3d12f1c23
|
/WasteWatcherApp/WasteWatcherApp/UML/Product/ProductNotFoundException.puml
|
cd09dd65f360685070c9ffcca12711ad5bd80b89
|
[] |
no_license
|
MarioGeier00/WasterWatcherApp
|
383531013b68fb52927ef4abf529e83bd6beff4b
|
88190459884fa0252ebfe63fdf3e1ce852eeb75f
|
refs/heads/dev
| 2023-06-04T09:37:22.112757
| 2021-07-01T11:57:02
| 2021-07-01T11:57:02
| 355,274,133
| 0
| 0
| null | 2021-05-19T12:48:26
| 2021-04-06T17:24:11
|
C#
|
UTF-8
|
PlantUML
| false
| false
| 93
|
puml
|
@startuml
class ProductNotFoundException {
}
Exception <|-- ProductNotFoundException
@enduml
| false
| true
| false
| false
|
class
|
4317dc03f82945eb1a4524179f4edfd777b9f5e2
|
898d82eeabb1fc98006e54be6f9d0ea7dd5df39c
|
/diagrams/send_chat.puml
|
8cfc3703d48585542957eee8ad42559a3d0ab2e3
|
[] |
no_license
|
lecler-i/mani-home-specs
|
d2d5de134f741109e7ad5523f5b069e685f27ec3
|
8eb4f57f86b83313fd684f4fd80a6327dd9b8abf
|
refs/heads/master
| 2021-01-19T09:05:59.945504
| 2017-05-18T21:27:49
| 2017-05-18T21:27:49
| 87,724,697
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 69
|
puml
|
Actor user as u
(chat) as temp
u .right.> temp : send message
| false
| true
| false
| false
|
usecase
|
7873c9a81a7402d3aaeea502aa2fbb6e02a0ce04
|
8cbc0a116c216c69199c509014aded16a9319427
|
/Diagrama.puml
|
07e4e6018253a2c53b6fb577745b432be9a72482
|
[] |
no_license
|
ricardohitalo/PCD-Project
|
b0c137cbd47f2a5a341b4cc7a820c9cec52500e4
|
28be19f8ed0fbc05f1a781c13f6931cb15f43a16
|
refs/heads/main
| 2023-06-02T19:31:21.106375
| 2021-06-18T02:31:57
| 2021-06-18T02:31:57
| 371,846,240
| 0
| 1
| null | 2021-06-17T03:00:33
| 2021-05-29T00:21:43
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,229
|
puml
|
@startuml
abstract class br.com.padroes.padroes.Bloco
annotation java.lang.Override
class br.com.padroes.padroes.BlocoEasy
class br.com.padroes.padroes.BlocoHard
class br.com.padroes.padroes.BlocoNormal
class br.com.padroes.padroes.Jogo
class br.com.padroes.padroes.Player
class br.com.padroes.padroes.Questao
class br.com.padroes.padroes.main
class java.util.ArrayList
class java.util.List
class java.util.Scanner
interface java.lang.Cloneable
br.com.padroes.padroes.Bloco ..> java.lang.Override
br.com.padroes.padroes.Bloco ..> java.util.ArrayList
br.com.padroes.padroes.Bloco ..> java.util.List
br.com.padroes.padroes.Bloco --|> java.lang.Cloneable
br.com.padroes.padroes.BlocoEasy --|> br.com.padroes.padroes.Bloco
br.com.padroes.padroes.BlocoHard --|> br.com.padroes.padroes.Bloco
br.com.padroes.padroes.BlocoNormal --|> br.com.padroes.padroes.Bloco
br.com.padroes.padroes.Jogo ..> java.util.ArrayList
br.com.padroes.padroes.Jogo ..> java.util.List
br.com.padroes.padroes.Jogo ..> java.util.Scanner
br.com.padroes.padroes.Player ..> java.lang.Override
br.com.padroes.padroes.Player --|> java.lang.Cloneable
br.com.padroes.padroes.Questao ..> java.lang.Override
br.com.padroes.padroes.Questao --|> java.lang.Cloneable
@enduml
| false
| true
| false
| false
|
class
|
c55f01ecf2d745b118db961cb82bb75d3be8ec4e
|
43cd9448f918c38fb4ad7e949eda5c3269beecce
|
/diagrammes/RechercherProfilDC.puml
|
23521810f1a20dbc26b2d9bf3367d872ce540848
|
[] |
no_license
|
Shulk7/technoWeb
|
600a2d316705d850f0c5483cab0ffe07e90979fb
|
a28e4e92be83a9ce57a013e4f91a2cea3221efff
|
refs/heads/master
| 2020-04-15T10:59:47.618172
| 2019-01-08T09:21:58
| 2019-01-08T09:21:58
| 164,609,318
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 506
|
puml
|
@startuml
title User Case 3 : Rechercher un profil
class Utilisateur{
nom
score
getProfil()
miseAjourScore()
}
class Recherche{
formulaire
trierScore()
effectuerRecherche()
}
class Critères{
champs
remplir()
selectionProfil()
}
class Profil{
prénom
nom
adresse
mail
sexe
âge
}
Utilisateur "1" -- "*" Recherche : effectue
Recherche "1" o-- "*" Critères : contient
Utilisateur "1" -- "*" Critères : remplit
Critères "*" -- "*" Profil : correspondent
Profil "1" --* "1" Utilisateur : possède
@enduml
| false
| true
| true
| false
|
class
|
82f723d756b790083d82bbfb486f57353871ed4d
|
48d00b8e5a32fc760f11dd4b2df3ce85f458aa2f
|
/input/images-source/ITI-66-seq.plantuml
|
4c250b6512d8afbcaf58df21c211644d1ce4867c
|
[
"CC-BY-4.0"
] |
permissive
|
IHE/ITI.MHD
|
37947b8e3ed9ff52d5bc8acd3cdcc76b46337a79
|
701e89414efc1b6bab10ca21e58afa4177518941
|
refs/heads/master
| 2023-08-17T03:15:35.257472
| 2023-08-02T15:55:24
| 2023-08-02T15:55:24
| 208,100,912
| 8
| 3
|
CC-BY-4.0
| 2023-08-02T02:24:12
| 2019-09-12T16:56:14
|
GLSL
|
UTF-8
|
PlantUML
| false
| false
| 373
|
plantuml
|
@startuml
title Find Document Lists [ITI-66]
hide footbox
participant "Document Consumer" as DocumentConsumer
participant "Document Responder" as DocumentResponder
activate "DocumentConsumer"
activate "DocumentResponder"
"DocumentConsumer" -> "DocumentResponder" : 1. Find Document Lists [ITI-66]
return
deactivate "DocumentConsumer"
deactivate "DocumentResponder"
@enduml
| false
| true
| false
| false
|
sequence
|
eb5c26f53a05572c49f105b345bcdc1cb2f8300a
|
625517108615e50180082e3c6d7d1444f643485e
|
/test/fixtures/use-case-directions/in.plantuml
|
818c7961de6367cd6047731854be9f283712eef6
|
[
"TCL",
"BSD-3-Clause",
"HPND",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"LicenseRef-scancode-openssl",
"MIT",
"LicenseRef-scancode-ssleay-windows",
"ISC",
"Apache-2.0",
"BSD-2-Clause"
] |
permissive
|
Enteee/plantuml-parser
|
180c370b3025bb7566bd86576d327364b3d5a425
|
765ac61d0c29c7c8f39310cfa7c385017997aeb8
|
refs/heads/master
| 2023-07-26T02:00:39.582527
| 2023-03-27T20:49:09
| 2023-03-27T20:49:09
| 177,091,179
| 132
| 33
|
Apache-2.0
| 2023-05-21T07:11:53
| 2019-03-22T07:20:31
|
TypeScript
|
UTF-8
|
PlantUML
| false
| false
| 192
|
plantuml
|
@startuml
title Directions - Use Case Diagram
actor :Admin: as A
A -> (Login)
A --> (Logout)
A -left-> (Copy / Paste)
A -up-> (Bulk Upload)
A ---> (Throw Computer Out Of Window!!!)
@enduml
| false
| true
| false
| false
|
usecase
|
2f77b1f352c13060792317e8f906a6dd70d06c47
|
7dd9f0e7561d88304dc705bb9967f49a24482733
|
/Communication/sequence-diagrams/data-connector-to-metadata-broker/images/broker_implementation_components.plantuml
|
001ab47d5b5cceb86e121ce46477d6bccde3a2a1
|
[
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
International-Data-Spaces-Association/IDS-G
|
ce613a38df3d02d931b08012e71b59343de0c253
|
96818d9a94162b39a3521f871df3c309e5b3c3d7
|
refs/heads/main
| 2023-09-04T12:59:33.385957
| 2023-08-30T09:19:15
| 2023-08-30T09:19:15
| 233,602,937
| 35
| 21
|
CC-BY-4.0
| 2023-08-30T09:19:16
| 2020-01-13T13:33:34
| null |
UTF-8
|
PlantUML
| false
| false
| 403
|
plantuml
|
@startuml
interface "HTTPS" as H
package "Broker" {
[Controller]
[Keycloak\n(Identity/Access management)]
[Apache Fuseki\n(RDF store)]
}
node "Other IDS Components" {
[Connector (Data Provider)]
}
note right of H
*request access token
*publish messages, e.g. ""ConnectorAvailable""
end note
[Connector (Data Provider)] .. H : announce status
H .. [Controller] : retrieve status
@enduml
| false
| true
| false
| false
|
class
|
8890f44ad2ce16c8131d3687e4e5e0e5730147c2
|
3a2f557271daa7744529f6d50e53220a506190bf
|
/doc/Address.plantuml
|
b160c9354f44d6907826ed0e6169fad8e373cebe
|
[] |
no_license
|
FlorianMarcon/BankModels
|
0bcba14a7fa260d7cc37a5ce972cad16e9d6c531
|
e3fafd273da7724eaaac083cf22ca00d7c90ce82
|
refs/heads/master
| 2022-12-29T00:57:05.129521
| 2020-10-10T12:04:27
| 2020-10-10T12:04:27
| 254,835,886
| 0
| 0
| null | 2020-04-18T11:58:04
| 2020-04-11T09:40:38
|
TypeScript
|
UTF-8
|
PlantUML
| false
| false
| 184
|
plantuml
|
@startuml
class User {
address: Address
}
class Address {
state : string
city : string
postCode: number
line1 : string
line2 : string
}
User::address -> Address
@enduml
| false
| true
| false
| false
|
state
|
8a49ccef23d2a5ad47c34ab28b06b6d8c61debd4
|
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
|
/PlantUML/LPoint2D/LPoint2D_Activity_setSid.puml
|
4193ff14a68a13c73d2d6948457718b51c5438de
|
[] |
no_license
|
ShisatoYano/SLAMDesignUML
|
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
|
bb8678908952205d1fdc2ea5e49c9ca752e123b9
|
refs/heads/master
| 2022-11-25T17:49:03.514885
| 2020-08-02T00:27:38
| 2020-08-02T00:27:38
| 261,206,484
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 91
|
puml
|
@startuml
/'
to set scan index
input: int t
'/
(*) --> "sid = t"
--> (*)
@enduml
| false
| true
| false
| false
|
class
|
64262fd1d09d98890f735dec8fadc5463e2dcf81
|
f601c40e50e0f113f480ae2de3e80bc4a3172f86
|
/docs/Solution/Stack-Manager/Physical.puml
|
a51a28466a96204859f8688e0501e7da7af04c6b
|
[] |
no_license
|
CAADE/C3
|
07307a3795888672df18e99932e25951911eaf1d
|
4bbe48a335b936cf75808d0902b32f73b99ff958
|
refs/heads/master
| 2022-11-24T14:52:05.724752
| 2019-06-19T03:32:46
| 2019-06-19T03:32:46
| 67,574,474
| 1
| 0
| null | 2022-11-22T11:28:45
| 2016-09-07T05:19:16
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 145
|
puml
|
@startuml
package "Stack-Manager" {
component component1
component component2
interface i1
}
i1 - component1
component1 --> component2
@enduml
| false
| true
| false
| false
|
class
|
203d97c841982de634700370c7eb07b7315baa88
|
6148ce6d883a6f94b1588ab302147c63dd8fc644
|
/microservices/kunde/src/main/kotlin/de/hska/kunde/kunde.comp.puml
|
3a7df8ff842cc35af314c0297faffb316f63b67d
|
[] |
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
| 1,470
|
puml
|
@startuml
skinparam componentStyle uml2
left to right direction
package de.shop.kunde #DDDDDD {
[AppRouter]
package rest <<boundary>> #FFFFFF {
[KundeHandler]
[KundeMultimediaHandler]
}
package service <<control>> #FFFFFF {
[KundeService]
[KundeMultimediaService]
}
package db <<control>> #FFFFFF {
[KundeRepository]
}
package mail <<control>> #FFFFFF {
[MailSender]
}
package entity <<entity>> #FFFFFF {
[Kunde]
}
}
cloud {
[Spring Data MongoDB]
}
database "hska (MongoDB)" {
[Collection kunde]
}
queue "Apache Kafka"
node {
[Mailserver]
}
RESTClient ..> [AppRouter]
[AppRouter] ..> [KundeHandler]
[AppRouter] ..> [KundeMultimediaHandler]
[KundeHandler] ..> [Kunde]
[KundeHandler] --> [KundeService]
[KundeMultimediaHandler] --> [KundeMultimediaService]
[KundeService] .up.> [Kunde]
[KundeService] --> [KundeRepository]
[KundeRepository] ..> [Kunde]
[KundeRepository] ..> [Spring Data MongoDB]
[KundeMultimediaService] ..> [Spring Data MongoDB]
[Spring Data MongoDB] ..> [Collection kunde]
[KundeService] --> [MailSender]
[MailSender] .up.> [Kunde]
[MailSender] ..> [Apache Kafka]
[Apache Kafka] ..> [Mailserver]
' [hidden] fuer nicht-existierende Beziehungen als Workaround fuer das Layout
[KundeHandler] -[hidden]-> [Kunde]
footer (c) Juergen Zimmermann
@enduml
| false
| true
| false
| false
|
sequence
|
83ab94a1a4ccb7a6432612569f6a379aaea00ca9
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/StagedOrderSetParcelTrackingDataAction.puml
|
da567ddaa66f9eb7b5c02b45f9b64dcdf2dc46be
|
[] |
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
| 558
|
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 StagedOrderSetParcelTrackingDataAction [[StagedOrderSetParcelTrackingDataAction.svg]] extends StagedOrderUpdateAction {
action: String
parcelId: String
parcelKey: String
trackingData: [[TrackingData.svg TrackingData]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false
| true
| false
| false
|
class
|
a26f99edb70ebda3b337f31735011c8ae8ac01cb
|
98db91bbebf1f48bc591bdfbfd16f8615e238374
|
/specs/ekopache/archive/S_EMC_CHG_BLWDN.puml
|
8c7dabd9bb58d754e94ee6e21ad076672f4d1056
|
[] |
no_license
|
pengtianyue/Solvay_test
|
c912ef0bcea28150fd0a0b108992e3612c634982
|
35d24a2e13c1d44326e65384fa57db08494bbc59
|
refs/heads/master
| 2021-01-21T04:50:58.658610
| 2016-04-13T19:36:57
| 2016-04-13T19:36:57
| 49,964,037
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,578
|
puml
|
Aliases:
@FQIC = DEV1
def(self, Charge active):
self.DEST_TANK != None
@startuml
scale 30 width
title S_EMC_CHARGE - TK-36
state ChargeCmd{
[*] --> WaitForCharge
WaitForCharge : Wait for charge request from reactor
Setup --> WaitForCharge : Charge active
WaitForCharge --> Setup : DEST_TANK = [R6, R9, R10]
state Setup{
Setup: Set CONTROL_VALVE/MODE
Setup: Reset FQIC/TOTAL
Setup: Reset FQIC/TARGET
}
Setup --> Charge
state Charge{
[*] --> Operator : OWNER_ID=Operator
[*] --> Recipe : OWNER_ID!=Operator
[*] --> StopCharge : FQIC/TOTAL = FQIC/TARGET
state Operator : Prompt CHARGE_QTY
state Recipe : Calculate CHARGE_QTY
Operator --> PrepTank : FQIC/TARGET = CHARGE_QTY
Recipe --> PrepTank : FQIC/TARGET = CHARGE_QTY
PrepTank : Open bottom valve
PrepTank : Start pump
PrepTank : Set recirc valve
PrepTank --> Feed
Feed : Reset interlock
Feed : Open reactor valve
Feed : Flow control valve mode = AUTO
Feed --> Dribble : Control valve SP > 100 \n AND \n Mode = AUTO
Feed --> Dribble : Control valve OUT > 20 \n AND \n Mode = MAN
Dribble : Control valve action = 0.5 * (current action)
Dribble --> StopCharge : FQIC/TOTAL = FQIC/TARGET
}
state StopCharge{
[*] --> CloseValves
CloseValves --> Blowdown
Blowdown --> StopPump : No pending requests
Blowdown -left-> WaitForCharge : Pending charge request
state CloseValves{
CloseValves: Close all valves
}
state Blowdown{
Blowdown: Open N2 Valve for 5 seconds
}
state StopPump{
StopPump: Shut off MCA pump
}
}
StopPump --> WaitForCharge
}
@enduml
# Any text is permissable ourside of @startuml, @enduml tags
# State specifications, in addition to project standards, go here.
# Basic grammar is: when <state_id> if <ATTRIBUTE conditional>
# then <action pseudocode or ATTRIBUTE condition>
# Test rules will be confined to a set of @startrules, @endrules tags
@startrules
when Charge if OWNER_ID.CV = "(NONE)" then A_TARGET.CV = HOLD
when Charge if OP001 < FQIC/TOTAL then StopCharge
when ChargeCmd if DEVx/FAILURE.CV = TRUE then
A_TARGET.CV = HOLD
MONITOR/FAILURE.CV != ""
when PrepTank if OP001_VALUE.CV < TP001_VALUE.CV then StopCharge
when Feed if CANCEL_ALL = _CANCEL_WAIT:Cancelled then
Dribble
@endrules
| false
| true
| false
| false
|
sequence
|
c175670bbbee8856cc797066a29620f283a240ef
|
d737c3750ed556b42ab54c646675e4a58a400513
|
/docs/source_code/uml/Render_Sequence.puml
|
04021b0bcf61382aa16e549bb70568601287c2e1
|
[
"MIT"
] |
permissive
|
Drew-S/TerrainGenerator
|
8065a0a496a49a6a36d490c44f831e1b96a2547a
|
ea0bc1d6ada73d4d8370244b14d78c5168742580
|
refs/heads/master
| 2022-11-18T17:47:33.955290
| 2020-07-10T19:56:45
| 2020-07-10T19:56:45
| 268,881,677
| 1
| 0
| null | 2020-06-03T23:13:58
| 2020-06-02T18:45:00
|
C++
|
UTF-8
|
PlantUML
| false
| false
| 1,094
|
puml
|
@startuml
MainWindow -> MainWindow : Render
activate MainWindow
note right: User selects output directory
MainWindow -> MainWindow : Create output render directory
MainWindow -> Settings : render()
activate Settings
Settings --> Node : emit renderStart()
deactivate Settings
activate Node
loop each Node
Node -> Node : generate
Node --> Node : emit dataUpdated(port)
end
Node --> Nodeeditor : emit computingFinished()
deactivate Node
activate Nodeeditor
note right
OutputNode emits <b>computingFinished()</b>
whether or not <b>Settings->finalRender()</b> is true.
Nodeeditor runs this when <b>finalRender()</b> is <b>true</b>.
Otherwise Nodeeditor just updates preview window.
end note
Nodeeditor -> Nodeeditor : Save height map
Nodeeditor -> Nodeeditor : Save normal map
alt OutputNode->albedoSet()
Nodeeditor -> Nodeeditor : Save albedo map
end
alt OutputNode->specularSet()
Nodeeditor -> Nodeeditor : Save specular map
end
Nodeeditor --> MainWindow : emit renderDone()
deactivate Nodeeditor
MainWindow -> MainWindow : Display render done message
deactivate MainWindow
@enduml
| false
| true
| false
| false
|
sequence
|
b2860286165fc6dd0e29aa7655a1e05d35c0e2f4
|
c73381744f027cb066ce752ae1590b128668a0a4
|
/docs/diagrams/UML/ParserClassDiagram.puml
|
8ac7a71e7ad482056588118a6958025dfb05b006
|
[] |
no_license
|
wangqinNick/tp
|
d10f9d105ff95aec9ca4dff054c1225b73c08d0c
|
962afeb345eb8967ab47d1596fc1eb8ab2f48579
|
refs/heads/master
| 2021-02-12T01:45:33.306273
| 2020-11-13T09:57:29
| 2020-11-13T09:57:29
| 244,548,857
| 1
| 0
| null | 2020-03-03T05:21:58
| 2020-03-03T05:21:57
| null |
UTF-8
|
PlantUML
| false
| false
| 874
|
puml
|
@startuml
hide circle
skinparam classAttributeIconSize 0
abstract class "{abstract} \n Command"
package parser {
class Parser
class AddCommandParser
class DeleteCommandParser
class DoneCommandParser
class EditCommandParser
class ListCommandParser
class CapCommandParser
class GradeCommandParser
class HelpCommandParser
class LessonParser
class TimeTableCommandParser
}
parser .left.> "{abstract} \n Command" : All Parser classes\ngenerate Command objects
Parser .left.> AddCommandParser : All Parser "subclasses" do not\ninherit from Parser
Parser .right.> HelpCommandParser
Parser ..> DeleteCommandParser
Parser ...> DoneCommandParser
Parser ....> EditCommandParser
Parser ...> ListCommandParser
Parser ..> CapCommandParser
Parser ....> GradeCommandParser
Parser ...> LessonParser
Parser ....> TimeTableCommandParser
@enduml
| false
| true
| false
| false
|
class
|
3f71180220147fe9094f4b140e571cd4b0236483
|
d0c4bc316b01e94a06213c21097a8d991ee51c78
|
/src/main/java/ex46/ex46Diagram.puml
|
aec34a54d3527cb2834ef5783d4304eda9a5fca0
|
[] |
no_license
|
Dnguyen99/Nguyen-cop3330-assignment3
|
14f28209c49546e58b99c6220bdeec3767606341
|
d0ceb2bcfb5702c1a5216b59bd71100e24abf51d
|
refs/heads/master
| 2023-08-20T23:27:58.013282
| 2021-10-10T23:56:46
| 2021-10-10T23:56:46
| 415,726,957
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 775
|
puml
|
@startuml
'https://plantuml.com/sequence-diagram
class WordFrequencyFinder {
+main()
}
WordFrequencyFinder <--o ReadInputFile
ReadInputFile : -Scanner scan
ReadInputFile : -File file
ReadInputFile : -HashMap<String,Integer>map
ReadInputFile : +String input
ReadInputFile : +String array
ReadInputFile : +String key
ReadInputFile : +int value
ReadInputFile : +ReadInputFile()
ReadInputFile : +readFile()
ReadInputFile : +HashMap<String,Integer>getData()
WordFrequencyFinder <--o PrintReport
PrintReport : -HashMap<String,Integer>map
PrintReport : +String keys[]
PrintReport : +String values[]
PrintReport : +int k
PrintReport : +int tempvalues[]
PrintReport : +String tempkeys[]
PrintReport : +int value
PrintReport : +PrintReport()
PrintReport : +printScreen()
@enduml
| false
| true
| false
| false
|
class
|
24c6798cdc4dbe98a14f74f56ee9b510695cbfc7
|
5992899e0dc7e047598bf810d6d66fb171b6b8fa
|
/src/main/javadoc/resources/fr/kbertet/util/Couple.iuml
|
104f7c034cb2af551dd248d00d86eb2db2b460ab
|
[
"CECILL-B"
] |
permissive
|
kbertet/java-lattices
|
9e237162ce8330f64769e27284a7f98fa189206f
|
ddca76f97c41024866e3f3a32b719cb0492c034b
|
refs/heads/master
| 2020-12-03T09:19:43.451861
| 2014-12-12T11:20:45
| 2014-12-12T11:20:45
| 29,913,611
| 1
| 0
| null | 2015-01-27T12:41:58
| 2015-01-27T12:41:58
| null |
UTF-8
|
PlantUML
| false
| false
| 494
|
iuml
|
package fr.kbertet.lattice {
class Couple {
-Object left
-Object right
.. Constructors ..
+Couple(Object l, Object r)
.. Accessors ..
+Object getLeft()
+Object getRight()
.. Mutators ..
+Couple setLeft(Object left)
+Couple setRight(Object right)
.. Transformers ..
+String toString()
.. Predicates ..
+boolean equals(Couple c)
+int hashCode()
}
}
| false
| true
| false
| false
|
class
|
e42c2de0ba4d0aaaa8a7580b4def3ddcbf12c07d
|
373861653fd34beb6f2e073a3e77e07c9ebc7f5d
|
/de.gematik.ti.healthcard.common/src/main/java/de/gematik/ti/healthcard/control/common/verifyPin/verifyPin.plantuml
|
62f44286c645305960523af90d084377c2822097
|
[
"Apache-2.0"
] |
permissive
|
gematik/ref-HealthCardControlCommon
|
3c190515d68689fe3d6aec1afaec3013e75011d5
|
dddb68cecbfe446b6fd76874aac7569ca1fa27a2
|
refs/heads/master
| 2022-01-20T15:15:50.239121
| 2022-01-07T07:24:15
| 2022-01-07T07:24:15
| 214,093,084
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 4,309
|
plantuml
|
@startuml
namespace de.gematik.ti.healthcard.control.common.verifyPin {
class de.gematik.ti.healthcard.control.common.verifyPin.CallbackHandlePin {
{static} - LOG : Logger
- card : IHealthCard
- pinResultResultOperation : ResultOperation<PinResult>
- queue : ArrayBlockingQueue<ResultOperation<PinResult>>
+ CallbackHandlePin()
+ abortRequest()
+ call()
+ handlePinNumber()
}
class de.gematik.ti.healthcard.control.common.verifyPin.PinConfiguration {
- appIds : String[]
- pwid : int
+ PinConfiguration()
+ getAppIds()
+ getPwid()
}
class de.gematik.ti.healthcard.control.common.verifyPin.PinContainer {
{static} - EMPTY_APPIDS : String[]
{static} - LOG : Logger
{static} - PINCONTAINER_EGK2 : Map<String, PinConfiguration>
{static} - PINCONTAINER_EGK21 : Map<String, PinConfiguration>
{static} - PINCONTAINER_HBA2 : Map<String, PinConfiguration>
{static} - PINCONTAINER_HBA21 : Map<String, PinConfiguration>
{static} - PINCONTAINER_SMCB2 : Map<String, PinConfiguration>
{static} - PINCONTAINER_SMCB21 : Map<String, PinConfiguration>
{static} + getPinConfiguration()
{static} - getContainer()
{static} - getValidPinTypes()
}
class de.gematik.ti.healthcard.control.common.verifyPin.PinResult {
{static} - LOG : Logger
- numberRemain : int
- pinVerifiSuccess : boolean
- verifyResultText : String
+ PinResult()
+ getNumberRemain()
+ getVerifyResultText()
+ isPinVerifiSuccess()
+ setNumberRemain()
+ setPinVerifiSuccess()
}
enum PinState {
NO_ERROR
PASSWORD_DISABLED
PASSWORD_NOT_FOUND
RETRY_COUNTER_COUNT_00
RETRY_COUNTER_COUNT_01
RETRY_COUNTER_COUNT_02
RETRY_COUNTER_COUNT_03
SECURITY_STATUS_NOT_SATISFIED
TRANSPORT_STATUS_EMPTY_PIN
TRANSPORT_STATUS_TRANSPORT_PIN
}
class de.gematik.ti.healthcard.control.common.verifyPin.PinVerfiyLauncher {
{static} - LOG : Logger
{static} - TIMEOUT_SECONDS : long
- card : IHealthCard
- completableFuture : CompletableFuture<ResultOperation<PinResult>>
+ PinVerfiyLauncher()
+ subscribeCancleEvent()
+ verifyPin()
}
class de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier {
{static} - LOG : Logger
- cardHc : IHealthCard
+ PinVerifier()
{static} + stringToIntarray()
+ verifyPin()
- flapMapSelections()
- getSelectRootResult()
- hookAbsentEvent()
- validatePinResult()
- verifyPin()
}
enum VerifyState {
verifyRequired
verifyValid
}
enum PinVerifyError {
accessErr
blocking
interruption
timeout
errorIndex
errorMsg
}
}
de.gematik.ti.healthcard.control.common.verifyPin.CallbackHandlePin .up.|> IPinNumberResponseListener
de.gematik.ti.healthcard.control.common.verifyPin.CallbackHandlePin .up.|> java.util.concurrent.Callable
de.gematik.ti.healthcard.control.common.verifyPin.CallbackHandlePin ..> de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier
de.gematik.ti.healthcard.control.common.verifyPin.PinResult +-down- de.gematik.ti.healthcard.control.common.verifyPin.PinResult.PinState
de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier o-- de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier.VerifyState : verifyState
de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier +-down- de.gematik.ti.healthcard.control.common.verifyPin.PinVerifier.VerifyState
@enduml
| false
| true
| false
| false
|
class
|
6edcf86facd44a39c60998cf111666ed2c7f773d
|
c0038898d724349e1b4fe236d73d318744c68ebc
|
/docs/HttpServer.puml
|
e50fb6b1cea2fa7ce4c8af0af804c1eee8ba4ee2
|
[] |
no_license
|
Westerdals/PGR203-Java-Eksamen-Kalmar99
|
551be42bc0c9adf6b8e5b1f0e7d016ff08e60697
|
badb2a80c0dd5d3150c06371bd312a956f729621
|
refs/heads/master
| 2022-09-06T05:34:18.508030
| 2020-05-26T13:45:57
| 2020-05-26T13:45:57
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 786
|
puml
|
@startuml
package "httpServer" {
class HttpServer{
- port: int
- fileLocation: String
- serverSocket: ServerSocket
+ HttpServer()
+ {static} void main()
+ void start()
- void run()
- Map<> requestParameters()
+ getPort(): int
+ void setFileLocation()
+ getFileLocation(): String
+ void addController()
}
interface HttpController {
void handle()
}
class MapEntry {
key
}
HttpServer -right-> HttpController: default
HttpServer -down-> "*" MapEntry: routes
MapEntry -right-> HttpController
class FileHttpController implements HttpController {
+ httpServer: HttpServer
+ FileHttpController()
+ void handle()
}
class EchoHttpController implements HttpController {
+ void handle()
}
}
@enduml
| false
| true
| false
| false
|
sequence
|
f54d86d94d5a704312dc9371307babf6a18fe70b
|
00f3c2beb0cc56f780850f277e542bd942ce791c
|
/diagrams/kubernetes-architecture.puml
|
23783236f0cb67baf2b7937f91dcbe69ff0e602f
|
[] |
no_license
|
Piotr1215/kubernetes-operators
|
995f2c8c3dcc87f0473048166f3f9697b35a205c
|
e0f2975f062bc939dd7bc4f9de545452affbcd0c
|
refs/heads/master
| 2023-09-06T03:45:56.283997
| 2021-11-21T14:38:34
| 2021-11-21T14:38:34
| 382,824,805
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,797
|
puml
|
@startuml k8s-architecture
'Icons
!include <kubernetes/k8s-sprites-labeled-25pct>
'Global Styles
!include https://raw.githubusercontent.com/Piotr1215/dca-prep-kit/master/diagrams/styles.iuml
rectangle " <$master>\nKubernetes Architecture"
rectangle "Control Plane" as ctrl {
collections "<$etcd>" as etcd
collections "<$sched>" as sched
collections "<$api>" as api
collections "<$c_m>" as cm
collections "<$c_c_m>" as ccm
api -> cm
api .> ccm
api -> sched
api -> etcd
}
rectangle "Nodes" as nodes {
node "Node" as node1 {
component "<$kubelet>" as 1
component "<$k_proxy>" as 2
1 -[hidden]--> 2
}
node "Node" as node2 {
component "<$kubelet>" as 3
component "<$k_proxy>" as 4
3 -[hidden]--> 4
}
node "Node" as node3 {
component "<$kubelet>" as 5
component "<$k_proxy>" as 6
5 -[hidden]--> 6
}
}
cloud "Cloud Provider\n API" as cloud
ctrl -[hidden]r-> nodes
ccm -> cloud
1 -> api
2 -> api
3 -> api
4 -> api
5 -> api
6 -> api
legend bottom
|= Component |= Description |= Function |
| <$etcd> | Perisstent store | Key-value backing store for all \n cluster data |
| <$sched> | Scheduler | Watches for pods and assigns \n them to nodes |
| <$api> | Kube API server | Exposes Kubernetes API,\n front end for control plane |
| <$c_m> | Controller manager | Node Controller, Replication Controller, \n Endpoints Controller, \n Service Account & Token Controllers |
| <$c_c_m> | Cloud controller manager\n optional | Embeds cloud specific control logic |
| <$kubelet> | Kubelet | Responsible for runnning \n containers in a pod |
| <$k_proxy> | Kube proxy | Maintains network rules on nodes |
endlegend
@enduml
| false
| true
| false
| false
|
sequence
|
f2da54feaf87837bf48c117ab8368ce0815b51fc
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ReturnInfo.puml
|
c976e2b1f88c548a8e3b9120a1368ab1e2ec68e4
|
[] |
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
| 4,339
|
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 ReturnInfo [[ReturnInfo.svg]] {
items: [[ReturnItem.svg List<ReturnItem>]]
returnTrackingId: String
returnDate: DateTime
}
interface ReturnInfoSetMessage [[ReturnInfoSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
}
interface ReturnInfoSetMessagePayload [[ReturnInfoSetMessagePayload.svg]] {
type: String
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
}
interface Order [[Order.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
cart: [[CartReference.svg CartReference]]
quote: [[QuoteReference.svg QuoteReference]]
orderState: [[OrderState.svg OrderState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
paymentState: [[PaymentState.svg PaymentState]]
state: [[StateReference.svg StateReference]]
syncInfo: [[SyncInfo.svg List<SyncInfo>]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
lastMessageSequenceNumber: Long
custom: [[CustomFields.svg CustomFields]]
completedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface ReturnInfoAddedMessage [[ReturnInfoAddedMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
returnInfo: [[ReturnInfo.svg ReturnInfo]]
}
interface ReturnInfoAddedMessagePayload [[ReturnInfoAddedMessagePayload.svg]] {
type: String
returnInfo: [[ReturnInfo.svg ReturnInfo]]
}
ReturnInfo --> ReturnInfoSetMessage #green;text:green : "returnInfo"
ReturnInfo --> ReturnInfoSetMessagePayload #green;text:green : "returnInfo"
ReturnInfo --> Order #green;text:green : "returnInfo"
ReturnInfo --> ReturnInfoAddedMessage #green;text:green : "returnInfo"
ReturnInfo --> ReturnInfoAddedMessagePayload #green;text:green : "returnInfo"
@enduml
| false
| true
| false
| false
|
sequence
|
75f97e130980de00257ae8fccb469cf97c4d1012
|
981bf6a7ce9a0a7a45f3af8ac26a9f8b9fc26b70
|
/source/dubbo-dubbo-2.6.5/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/getProxy.puml
|
fd81711fdcbc24ae8753c62168bed1c42fc69b7e
|
[
"Apache-2.0"
] |
permissive
|
litter-fish/ReadSource
|
f0dab8c757b5647c1b2c4b4b9edb4d45502cb6bc
|
fa93b54e203bc5e630d89bae0f6ad175d39fe71f
|
refs/heads/master
| 2022-12-20T17:17:08.081908
| 2020-01-20T14:09:06
| 2020-01-20T14:09:06
| 227,380,506
| 1
| 2
| null | 2022-12-10T05:39:57
| 2019-12-11T14:07:11
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 3,070
|
puml
|
@startuml
ReferenceConfig->ReferenceConfig:getProxy
activate ReferenceConfig
ReferenceConfig->StubProxyFactoryWrapper:getProxy
activate StubProxyFactoryWrapper
StubProxyFactoryWrapper->AbstractProxyFactory:getProxy
activate AbstractProxyFactory
AbstractProxyFactory->AbstractProxyFactory:getProxy
activate AbstractProxyFactory
AbstractProxyFactory->JavassistProxyFactory:getProxy
activate JavassistProxyFactory
JavassistProxyFactory->Proxy:getProxy
activate Proxy
Proxy->Proxy:getProxy
activate Proxy
Proxy->ClassGenerator:newInstance
activate ClassGenerator
Proxy<--ClassGenerator:
deactivate ClassGenerator
Proxy->ClassGenerator:setClassName
activate ClassGenerator
Proxy<--ClassGenerator:
deactivate ClassGenerator
Proxy->ClassGenerator:addDefaultConstructor
activate ClassGenerator
Proxy<--ClassGenerator:
deactivate ClassGenerator
Proxy->ClassGenerator:setSuperClass
activate ClassGenerator
Proxy<--ClassGenerator:
deactivate ClassGenerator
Proxy->ClassGenerator:addMethod
activate ClassGenerator
Proxy<--ClassGenerator:
deactivate ClassGenerator
Proxy->Class:newInstance
activate Class
Proxy<--Class:
deactivate Class
Proxy<--Proxy:
deactivate Proxy
JavassistProxyFactory<--Proxy:
deactivate Proxy
JavassistProxyFactory->Proxy:newInstance
activate Proxy
JavassistProxyFactory<--Proxy:
deactivate Proxy
AbstractProxyFactory<--JavassistProxyFactory:
deactivate JavassistProxyFactory
AbstractProxyFactory<--AbstractProxyFactory:
deactivate AbstractProxyFactory
StubProxyFactoryWrapper<--AbstractProxyFactory:
deactivate AbstractProxyFactory
ReferenceConfig<--StubProxyFactoryWrapper:
deactivate StubProxyFactoryWrapper
ReferenceConfig<--ReferenceConfig:
deactivate ReferenceConfig
ReferenceConfig<--ReferenceConfig:
deactivate ReferenceConfig
@enduml
| false
| true
| false
| false
|
sequence
|
bc784e8ead5017c4dd0774fcc63b918355b889a3
|
b90fdc8479805f468b4eab02c997eaaf30e975b1
|
/app/app.plantuml
|
0ff9ddec723e0bc3182fd70c9b8230d8a7b76fda
|
[] |
no_license
|
LexuLexu/Kanji_Quiz
|
0a7b0046284641fee749f2a84f68016d0059c6cc
|
6c5d09006042cdbe06f3d10a71c6eea5728e2374
|
refs/heads/master
| 2022-12-07T04:29:03.237323
| 2020-08-13T13:21:05
| 2020-08-13T13:21:05
| 275,585,263
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,252
|
plantuml
|
@startuml
title __APP's Class Diagram__\n
namespace com.example.quiztest1 {
class com.example.quiztest1.AboutActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.BuildConfig {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.EndlessActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.FAQActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.FriendsActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.Global {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.HelpActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.LeaderboardActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.LevelChoiceActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.LoginActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.N4EnglishActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.N4KanaActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.N5EnglishActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.N5KanaActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.ProfileActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.RegisterActivity {
}
}
namespace com.example.quiztest1 {
class com.example.quiztest1.SettingsActivity {
}
}
com.example.quiztest1.AboutActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.EndlessActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.FAQActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.FriendsActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.HelpActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.LeaderboardActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.LevelChoiceActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.LoginActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.N4EnglishActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.N4KanaActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.N5EnglishActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.N5KanaActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.ProfileActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.RegisterActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.quiztest1.SettingsActivity -up-|> androidx.appcompat.app.AppCompatActivity
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
|
8699787c2eac7c951c9ff78a4956473b0e8619d7
|
3289e7b4fa7f72772dc5a37a8da47f90b1eeffe6
|
/src/main/java/ex42/App UML File.puml
|
b4a2585ebc0860be6b14bfe0116edf6ba12c0471
|
[] |
no_license
|
Sabrina-Lopez/lopez-cop3330-assignment3
|
ec2c25c5bcd184ff1e3b00c68aef06076ff41ffb
|
78d1596134ca462674ab03b07e53865177eeaae9
|
refs/heads/master
| 2023-08-30T21:59:34.916799
| 2021-10-12T03:57:13
| 2021-10-12T03:57:13
| 415,290,431
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,594
|
puml
|
@startuml
'https://plantuml.com/class-diagram
App : +static void main() throws IOException
class recordsArrayList {
recordsList : String[]
recordsList.add(nextRecord)
recordsList.size()
}
class firstNamesArrayList {
firstNamesList : String[]
firstNamesList.add(recordDetails[0])
firstNamesList.get()
}
class lastNamesArrayList {
lastNamesList : String[]
lastNamesList.add(recordDetails[1])
lastNamesList.get()
}
class salariesArrayList {
salariesList : String[]
salariesList.add(recordDetails[2])
salariesList.get()
}
class File {
recordsListFile : File
recordsListInput.close()
}
class nextRecord {
nextRecord : String[]
}
class recordDetails {
recordDetails : String[]
}
class Scanner {
recordsListInput : Scanner
recordsListInput.hasNextLine()
}
App *- recordsArrayList : contains >
App *- firstNamesArrayList : contains >
App *- lastNamesArrayList : contains >
App *- salariesArrayList : contains >
App *- recordDetails : contains >
App *- File : contains >
App *- Scanner : contains >
App *- nextRecord : contains >
Scanner -- File : input read through <
Scanner -- nextRecord : places file input into >
nextRecord -- recordsArrayList : places file input into >
recordsArrayList -- recordDetails : separate record components into different array lists >
recordDetails -- firstNamesArrayList : first names from recordsList will go into >
recordDetails -- lastNamesArrayList : last names from recordsList will go into >
recordDetails -- salariesArrayList : last names from recordsList will go into >
@enduml
| false
| true
| false
| false
|
class
|
f958dae089b527a0484d7dbe297592d4d83a90ee
|
b04d5166435afbe4a531aaccc447a40c92bb649b
|
/docs/Solution/Trust-Manager/UserInteraction.puml
|
4ad01be409dbf1cde3e4b45fc0794bcefcb55d32
|
[] |
no_license
|
CAADE/CloudLet
|
bc8e2d2ca4662aa60732888d727fca11d4045f66
|
08066bb296578ca6dc60a20388b15cb0f08425c4
|
refs/heads/master
| 2021-07-24T19:23:37.384552
| 2018-08-11T13:37:52
| 2018-08-11T13:37:52
| 81,122,426
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 64
|
puml
|
@startuml
actor User
User -> "Trust-Manager": UseCase
@enduml
| false
| true
| false
| false
|
sequence
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.