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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
24eadf572c8c8b0f779d22461a1f540eea0cd966 | bc28eade88c529be5b985cf20f82d545c0af7ce8 | /src/main/java/de/thunderfrog/thunderfrog.plantuml | 92ef6645d8b412ac3f8346d2284c50d6c93bede4 | [] | no_license | VanKhaos/Moodle-Klassenbuch-Exporter | 61e5de0b729ceed810077489b6c6e5f14f250c2a | 7f8873156492d75b5846ae0b3db168dc81decec0 | refs/heads/master | 2023-06-15T16:53:16.478676 | 2021-07-12T07:38:25 | 2021-07-12T07:38:25 | 380,527,320 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,346 | plantuml | @startuml
class de.thunderfrog.MoodleData {
- dateTime : String
- lecturer : String
- lessonEight : String
- lessonFive : String
- lessonFour : String
- lessonOne : String
- lessonSeven : String
- lessonSix : String
- lessonThree : String
- lessonTwo : String
- subject : String
- weekday : String
+ getDateTime()
+ getLecturer()
+ getLessonEight()
+ getLessonFive()
+ getLessonFour()
+ getLessonOne()
+ getLessonSeven()
+ getLessonSix()
+ getLessonThree()
+ getLessonTwo()
+ getSubject()
+ getWeekday()
+ setDateTime()
+ setLecturer()
+ setLessonEight()
+ setLessonFive()
+ setLessonFour()
+ setLessonOne()
+ setLessonSeven()
+ setLessonSix()
+ setLessonThree()
+ setLessonTwo()
+ setSubject()
+ setWeekday()
}
de.thunderfrog.App -up-|> javafx.application.Application
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 |
7f2490e5f0fba4be7a083b4784ee1c35dacc735a | ce12208153a29ec258c70f549b3a351081ec04cd | /diagrams/puml/newDeviceKey.seq.puml | 0c455ae6b01fb235c35a9ebb7870dbafeb0a2a6a | [
"MIT"
] | permissive | mbeacom/lambda-nisaba | 06d8beb25c8cf3504e4716c9efef6b277720c3a1 | 0bc7c160a84230c58ced5b8f8c630443dee2d5eb | refs/heads/master | 2020-03-22T22:27:13.190355 | 2018-06-29T02:12:19 | 2018-06-29T02:12:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 548 | puml | @startuml
participant "uPort Mobile App" as uPort
participant "uPort::nisaba" as nisaba
uPort -> nisaba: Request Fuel Token for New Device Key\nPOST /newDeviceKey
note left of nisaba #FFAAAA
Authorization: Bearer <jwt token>
end note
note left of nisaba #FFAAAA
{
requestToken: <jwt signed by deviceKey>
}
end note
activate nisaba
nisaba -> nisaba: Issue fueltoken for newDeviceKey
nisaba -> uPort: Return fuel token
note left of nisaba #FFAAAA
{
status: "success",
data: <fuel token for newDeviceKey>
}
end note
deactivate nisaba
@enduml | false | true | false | false | sequence |
20f130c8a91f7145e109289e6f9ba442fc9506f8 | 5c444423b1f6f7b7699611395f7c5e5e5b0477ee | /DiveIntoDesignPatterns/behavioral/ChainOfResponsibility/page242.plantuml | 6bd9fac0a669c4d71cb4cb3e144d838df2ee2876 | [
"MIT"
] | permissive | zhengtong0898/books | f7951cbb949ba2cc4ff6c3015c031f54c127d490 | 65ca7d7cfaf3d07f910a0ba324e00017022c68ee | refs/heads/master | 2021-06-21T14:40:34.883570 | 2020-07-16T02:56:34 | 2020-07-16T02:56:34 | 254,500,102 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 405 | plantuml | @startuml
hide empty members
class Client {}
interface Handler {
+ set_next(Handler h)
+ handler(Request req)
}
abstract class BaseHandler {
- Handler next;
--
+ set_handler(Handler h)
+ handle(Request req)
}
class ConcreteHandler {
...
--
+ handle(Request req)
}
Handler <|.down. BaseHandler
Handler <..o BaseHandler
ConcreteHandler-up-|> BaseHandler
Handler <-left- Client
@enduml | false | true | false | false | class |
c02ef4cfc312352770b2d0d75531c34aae372f98 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/java/concept-jvm-reference-gc-5.plantuml | 3559b43c71d8f891f8b72f7ae1c401c1a523c816 | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 1,504 | plantuml | @startuml
'skinparam nodesep 10
'skinparam ranksep 20
skinparam linetype ortho
title
Reachable object and Unreachable object
<color:DodgerBlue>Blue is Reachable, <color:Crimson>Red is Unreachable, <color:ForestGreen>Green is Weakly reachable
end title
rectangle "Root Set of Reference" {
rectangle Reference_A {
}
rectangle Reference_B {
}
rectangle Reference_C {
}
Reference_A -[hidden]d- Reference_B
Reference_B -[hidden]d- Reference_C
' hide a
' hide b
' hide c
}
rectangle Heap {
card Object_1 #Crimson {
}
card Object_2 #Crimson {
}
card Object_3 #Crimson {
}
card WeakReference_1 #DodgerBlue {
}
card Object_5 #Crimson {
}
card Object_6 #ForestGreen {
}
card Object_7 #Crimson {
}
card Object_8 #ForestGreen{
}
card WeakReference_2 #DodgerBlue{
}
card Object_10 #Crimson{
}
card Object_11 #DodgerBlue{
}
card Object_12 #DodgerBlue{
}
Object_1 --> Object_3 #Crimson
Object_2 --> Object_5 #Crimson
Object_5 --> Object_7 #Crimson
Object_7 --> Object_2 #Crimson
WeakReference_1 --> Object_6 #DodgerBlue
Object_6 --> Object_8 #DodgerBlue
Object_10 --> Object_8 #Crimson
WeakReference_2 --> Object_11 #DodgerBlue
Object_11 --> Object_12 #DodgerBlue
Object_1 -[hidden]d-> Object_2
Object_2 -[hidden]d-> WeakReference_1
WeakReference_1 -[hidden]d-> WeakReference_2
}
"Root Set of Reference" -[hidden]r- Heap
Reference_A -r-> WeakReference_1 #DodgerBlue
Reference_B -r-> WeakReference_2 #DodgerBlue
Reference_C -r-> Object_11 #DodgerBlue
@enduml | false | true | false | false | uml-unknown |
cccaf74e4c4aba1615b3351a6f0c6b7f06d66fe7 | 6ee5cc3fc08bbfefeef5d8d7e89f91cea7a95ae6 | /doc/system_plan/diagrams/seq_download.puml | afa6f6c4d717dbac4ab61ec0aa0602c0d05f94a9 | [] | 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 | 620 | puml | @startuml
actor "User Agent" as user_agent
boundary "Content Download API" as api_download
database "Content database" as db_content
user_agent --> api_download : Download request (HTTP GET),\ncontains ID of requested content
activate api_download
api_download -> db_content : Retrieve content from database
activate db_content
api_download <- db_content : Return result of request
deactivate db_content
alt Retrieval succeeded
user_agent <-- api_download: Return HTTP 200 Ok
else
user_agent <-- api_download: Return HTTP status code signaling the reason for failure.
end
deactivate api_download
@enduml
| false | true | false | false | usecase |
5bb93b6106aa07dba177ef882dd732210afb5f8e | 5b9092e6cb6760e2471483e438520451f408511e | /doc/1_sprint/diagrams/puml/class/character.puml | b21831046ebd19e17c50d76d1e7e39c670d0d9ad | [] | no_license | Reynault/ACL_2019_Zelpop | ac8be33233a78ecb010ffc7c3135031dfece3dd6 | 0edbfabd698ac2ef2e16e5cf70f41d8f9a310219 | refs/heads/master | 2020-08-15T14:32:19.385568 | 2019-12-10T16:59:19 | 2019-12-10T16:59:19 | 215,357,337 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 936 | puml | @startuml
package entity{
abstract Entity{
- x : int
- y : int
- hp: int
- passThrought: boolean
- direction: GlobalDirection
+ getPosition():(int, int, GlobalDirection)
+ setPosition(int direction)
+ setPosition(int x, int y)
+ canPassThrought(): boolean
+ {abstract} draw()
+ behave(GlobalDirection direction): Direction
}
class Hero {
+ draw()
}
class Monster{
+ draw()
}
interface Behavior{
+ {abstract} behave(Entity entity, GlobalDirection direction): Direction
}
class Random{
+ behave(Entity entity, GlobalDirection direction): Direction
}
class HeroBehavior{
+ behave(Entity entity, GlobalDirection direction): Direction
}
}
Hero --|> Entity
Monster --|> Entity
Entity --> "1" Behavior
HeroBehavior ..|> Behavior
Random ..|> Behavior
@enduml | false | true | false | false | sequence |
70f7a1c4c7e694d4948902efa57ccdbd796ff714 | 711c9bb1ceea101e446f8d90b2f152ff897d0d0d | /Finalv2/PUMLs/Patrones/Factory Method Persona.puml | 1244b474af46c5317481987bdf95770a5008b928 | [] | no_license | TomasAlvarez78/FinalDOO | 54c88e546be678ad339d9e1fa244b5b141c6da57 | 25fd15986ec8d6f890f687f2d9c3a79b54015504 | refs/heads/master | 2023-07-10T01:25:27.515158 | 2021-08-09T15:28:57 | 2021-08-09T15:28:57 | 377,674,622 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 629 | puml | @startuml Factory Method
package "Factory Method Persona"{
abstract class Persona
abstract class Empleado
abstract class PersonaFactoryMethod{
+ crearPersona( id )
}
' Implementacion
' 1 - Cliente
' 2 - Empleado
' 3 - Mecanico
class PersonaFactory
class Cliente
class Mecanico
class Oficinista
PersonaFactory -left-|> PersonaFactoryMethod
PersonaFactory ..> Cliente : <<instancia>>
PersonaFactory ..> Mecanico : <<instancia>>
PersonaFactory ..> Oficinista : <<instancia>>
Cliente --|> Persona
Empleado -left-|> Persona
Mecanico --|> Empleado
Oficinista --|> Empleado
}
@enduml
| false | true | false | false | class |
e97c2a46423a6d9ed9d0725681a4e4761c965e7d | 59e22cd3f0292ce506f70e5c79ccb3b6a6f5a762 | /design/sequence/proxy-one-message.puml | f547d78052c042cf3620eb439a0a7924892b7d93 | [] | no_license | DistributedTaskScheduling/documentation | 34f9ca5cc786be4371174129ec311aa98bbe5972 | 4722be1f9d718390bb31c28ffdfe20ac1658f250 | refs/heads/master | 2020-08-30T12:05:29.646620 | 2020-03-07T23:39:57 | 2020-03-07T23:39:57 | 218,374,882 | 4 | 0 | null | 2020-03-07T23:39:58 | 2019-10-29T20:12:04 | TeX | UTF-8 | PlantUML | false | false | 861 | puml | @startuml
box "Local components"
boundary Boundary
participant "command:Command" as Command
participant ":SingleMessageProxy" as Proxy
participant ":SSHConnection" as SSHConnection
participant "response:Response" as Response
end box
participant ":Remote" as Remote
Boundary -> Proxy ++ : command
Proxy -> SSHConnection ** : Create
Proxy -> SSHConnection ++ : command
SSHConnection --> Remote ** : Call via SSH
activate Remote
Remote -> Remote : Read from stdin
SSHConnection --> Remote : Write command.serialize() on stdin
SSHConnection -> Remote : Read from stdout
... Remote processes command ...
Remote --> Remote : Write response as \nYAML to stdout
SSHConnection -> Response ** : Create
destroy Remote
Proxy <-- SSHConnection -- : response
Proxy -> SSHConnection !! : Close
Boundary <-- Proxy -- : response
destroy Response
@enduml
| false | true | false | false | sequence |
1137695ff8bbad9f46b135e3f163332d4cbe4c88 | 8664bf2165c807e312c4ddc0cbab2815c56119e1 | /documentss/users/edit_info.puml | 417c7c2047119ab0483fdf4a8bad00fe17c71110 | [
"MIT"
] | permissive | tuanlvse294/CHome | 3f36afcfd9c0b8a327b0bc81622da5fff095b492 | 115e898e8f734f90de915d73e8a98d3044afad58 | refs/heads/master | 2020-04-13T09:21:03.904078 | 2019-05-09T18:00:56 | 2019-05-09T18:00:56 | 163,108,106 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 708 | puml | @startuml
actor User
boundary edit_info_view
control UserController
entity UserModel
User -> edit_info_view : go to edit info page
activate User
activate edit_info_view
edit_info_view --> User : edit info input form
deactivate edit_info_view
User -> edit_info_view : user's info
deactivate User
activate edit_info_view
edit_info_view -> UserController: user's info
deactivate edit_info_view
activate UserController
UserController -> UserController : validate data
UserController -> UserModel : try to edit info
activate UserModel
UserModel->UserModel:update user info
UserModel --> UserController : edit info ok
deactivate UserModel
UserController --> User: return to home
deactivate UserController
@enduml | false | true | false | false | sequence |
ac62a6268d538a08ce29e7f0e8229c2f3cfa12fc | a9d1ea5ff77a29022ef6aa4f1fb35010e2004ad6 | /docs/gameEngineFlow.puml | d0252df2b02a5a8c9a77095ff4f96676f9e6373b | [
"Apache-2.0"
] | permissive | andrew-m/super-rock-drop | 0273535bcda43772ca7cfec827b5abd168b7884d | 3b5672b76d1916302027424e931171415ae514e9 | refs/heads/master | 2023-07-09T01:05:43.636412 | 2023-07-08T21:50:32 | 2023-07-08T21:50:32 | 170,033,976 | 0 | 0 | Apache-2.0 | 2023-07-08T21:59:21 | 2019-02-10T22:19:04 | JavaScript | UTF-8 | PlantUML | false | false | 436 | puml | @startuml
partition renderer {
(*) --> "Wait For Event"
}
partition blah {
--> [Keypress] "Move PC blobs"
If "crashed?" then
-right->[NO] "Wait For Event"
else
-->[YES] "Make PC blobs non PC"
--> "Blobs Fall"
--> Animate Fall
If "Blobs sets of 4?" then
-->[NO] "Spawn new Blobs"
--> "Wait For Event"
else
-->[YES] "Pop connecting blobs"
-left-> "Animate pops"
-right-> "Blobs Fall"
endif
endif
}
@enduml | false | true | false | false | activity |
36c3f1d6b3f552feb557c1d2748137d9272d9e7d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/LineItemStateTransitionMessage.puml | f5d158ff03b6f0d818d12fe94f20ab5a000f12bd | [] | 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,355 | 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 LineItemStateTransitionMessage [[LineItemStateTransitionMessage.svg]] extends OrderMessage {
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]]
lineItemId: String
lineItemKey: String
transitionDate: DateTime
quantity: Long
fromState: [[StateReference.svg StateReference]]
toState: [[StateReference.svg StateReference]]
}
interface OrderMessage [[OrderMessage.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]]
}
@enduml
| false | true | false | false | class |
fcc0a9a0ad3b53b35a4386b66f89370d21e9f5ee | 6269112c0429b548f644fcf0a7f9d19e291fd169 | /app/src/main/java/com/group/project/ui/settings/settings.plantuml | b86e76c96f74ba3b9df7d42c9523d5725b6937cf | [] | no_license | JoelingM/CP470_Group_Project | 949c5d3824e36d4daf5cac33b794fa43e5d0fb1d | bfb3b36736472fc59eff492bf695aad620092756 | refs/heads/master | 2023-03-15T01:29:46.961062 | 2021-03-19T21:38:16 | 2021-03-19T21:38:16 | 349,560,996 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 751 | plantuml | @startuml
title __SETTINGS's Class Diagram__\n
namespace com.group.project {
namespace ui.settings {
class com.group.project.ui.settings.SettingsFragment {
{static} + ALLOW_PUSH_NOTIFICATIONS : String
{static} + NOTIFICATION_TIME : String
{static} + NOTIFICATION_TIME_POS : String
{static} + PREFS_NAME : String
~ sharedPreferences : SharedPreferences
+ onCreateView()
}
}
}
com.group.project.ui.settings.SettingsFragment -up-|> androidx.fragment.app.Fragment
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
32dd1128bad77fe2d1d2ed47740f3af2d7fa5e48 | e716e0b5fdc6ea827ca72e6b8e9f8879412df99c | /requirements/uml/feature3.puml | 5ae4fb8c1989f2a2d187c694cef99b37a88a5d3a | [] | no_license | AngelAlvarado/data | d6a8883e317be65b3679b57c993147555ec1b36e | b2adcdfcffcddc2a85845605046fca50b9fa847e | refs/heads/master | 2020-12-24T12:33:01.897254 | 2016-11-10T05:03:33 | 2016-11-10T05:03:33 | 72,984,268 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 863 | puml | @startuml
UserA -> PayMo: Make payment to UserB
activate PayMo
PayMo -> PayMo: Has ever been a transaction \n between userA and userB? \n Return if false
PayMo -> PayMo: Does UserA share connections with UserB?
PayMo -> PayMo: Has UserA ever make a transaction with common connections (e.g. UserC)? (2nd degree conn.)
PayMo -> PayMo: Has UserB ever make a transaction with common connections (e.g. UserC)? (2nd degree conn.)
PayMo -> PayMo: Does UserC share common connections with UserA (e.g. UserD)?
PayMo -> PayMo: Has UserC ever make a transaction with common connections (e.g. UserD)? (3rd degree conn.)
PayMo -> PayMo: Has UserD ever make a transaction with common connections (e.g. UserE)? (4th degree conn.)
PayMo --> UserA: Notify UserA: \n "Unverified: this user is not in your Network..."
deactivate PayMo
PayMo --> UserB: Proceed with payment
@enduml | false | true | false | false | sequence |
55e499aac8cbb05afc325fd57fd9b4dcd92a86ca | 644b7bb773b84596a2de4d31a0603284d9562e56 | /Solidity/Contracts/UniversityTeacher.iuml | 72bf52e807abbd53cf57a7c9da7bd47e2dd1a660 | [] | no_license | M9k/Marvin-Uml | e62d17245cf493d53f0b80f633a47be8ec44569e | 0fe9bc36f947535ae4397181ccf8c85291244a87 | refs/heads/master | 2021-04-15T17:44:22.461549 | 2018-05-10T07:52:19 | 2018-05-10T07:52:19 | 126,618,685 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 947 | iuml | @startuml
class UniversityTeacher #99FFF3 {
__modifiers__
isValidContractUnconfirmedTeacher(_teacher: Teacher)
isValidContractTeacher(_teacher: Teacher)
__
+@ getTeacherNumber(): uint
+@ getTeacherContractAddressAt(_index: uint): Teacher
+@ getNonApprovedTeacherNumber(): uint
+@ getNotApprovedTeacherContractAddressAt(_index: uint): Teacher
+@ getTeacherContractFromPublicAddress(_address: address): Teacher
+@ isTeacher(_address: address): bool
+@ isNotConfirmedTeacher(_address: address): bool
+@ getRoleByAddress(_address: address): uint8
+ requestTeacherAccount( _name: bytes32, _surname: bytes32) {registrableAddress(msg.sender: address)}
+ confirmTeacher(_teacher: Teacher) {onlyAdmin, isValidContractUnconfirmedTeacher(_teacher: Teacher)}
+ denyTeacher(_teacher: Teacher) {onlyAdmin, isValidContractUnconfirmedTeacher(_teacher: Teacher)}
+ removeTeacher(_teacher: Teacher) {onlyAdmin, isValidContractTeacher(_teacher: Teacher)}
}
@enduml
| false | true | false | false | class |
0e8faeec009572e744da1b27b4e0407c22ff6bc0 | da7df0ffed86a2102a947e9963939d6711ae0ad6 | /src/test/resources/Sample.puml | a4f1b841feff79fdc95cb613c18fbf1670376b7d | [
"MIT"
] | permissive | semichastnovkirill/gradle-plantuml-plugin | cea05b21ff87e539cbc7ca1343875fc56bd9c641 | 026c298f36de100e76ec5db9b2ea7b29af5da265 | refs/heads/master | 2021-05-12T12:26:34.710141 | 2018-01-16T12:51:49 | 2018-01-16T12:51:49 | 117,414,015 | 0 | 0 | null | 2018-01-14T08:22:43 | 2018-01-14T08:22:43 | null | UTF-8 | PlantUML | false | false | 258 | puml | @startuml
title narcissism as a stable configuration
participant enamored as A
participant enamored as B
participant narcissist as C
A -> B: likes
B --> A: no reciprocation
B -> C: likes
C --> B: no reciprocation
C -> C: likes
C -> C: reciprocated
@enduml | false | true | false | false | sequence |
ed31d29a33e69fba10ab29fca00185b6c7c57e1f | ded296da4bb9fcc7316fd6f789e3554fffac118e | /design/ACC-Client.py/lights.puml | ed9940965118610745e9bc0788c5d8f93c37056d | [
"MIT"
] | permissive | giuliobosco/domotics | 7feacd7647318222ad89f20a5c6cd5b83bd1ad90 | b327a94e319c379148b3a0ec1d840d820bb1c4bd | refs/heads/master | 2021-06-21T16:28:59.965625 | 2019-05-29T09:29:45 | 2019-05-29T09:29:45 | 133,505,107 | 3 | 1 | MIT | 2018-10-16T14:47:08 | 2018-05-15T11:18:30 | JavaScript | UTF-8 | PlantUML | false | false | 136 | puml | @startuml
class Lights {
void __init__(bridge)
void lightSet(pin, value)
void lightOn(pin)
void lightOff(pin)
}
@enduml
| false | true | false | false | class |
6eb5d6a7bdebcdae390e65710c460633e8060a31 | a5d6cbc1ef1c8515b740d8472d68770c9021e499 | /uml/login.puml | 9f8d79b5b6efe6943d4147a4119fee184fe675e8 | [] | no_license | vsvirins/meta-api | d1124262e6b2b7022d75d171d8887fbd67896757 | 52a09e67f8fdabe1d224efc97ddcad7aef35dc68 | refs/heads/master | 2023-01-25T03:09:26.143178 | 2020-12-11T11:44:04 | 2020-12-11T11:44:04 | 314,560,292 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,353 | puml | @startuml Login-sequense
hide footbox
title Login sequense
actor Client
participant Server
participant GitHub
participant Auth_Server
' Login Sequence
activate Server
Client -> Server: get(auth/github)
note left: Client makes a\nlogin with github request\nto the server.\nNo sensitive user data\nis required.
Server -> GitHub: OAuth request(clientId, clientSecret, callbackUrl)
activate GitHub
GitHub -> GitHub: Verify client
GitHub -> GitHub: User consent
GitHub --> Server: OAuth response(user) redirect(callbackUrl)
note left: Redirects to the callbackUrl\nprovided in the request.\nReturns the user profile\nfrom the OAuth provider.
deactivate GitHub
Server -> Server: User.findOrCreate(user)
note left: Check if the user exsists,\notherwise create a new.
Server -> Auth_Server: post(/login) request(user.id)
note left: Creates a new request to the\nauth server to generate tokens.
activate Auth_Server
Auth_Server -> Auth_Server: createTokens(user.id)
Auth_Server -> Auth_Server: storeRefreshToken(user.id, refreshToken)
Auth_Server --> Server: response(accessToken, refreshToken)
note right: Handles the token request and\nstores the hashed refresh token\ntied to the user.
deactivate Auth_Server
Server --> Client: response(accessToken, refreshToken)
note left: Client stores the accessToken\nand refreshToken.
deactivate Server
@enduml | false | true | false | false | usecase |
2772941ee9bd8ae554690252076017c6e4af2f4c | b1ea040466bbbf2c3394e5042b6c035071bbe955 | /src/main/java/at/fhj/msd/swdesign/factorymethod/factory_2.puml | 217851f44462eae6516b059206ae8e118c530dcf | [] | no_license | elmarkrainz/msd18-swdesign-despat | 4cf7c02143dd96d4c0fb77384e12d4f191fa4d70 | 9f4c752722156b4007530acd6a6ea0e363f772d0 | refs/heads/master | 2020-09-12T02:54:36.498106 | 2020-01-13T07:40:08 | 2020-01-13T07:40:08 | 222,278,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 310 | puml | @startuml
skinparam classAttributeIconSize 0
title Factory Method Pattern
class Product
class ConcreteProduct
class ProductFactory
ProductFactory : createProduct(): Product
Product <|-- ConcreteProduct
ConcreteProduct <. ProductFactory
@enduml | false | true | false | false | class |
99933eddc459d033017ccf392115a9b72d9c371d | 4bb456ab6a9c477ab1d07f64be4a0da69b4ed585 | /ModelDrivenThingML/thingml-gen/UML/APP_1_PIM_Cfg/APP_1_PIM_Cfg/docs/BME280_PIM_behavior.plantuml | 5cc79b830b1e80acb385e2342a1ab330722711c1 | [] | no_license | MuhammadEkbal/ModelDrivenThingML | f484c656889e572fa1297b603a6d418bb5885ac5 | b2a7c429d4d458034a6b81ee767ea2fdbaad8176 | refs/heads/master | 2020-06-10T03:46:45.110020 | 2019-06-25T18:27:23 | 2019-06-25T18:27:23 | 193,572,617 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 121 | plantuml | @startuml
skinparam defaultTextAlignment left
state SETUP{
SETUP --> MEASURE
}
state MEASURE{
}
[*] --> SETUP
@enduml
| false | true | false | false | state |
8497e3d39a771a9086b5e93b457fd4e53779970d | f45e552accc717fee52e45b3f502c9442969bd4b | /src/native/_uml/class_test_uml.puml | 9a93cc7c2388c2fdd879252dfd4e10619097c6a7 | [] | no_license | caxapexac/IronsphereServer | 5648268e4594006929de03f44620685fa8b3a011 | 947387652a7a47656663dd8e10687e2f90096f31 | refs/heads/master | 2021-11-24T20:47:37.113678 | 2020-06-04T12:26:16 | 2020-06-04T12:26:16 | 240,312,279 | 0 | 0 | null | 2021-05-11T14:07:14 | 2020-02-13T16:51:45 | C++ | UTF-8 | PlantUML | false | false | 342 | puml | @startuml
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
899af3361ca0ea2d5f2bd54ed8f05c56d208bf5f | 9b58f8ec79a19f9a0c121b99f85260227ad22d4e | /module_app/src/main/assets/4.0.0/viewmodel.puml | 18c70b18902a87fd24e05bf8c66e6084617d4b6b | [
"Apache-2.0"
] | permissive | zhangfeng0415/Zakker | 1791f27205146e2b6697380e4d01697db34f5c99 | a5129be9b29d09e5c920bde01e2dc55f6c47bd3c | refs/heads/main | 2023-08-18T00:08:43.597770 | 2021-08-31T15:01:14 | 2021-08-31T15:01:14 | 389,295,519 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,090 | puml | @startuml
interface IBaseViewModel{
@OnLifecycleEvent(Lifecycle.Event.ON_ANY)
void onAny(LifecycleOwner owner, Lifecycle.Event event);
@OnLifecycleEvent(Lifecycle.Event.ON_CREATE)
void onCreate();
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
void onDestroy();
@OnLifecycleEvent(Lifecycle.Event.ON_START)
void onStart();
@OnLifecycleEvent(Lifecycle.Event.ON_STOP)
void onStop();
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
void onResume();
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
void onPause();
}
class BaseViewModel implements IBaseViewModel{
protected M mModel;
protected UIChangeLiveData mUIChangeLiveData;
public void postShowInitLoadViewEvent(boolean show);
public void postShowNoDataViewEvent(boolean show);
public void postShowTransLoadingViewEvent(boolean show);
public void postShowNetWorkErrViewEvent(boolean show);
}
class BaseRefreshViewModel extends BaseViewModel{
public void postStopRefreshEvent();
public void postAutoRefreshEvent();
public void postStopLoadMoreEvent();
}
@enduml | false | true | false | false | class |
35b4faffaf2ae459ec7fe1f012a4af3c0f9a3e8e | 469a2c961d57e86ada4ec80e0eb155093fbba14d | /documentation/doc_tree/pasta_design/images/PASTAplus_authentication.puml | 5e6f9e1330d46cf1fde88572fcef2c903ac4de6d | [] | no_license | PASTAplus/PASTA | 04e683a58c35cb0b1cb3af9a804b877d1f446161 | 3e05fe0454350ac8ebb85ebb6a5d976621f0da18 | refs/heads/master | 2023-09-01T06:03:20.642096 | 2023-08-23T20:01:58 | 2023-08-23T20:01:58 | 36,264,630 | 10 | 4 | null | 2023-03-31T21:00:43 | 2015-05-26T01:39:02 | Java | UTF-8 | PlantUML | false | false | 1,433 | puml | @startuml
actor User
participant client
participant gatekeeper
participant PASTA_service
entity LDAP
User->client: request:credentials
client->gatekeeper: request:credentials
gatekeeper->LDAP: bind(credentials)
LDAP->gatekeeper: success
gatekeeper->gatekeeper: generate:internal_auth_token
gatekeeper->gatekeeper: request:add_cookie(internal_auth_token)
gatekeeper->PASTA_service: request:internal_auth_token
PASTA_service->PASTA_service: authorize(internal_auth_token)
PASTA_service->PASTA_service: do_service
PASTA_service->gatekeeper: response
gatekeeper->gatekeeper: generate:external_auth_token
gatekeeper->gatekeeper: response:add_cookie(external_auth_token)
gatekeeper->client: response:external_auth_token
client->client: to_cache(external_auth_token)
client->User: response
...
== time delta ==
...
User->client: request
client->client: from_cache:external_auth_token
client->gatekeeper: request:external_auth_token
gatekeeper->gatekeeper: verify_signature(external_auth_token)
gatekeeper->gatekeeper: verify_ttl(external_auth_token)
gatekeeper->gatekeeper: create_internal_auth_token(external_auth_token)
gatekeeper->gatekeeper: request:add_cookie(internal_auth_token)
gatekeeper->PASTA_service: request:internal_auth_token
PASTA_service->PASTA_service: authorize(internal_auth_token)
PASTA_service->PASTA_service: do_service
PASTA_service->gatekeeper: response
gatekeeper->client: response
client->User: response
@enduml | false | true | false | false | usecase |
e96959f587c1128459d20ebca1f9e3ea4bf5364c | cb64dcd2e9f1f53a2d77239466253bd16e53df1a | /design/use_case/actors.puml | 74e584a2a5eca192f9fd16f3b5cdf5c663ce1e7f | [
"MIT"
] | permissive | RobertoCalvi29/dup2p | 4b00d5c2ed34de053eacc859a585ec8f1e58aa86 | f26043fd34ac299575d7240dadf39a80f4dac83c | refs/heads/main | 2023-03-29T09:44:29.484766 | 2021-04-01T01:12:58 | 2021-04-01T01:12:58 | 353,164,747 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 102 | puml | @startuml actors
actor "Real Estate" as prop
actor "User" as user
actor "Inspector" as verif
@enduml | false | true | false | false | sequence |
9afe3e5e38ccc7add2a3cc3cfc4533f317a1d8fd | 15131f5101f9355d37d2a7bb60b2bd26ff4083f7 | /docs/diagrams/AutocompleteClassDiagram.puml | 6e4fca8739c998d042177ce251c5a4141a03a678 | [
"MIT"
] | permissive | halfwhole/main | 88970d4c1967e2880d9e3c6b98ee7915a4582f1f | 6eb87de7a3eba615fe09989eea2943f593a879a2 | refs/heads/master | 2020-07-24T04:34:25.557110 | 2019-10-24T18:48:30 | 2019-10-24T18:48:30 | 207,801,798 | 0 | 0 | NOASSERTION | 2019-09-11T12:00:54 | 2019-09-11T12:00:54 | null | UTF-8 | PlantUML | false | false | 283 | puml | @startuml
hide circle
title Class Diagram for Autocomplete
class MainWindow
class CommandBox
class Autocomplete
class TextField
class ReadOnlyModulePlanner
TextField <|-- Autocomplete
CommandBox *- Autocomplete
MainWindow *- CommandBox
ReadOnlyModulePlanner -- Autocomplete
@enduml | false | true | false | false | class |
ba70c0328d036f36a24e602c1276e60ee3be7aa6 | b5ef9eb22daef82d8a931f1bb75289cd51dce61a | /doc/uml_extension.plantuml | 62e1b36389d552857e6fbc811033b7a0af0baa16 | [] | no_license | mariomac/limerick | 2bc3ce8b288d30aa3ec9a4037ae67932ccd47cb3 | 34381ae12da15eeb7d21c719c087cca6fa87756f | refs/heads/master | 2020-04-10T04:05:37.214782 | 2018-12-07T07:37:20 | 2018-12-07T07:37:20 | 160,787,939 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,496 | plantuml | @startuml
hide circle
skinparam classAttributeIconSize 0
class InterfazGrafica {
+{static} TECLA_ARRIBA:int
+{static} TECLA_IZQUIERDA:int
+{static} TECLA_DERECHA:int
+{static} TECLA_R:int
+leeTeclaPulsada():int
+colocaImagen(archivo:String, fila:int, col:int)
}
class ControlJuego {
-nivelEnJuego:int
+redibujaNivelActual()
+partida()
+cargaNiveles()
}
class Nivel {
-filas:int
-columnas:int
-datosMap:char[][]
+inicializar()
+getCelda(f:int, c:int):Celda
+mueveCabeza()
}
class Celda {
-fila:int
-columna:int
+intentaPasar(df:int, dc:int):int
+getImagen():String
+isVacia():boolean
+setContenido(c:ContenidoCelda)
}
class ControlCabeza {
-fila:int
-columna:int
-altura:int
+getFila():int
+getColumna():int
+isLimiteAltura():boolean
+actualizaPosicion(df:int, dc:int)
}
class CargadorNiveles {
+{static} carga(rutaFichero:String):List<Nivel>
}
ArchivoMalFormateadoException <.left. CargadorNiveles: lanza
IOException <.right. CargadorNiveles: lanza
ControlJuego .up.> CargadorNiveles
ControlJuego -left-> InterfazGrafica : gui
ControlJuego -> "1..*" Nivel : niveles
Nivel --> "filas x columnas" Celda
Nivel --> ControlCabeza
abstract class "ContenidoCelda\n{abstract}" as ContenidoCelda {
+{abstract} getImagen():String
+{abstract} intentaPasar(df:int, dc:int):int
}
Celda --> "0..1" ContenidoCelda: contenido
ContenidoCelda <|-right- ControlCabeza
@enduml | false | true | false | false | sequence |
5659cb022158e828ad8e5ccf446fb8a9f60bee28 | 7f31d5e42663581188a455b87e0fe1152b080b00 | /schemas/main.puml | 4df670f18d6e31aebd6d3cc1f22f99c233b0d5c7 | [
"Apache-2.0"
] | permissive | romankh3/raspberrypi-home-ecosystem | 623d0b20a85fbf9e3798f41e1bd5b6205ea2aa4d | f781b3b183f184ce77d1074289dc18148a57e5bc | refs/heads/master | 2021-07-12T15:31:55.090074 | 2020-07-08T08:46:37 | 2020-07-08T08:46:37 | 176,095,518 | 21 | 1 | Apache-2.0 | 2019-03-24T09:36:42 | 2019-03-17T12:07:16 | Shell | UTF-8 | PlantUML | false | false | 543 | puml | @startuml
title Raspberry Pi Home Ecosystem
hide empty members
object BaseConfiguration {
Raspbian Light OS
Install Git
Enabled SSH
Static Ip Address
RPi Monitor
}
object MainServerModel3bPlus {
Based on BaseConfiguration
Mounted usb-storage
Samba
Transmission(Torrent Downloader)
Plex media server
Leanote host
Pi-hole
NextCloud
}
object PiZeroW {
Based on BaseConfiguration
MotionEye
CUPS
}
BaseConfiguration --> MainServerModel3bPlus
BaseConfiguration --> PiZeroW
@enduml | false | true | false | false | object |
600364e445fd964b6abe2add710673e7a6c6cda0 | 5c60b5ce8e885c5eee2b72ab805ec1191686a005 | /docs/pumlFiles/HandleRemovalOfItemsSequence.puml | 53a671fbc43736831d53df1e1d037a7f46e2c081 | [] | no_license | alvynben/tp | ea41264feb9a5e1e99fc0cf60b6344d115689496 | 63b63df620d6688d4cf890c3f986cdc96503d155 | refs/heads/master | 2023-08-29T04:55:55.681506 | 2021-11-12T11:47:15 | 2021-11-12T11:47:15 | 403,198,097 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 685 | puml | @startuml
'https://plantuml.com/sequence-diagram
skinparam backgroundColor #f2f2f2
skinparam defaultFontSize 16
autonumber
activate ":RemoveCommand"
":RemoveCommand" -> ":RemoveCommand": handleRemovalOfItem(nameOfItemToBeRemoved, matchingItems)
activate ":RemoveCommand"
":RemoveCommand" -> ":Ui": matchItem(matchingitems, nameOfItemToRemove)
activate ":Ui"
":RemoveCommand" <-- ":Ui": Item itemToBeRemoved
deactivate ":Ui"
":RemoveCommand" -> ":RemoveCommand": handleRemovalOfMultipleQuantity(itemToBeRemoved)
activate ":RemoveCommand"
":RemoveCommand" --> ":RemoveCommand"
deactivate ":RemoveCommand"
":RemoveCommand" --> ":RemoveCommand"
deactivate ":RemoveCommand"
@enduml | false | true | false | false | sequence |
33f55472309494ce53736241747e9dbbac2cdcf5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ReviewSetTargetAction.puml | 1dcd7e6b62038c6b34350fcf42a15497bc45dab1 | [] | 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 ReviewSetTargetAction [[ReviewSetTargetAction.svg]] extends ReviewUpdateAction {
action: String
target: [[Object.svg Object]]
}
interface ReviewUpdateAction [[ReviewUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
75a5f6a2eb6ccaaa5cd013b7fcac26c502fb9f99 | 753c29701fff000c19e35ae9e1841e64c6680946 | /src/sample/classBat.puml | 3c1bad0f55c8cccbae7e1c0a6b879d5de9f66b0b | [] | no_license | limfo7/Roc-analysis | 65ba7e109e336df65a88be2dec7ef2ddba50d3ad | bd9e75f975531016a90e200966e2772e84afed5d | refs/heads/master | 2021-03-11T19:37:38.548722 | 2020-05-09T18:36:58 | 2020-05-09T18:38:02 | 246,555,055 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 594 | puml | @startuml
package Sample {
class Controller {
+Label : nameInstrum
+Label : namePotreblenie
+Label : nameTimeWork
+AnalysisElectriciry : analysisElectriciry
+ goToAnalys()
}
class AnalysisElectriciry {
+ Float : result
+ getValTimeWork()
+ getNameInstrum()
+ getValPotrebl()
+ setNameInstrum()
+ setValPotrebl()
+ setValTimeWork()
+ analysFunction()
+ getResult()
}
class DB_Instrumentation {
+String : nameInstrum
+Float : valPotreblenie
+dataTime2 : timeWork
+DB_Instrumentation : instrumentForDb
}
}
DB_Instrumentation --* Controller
Controller *-- AnalysisElectriciry
@enduml | false | true | false | false | class |
3edda98343602e9f6759c2538118dd6fc319851b | c2ef7c48e236c3d1780fdcac75abce25c672c652 | /src/main/resources/uml/DecoratorUml.puml | 7a2282d0f3fccf5d0fdcfeb98bdda5876ac00217 | [] | no_license | ToryZhou/design-pattern | 8d63b720ef54c9633eb10122c4cbeae45ae7ea1c | c9bcd6ae5cfb398e86d3af9a6a704e70a604b5cd | refs/heads/master | 2022-09-10T09:57:10.616533 | 2022-08-22T02:48:42 | 2022-08-22T02:48:42 | 132,232,311 | 62 | 31 | null | 2022-08-22T02:48:43 | 2018-05-05T09:11:57 | Java | UTF-8 | PlantUML | false | false | 477 | puml | @startuml
title Decorator
class Person{
-name:String
+putOn()
}
class Finery{
#person: Person
+putOn()
}
class BigTrouser{
+putOn()
}
class LeatherShoes{
+putOn()
}
class Sneakers{
+putOn()
}
class Suit{
+putOn()
}
class Tie{
+putOn()
}
class TShirts{
+putOn()
}
Person <|-- Finery
Finery o--> Person
Finery <|-- BigTrouser
Finery <|-- LeatherShoes
Finery <|-- Sneakers
Finery <|-- Suit
Finery <|-- Tie
Finery <|-- TShirts
@enduml | false | true | false | false | class |
d6eb0d909d6cae3ecf15d15215ce51ddadfbccfe | 51bbfaef0331f2ab3506802100a1d18b1f12c4e9 | /design-pattern/decorator/etc/decorator.puml | d5247420925cfed4de8fb0c7793120ee99c5637d | [
"Apache-2.0"
] | permissive | JaphyFan/spring-bootstrap | 6439c91d95f98c16dccb7c36b07bb8f777d04792 | c817b4a4f847d9b12c6613b2fedf9064f7fd40a9 | refs/heads/master | 2023-07-23T20:03:53.087571 | 2023-04-25T01:10:05 | 2023-04-25T01:10:05 | 228,553,612 | 0 | 0 | Apache-2.0 | 2023-07-07T21:52:20 | 2019-12-17T06:59:45 | Java | UTF-8 | PlantUML | false | false | 539 | puml | @startuml
'https://plantuml.com/class-diagram
package com.japhy.design {
interface Troll{
+ attack(): void
+ getAttackPower(): int
+ fleeBattle(): void
}
class SimpleTroll {
+ attack(): void
+ getAttackPower(): int
+ fleeBattle(): void
}
class ClubbedTroll {
- troll: Troll
+ attack(): void
+ getAttackPower(): int
+ fleeBattle(): void
}
SimpleTroll ..|> Troll
ClubbedTroll ..|> Troll
ClubbedTroll *--> Troll
}
@enduml | false | true | false | false | class |
64cdd7b10819834e5bb957553cb3be686b4144be | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Editor/Effects/BloomEditor.puml | e43b7f1e5fa1e0e7c1be439953395182bf843f75 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 809 | puml | @startuml
class BloomEditor <<sealed>> {
+ <<override>> OnEnable() : void
+ <<override>> OnInspectorGUI() : void
}
class "PostProcessEffectEditor`1"<T> {
}
"PostProcessEffectEditor`1" "<Bloom>" <|-- BloomEditor
BloomEditor --> "m_Intensity" SerializedParameterOverride
BloomEditor --> "m_Threshold" SerializedParameterOverride
BloomEditor --> "m_SoftKnee" SerializedParameterOverride
BloomEditor --> "m_Clamp" SerializedParameterOverride
BloomEditor --> "m_Diffusion" SerializedParameterOverride
BloomEditor --> "m_AnamorphicRatio" SerializedParameterOverride
BloomEditor --> "m_Color" SerializedParameterOverride
BloomEditor --> "m_FastMode" SerializedParameterOverride
BloomEditor --> "m_DirtTexture" SerializedParameterOverride
BloomEditor --> "m_DirtIntensity" SerializedParameterOverride
@enduml
| false | true | false | false | class |
1701b6c2e880be6f67b9b5377f10f87ff752b264 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/solution/fundamental/ex6/ex6.plantuml | 17f5a0d43918634e3af38d4e692a183bb0237ecb | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 432 | plantuml | @startuml
title __EX6's Class Diagram__\n
namespace global.skymind {
namespace solution.fundamental.ex6 {
class global.skymind.solution.fundamental.ex6.Ex6_LogicalOps {
{static} + main()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
6e9bbc83bc72265c0144fa114338d0e7fcbfc5f9 | 385efe394588310dc056a7008805b0828fab48f1 | /src/main/java/ex43/ex43.puml | 8c2cadc1461d2615045b2c3981bc58432fe11a7f | [] | no_license | JazzFaye/olario-cop3330-assignment3 | 80a9c03a7dc24ee1d1b9c83dd9e69b48e96db1f2 | cd15e89f7f03220f2b316a94d45fee0ad5829c4a | refs/heads/master | 2023-08-15T13:02:43.408439 | 2021-10-12T01:25:35 | 2021-10-12T01:25:35 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 570 | puml | @startuml
Class App{
- CSS : String
- Jss : String
- Name : String
- Site : String
- sc : Scanner {readOnly}
---
+ main(String[] args : String[]) : void
+ user_input() : void
+ Output() : void
}
Class CreateWebsite{
~ css : String
~ js : String
~ html : String
~ website : String
- InputFile : String {readOnly}
---
+ Site_Name(name : String) : String
+ HTML (name : String) : String
+ JS_FILE(name : String, Script : String) : String
+ CS_FILE(name: String, Script : String) : String
+ WriteHTML(Website : String, Author : String) void
}
App <-- CreateWebsite
@enduml | false | true | false | false | class |
203b9b4987522f1f31b42de4ea388d113ecfc839 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao2/UC4_SD.puml | a07222493144a0da1b6f3e2de7f38d69d3d31653 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,674 | puml | @startuml
autonumber
'hide footbox
actor "Administrativo" as ADM
participant ":EspecificarCompetenciaTecnicaUI" as UI
participant ":EspecificarCompetenciaTecnicaController" as CTRL
participant ":Plataforma" as PLAT
participant "ct\n:CompetenciaTecnica" as COMPETENCIA
participant "la\n:List<AreaAtividade>" as LISTA_AREAS
participant "at\n:AreaAtividade" as AREA
activate ADM
ADM -> UI : inicia a especificação de uma competência técnica
activate UI
UI --> ADM : solicita os dados \n(código único, descrição breve e detalhada)
deactivate UI
ADM -> UI : introduz os dados solicitados
activate UI
UI -> CTRL : la=getAreasAtividade()
activate CTRL
CTRL -> PLAT : la=getAreasAtividade()
activate PLAT
UI --> ADM : mostra a lista de áreas de atividade e pede para selecionar uma
deactivate CTRL
deactivate PLAT
deactivate UI
ADM -> UI : seleciona uma área de atividade
activate UI
UI -> CTRL : novaCompetencia(cod,dsBreve,dsDet,atCod)
activate CTRL
CTRL -> PLAT: at=getAreaAtividadeByCod(atCod)
activate PLAT
|||
deactivate PLAT
CTRL -> PLAT: ct=novaCompetencia(cod,dsBreve,dsDet,at)
activate PLAT
PLAT --> COMPETENCIA**: create(cod,dsBreve,dsDet,at)
deactivate PLAT
CTRL --> PLAT : validaCompetencia(ct)
activate PLAT
UI --> ADM : apresenta os dados e solicita confirmação
deactivate PLAT
deactivate CTRL
deactivate UI
ADM -> UI : confirma os dados
activate UI
UI -> CTRL : registaCompetencia()
activate CTRL
CTRL -> PLAT : registaCompetencia(ct)
activate PLAT
PLAT -> PLAT : validaCompetencia(ct)
PLAT -> PLAT : addCompetencia(ct)
UI --> ADM : informa do sucesso da operação
deactivate PLAT
deactivate CTRL
deactivate UI
deactivate ADM
@enduml
| false | true | true | false | usecase |
038bdced44856eeb77b964b337c91c021386b1bd | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao3/UC7/UC07_MD.puml | 35ce04ca59284e657c0ee04e3ccd91458925df6c | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 871 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Plataforma {
-String designacao
}
class Freelancer {
-String nome
-String NIF
-String telefone
-String email
}
class HabilitacaoAcademica {
-String grau
-String designacao
-String instituicao
-String media
}
class ReconhecimentoCompetenciaTecnica {
-String data
-String competenciaTecnica
-String grauProficiencia
}
class EnderecoPostal {
-String local
-String codPostal
-String localidade
}
class Utilizador {
-String nome
-String email
-String password
}
Plataforma "1" -- "*" Freelancer : tem registados >
Freelancer "1" -- "0..*" HabilitacaoAcademica: possui >
Freelancer "1" -- "0..*" ReconhecimentoCompetenciaTecnica: possui >
Freelancer "1" -- "1" EnderecoPostal: tem >
Freelancer "0..1" -- "1" Utilizador: atua como >
@enduml
| false | true | false | false | class |
f3099a26f91dda18691693f2b343afec09b919c2 | 92d15cfae4cc378e13b8d7270ddcae4dfe9cdde7 | /Analysis/behavioral/PSSM_staff_fullfilment_sd.puml | 6f7f5ce734e4a6e9501d27ef66e6e7fc5c7356e1 | [] | no_license | rtk4616/CIS641-capstone | 96bf1804d57090b1e0c9378b49ed4ec11d4a127f | c2bca7f9a652580468356ed4b3b95c74f73eecd8 | refs/heads/master | 2021-04-15T16:41:15.447930 | 2016-12-07T22:58:13 | 2016-12-07T22:58:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,645 | puml | @startuml
skinparam monochrome true
title PSSM Temporary Staff Fullfilment\nSequence Diagram\n
actor Client as C
actor "Contract\nManager" as CM
actor "Temporary\nEmployee" as TE
actor "PSSM\nEmployee" as PE
participant ":Contract" as CO
participant ":Staffing\nRequest" as SR
participant ":Temp\nEmployee" as TEC
group Client Demand
C -> CM : Request Temp Staff
CM -> CO: validateContract()
group Invalid StaffingRequest
CO --> CM : Invalid Contract
CM --> C : "unable-to-fill", Why Letter
end
CO --> CM : Valid Contract
CM -> SR : createNewStaffingRequest()
end
group Placement
PE -> SR : getStaffingRequest()
SR --> PE : StaffingRequest
PE -> TEC : getCandidates(StaffingRequest)
group No Qualified Candidate Found
TEC -> PE : No Candidate Found
PE -> PE : Create "unable-to-fill" Memo
PE -> SR : attachMemo()
SR --> CM : Contract Manager notification
CM -> CO : closeStaffingRequest()
end
TEC --> PE : Display Candidates
PE -> TEC : reserveEmployee(StaffingRequest)
TEC --> PE : Employee Reserved
PE -> TE : Negotiate Placement
group No Placement
TE --> PE : Placement Not Agreed
PE -> CO : fileContract(SR, bill, memo)
CO --> CM : Contract Manager notification
CM -> C : Client Notification, "unable-to-fill"
end
TE --> PE : Placement Agreed
PE -> SR : updateStaffingRequest(TempEmployee)
SR --> PE : StaffingRequest Updated
end
group Arrangement
PE -> TEC : placeEmployee(StaffingRequest)
TEC --> PE : Employee Placed
CM -> SR : closeStaffingRequest()
SR --> CM : Confirmation Message
CM --> C: Notify Client, Request Filled
end
@enduml
| false | true | false | false | usecase |
dfc2979d7d8e882a23e89542df1ca66e10fe9f10 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P2/STUB_Yeste_Guerrero_Cabezas/out/test/STUB_Yeste_Gómez_Cabezas/app/spec/t9_verNotStartedYet/t9_verNotStartedYet.plantuml | 27596e864b658c03808c3cd51fd812acfc5f210d | [
"WTFPL"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 348 | plantuml | @startuml
title __T9_VERNOTSTARTEDYET's Class Diagram__\n
package app.spec.t9_verNotStartedYet {
class ViewNotStartedYetTest {
}
}
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 |
94444e2f9917f97f45820b45e467bca44abb4d18 | 166731f8c1d25286a263538efbe0cc0423420b1b | /DevOps4Ops/diagrams/webarchitecture.plantuml | cfb13e0a1ad05eb705d98dcd08d4c1c0e899f230 | [
"CC-BY-4.0"
] | permissive | brightcoast/DevOpsFor | 288c7c5354fc00d96a0a31e738de9b2bb1314227 | 9ea23b9630069ecb5962833f9a77391bba4cf555 | refs/heads/master | 2020-05-23T07:36:25.423246 | 2019-05-16T00:09:36 | 2019-05-16T00:09:36 | 186,680,088 | 0 | 0 | null | 2019-05-14T18:41:48 | 2019-05-14T18:41:48 | null | UTF-8 | PlantUML | false | false | 422 | plantuml | @startuml
actor User as user
package "Browser" {
node "User Interface" as client
}
user -left-> client
package "Application" {
node "Application\nServer" as app
node "API\nServer" as api
}
package "Database" {
database "Application\nDatabase" as db
}
interface "Other\nApplications" as other
client --> app
app -right-> api
api -left-> app
api <-right-> other
app --> db
@enduml
| false | true | false | false | sequence |
3656e35546069e47858c5f5b6c376aa17404bb20 | d2e0abc63d4112b32ae482438673a27efa5a29aa | /exercise42/docs/exercise42UML.puml | 15fa2d9dc04983a77fd53c291c12680fd75f0e57 | [] | no_license | KatanaJohn/ashley-a04 | 6fb23a65e4f2ccd504d43896320db9681e0c91de | 8a196d6745753931cc14a3215a5191d30335b780 | refs/heads/main | 2023-08-29T23:38:40.225458 | 2021-10-17T22:14:55 | 2021-10-17T22:14:55 | 415,414,954 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 289 | puml | @startuml
class Solution42 {
+main(String[])
-void writeOutput(String[] employeeList)
}
class ListParser {
+List<String> getInputInfo()
+List<String> organizeList(List<String> nameList)
+String[] splitList(List<String> nameList)
}
Solution42 --o ListParser
@enduml | false | true | false | false | class |
0e3253b62588bb31207010f23f49ccd08b17f1cd | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/WEB_Controllers/HouseMonitoring/US620/US620_sd_HouseMonitoring.puml | 29801b733095496e66098cd8058b76e618174115 | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 3,165 | puml | @startuml
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 3
skinparam titleBorderColor indianred
skinparam titleBackgroundColor snow
skinparam FontName quicksand
skinparam actor {
BorderColor indianred
backgroundColor Snow
}
skinparam sequence {
LifeLineBackgroundColor indianred
ParticipantBackgroundColor snow
}
skinparam roundcorner 10
skinparam component {
arrowThickness 1
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
}
title US620 \n I want to get the total rainfall in the house area for a given day.
autonumber
actor "HTTP Client"
"HTTP Client" ->> ":SpringResolver": GET ".../houseMonitoring/totalRainfall" \n getTotalRainfallOnGivenDay \n (DateIntervalDTO)
activate "HTTP Client"
activate ":SpringResolver"
":SpringResolver" ->> ":HouseMonitoringControllerWeb": getTotalRainfallOnGivenDay \n (Date)
deactivate ":SpringResolver"
activate ":HouseMonitoringControllerWeb"
":HouseMonitoringControllerWeb" ->> ":GeographicAreaHouseService": getTotalRainfallOnGivenDay \n (Date)
activate ":GeographicAreaHouseService"
":GeographicAreaHouseService" ->> ":HouseRepository": getHouseByID(id)
create ":House"
activate ":HouseRepository"
":HouseRepository" ->> ":House" : create ":House"
":HouseRepository" -->> ":GeographicAreaHouseService": return house
deactivate ":HouseRepository"
":GeographicAreaHouseService" -->> ":House": getMotherAreaID(Long)
activate ":House"
":House" -->> ":GeographicAreaHouseService": return geographicAreaID
deactivate ":House"
":GeographicAreaHouseService" ->> ":GeographicAreaRepository": get(id)
activate ":GeographicAreaRepository"
create ":GeographicArea"
":GeographicAreaRepository" ->> ":GeographicArea": create GeographicArea
activate ":GeographicArea"
":GeographicArea" -->> ":GeographicAreaRepository": return GeographicArea
deactivate ":GeographicArea"
":GeographicAreaRepository" -->> ":GeographicAreaHouseService": return GeographicArea
deactivate ":GeographicAreaRepository"
ref over ":GeographicAreaHouseService"
get getClosestSensorOfGivenType
end ref
create ":Sensor"
":GeographicAreaHouseService" ->> ":Sensor": getReadings()
activate ":Sensor"
":Sensor" -->":GeographicAreaHouseService":return List<Reading>
deactivate ":Sensor"
":GeographicAreaHouseService" -> "ReadingUtils": getValueReadingsInDay(Date, List<Reading>)
activate "ReadingUtils"
"ReadingUtils" --> ":GeographicAreaHouseService": return double
deactivate ":Sensor"
deactivate "ReadingUtils"
alt AreaSensor with Readings (SUCCESS)
":GeographicAreaHouseService" -->> ":HouseMonitoringControllerWeb": return double
":HouseMonitoringControllerWeb" -->> "HTTP Client": return new ResponseEntity<>(double, HttpStatus.SUCCESS)
else if AreaSensor Non-existent or without Readings on the given date
":GeographicAreaHouseService" -->> ":HouseMonitoringControllerWeb": return throw Exception
deactivate ":GeographicAreaHouseService"
":HouseMonitoringControllerWeb" -->> "HTTP Client": return new ResponseEntity<>(failed message, HttpStatus.BAD_REQUEST)
deactivate "HTTP Client"
deactivate ":HouseMonitoringControllerWeb"
end
@enduml | false | true | false | false | usecase |
fe298cfc761d1f5b93b246a40b366947ab290e98 | 9719552a1c9d48895aa95b7235a414ce4f9be2a4 | /uml/src/UmlMain.puml | 3d41363421f6b6ffdc84a2e61641c226cd83b5e5 | [] | no_license | lzyJava666/designMode | c2b582702ddb38eecf65b355408a937c8678f8c9 | cf3bee2e67ece800853efe6b0a1c06bde8c16bbf | refs/heads/main | 2023-03-07T13:55:48.882683 | 2021-02-04T07:59:16 | 2021-02-04T07:59:16 | 325,688,331 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 98 | puml | @startuml
class UmlMain {
-int id
-String name
+getName():String
+setName(String name)
}
@enduml | false | true | false | false | class |
cd596c89241459c45c3f9842f18fe9a2dab58c4a | 57fbc019b098405977ffe0e93551d48425ba78d0 | /smart-contracts/erc-721/erc-721-trade-legacy.plantuml | f4ac71c0884deab88ff32ed411cd18f98f996908 | [] | no_license | 3rdstage/models | 40922c538ad3b56a555817d2258ee5f863002fca | 7d6d41020f53fb39eace3fa3987af63a56d0ace3 | refs/heads/master | 2023-07-19T08:53:40.724866 | 2023-01-09T09:00:46 | 2023-01-09T09:00:46 | 205,056,655 | 0 | 2 | null | 2021-11-04T06:22:06 | 2019-08-29T01:39:54 | D | UTF-8 | PlantUML | false | false | 2,668 | plantuml | @startuml
' Trading NFT
' https://plantuml.com/class-diagram
' https://plantuml.com/sequence-diagram
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html#class
' https://www.w3schools.com/colors/colors_names.asp
skinparam {
'DefaultFontName Consolas
DefaultFontName Monaco
'DefaultFontName Lucida Console
'DefaultMonospacedFontName Consolas
'DefaultFontStyle bold
BackgroundColor transparent
PageMargin 10
BoxPadding 100
ParticipantPadding 20
ArrowFontSize 16
ArrowThickness 1
MinClassWidth 75
ClassFontStyle bold
NoteBackgroundColor SeaShell
NoteBorderColor transparent
NoteShadowing false
}
skinparam Sequence{
DividerBorderThickness 1.5
ReferenceBorderThickness 1.5
MessageAlignment right
ArrowColor DarkSlateGray
ArrowThickness 1.3
LifeLineBorderColor DarkSlateGray
LifeLineBorderThickness 1.3
ActorBorderColor DarkSlateGray
ActorBackgroundColor GhostWhite
ParticipantBorderColor DarkSlateGray
ParticipantBorderThickness 1.5
ParticipantBackgroundColor GhostWhite
BoxBackgroundColor transparent
BoxBorderColor transparent
GroupBorderThickness 1.3
GroupBorderColor Indigo
GroupBodyBackgroundColor LavenderBlush
}
skinparam Group{
BorderThickness 1.3
BorderShadowing true
}
hide Circle
hide Footbox
box
Actor "foo:Seller" as seller
Actor "bar:Buyer" as buyer
end box
Participant "broker:Broker" as broker
Participant "Registry" as reg
Participant "Escrow" as escrow
note over registry, escrow : Trust with High Cost
|||
seller -> reg ++ : register(a:Asset)
seller ++
seller <-- reg --
seller --
seller -> broker ++ : offer(a:Asset,price)
seller ++
broker -> reg ++ : owner(a:Asset)
broker <-- reg -- : return 'foo'
seller <-- broker --
seller --
|||
|||
buyer -> broker ++ : buy(a:Asset, price)
buyer ++
|||
note over buyer, broker : Vulnerable by nature, High cost for security and trust
group critical
buyer -> escrow ++ : deposit(foo,price)
buyer ++
seller <<- escrow ++ : notifiy
escrow ++
seller --
escrow --
buyer <-- escrow -- :
buyer --
seller -> reg ++ : handover(a:Asset,bar)
seller ++
seller <-- reg --
seller --
buyer -> reg ++ : takeover(a:Asset)
buyer ++
buyer <-- reg --
buyer --
buyer -> escrow ++ : send(foo,price)
buyer ++
seller <<- escrow ++ : pay(price)
escrow ++
seller --
escrow --
buyer <-- escrow --
buyer --
|||
end
|||
buyer <-- broker --
buyer --
|||
@enduml
| false | true | false | false | usecase |
fa423e34fbb556cfcbe2b06dcec6061c63da308e | f876fcde7a637d67bbbabb83624c28045c9675ae | /diagrams/src/Application/Models/DataTransferObjects/AddContactDto.puml | d9b810ccace52506e0539e83b0cdf8a69b46ea63 | [
"MIT"
] | permissive | converge-app/chat-service | aa431668be05ea646fd781d52d8bb18b9ff5a1fd | 1ecce444167925467a8ff2235509353c076a1236 | refs/heads/master | 2023-03-11T14:28:10.323241 | 2019-12-17T12:06:22 | 2019-12-17T12:06:22 | 213,873,991 | 0 | 0 | MIT | 2023-03-04T01:15:45 | 2019-10-09T09:17:45 | C# | UTF-8 | PlantUML | false | false | 124 | puml | @startuml
class AddContactDTO {
+ SenderId : string <<get>> <<set>>
+ ReceiverId : string <<get>> <<set>>
}
@enduml
| false | true | false | false | class |
85de4a9d8401a2c324e40844d44e72e378aa4b71 | 7107ed0416c0faff5b6a15dc32a052874fc87009 | /add_ons/uml.puml | 64b305f973ec36b182f3413989722cbbedbcf178 | [] | no_license | samuelkister/led_array | 53f7a50fc551918f62d44e7604457f1c2a569cc1 | 15de2d56068e346b023f9d80234d97df1243a706 | refs/heads/master | 2022-11-22T02:22:35.149433 | 2020-07-27T18:47:11 | 2020-07-27T18:47:11 | 282,987,145 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 624 | puml | @startuml
class RGBBasis {
+ port
+ default_color
+ interface
+ rgb_matrix
+ rgb_bytestream
+ __init__(..)
+ init_rgb_matrix()
+ {static} init_rgb_bytestream()
+ rgb_matrix_to_rgb_bytestream()
+ open_interface()
+ close_interface()
+ write2rgb()
+ __str__()
+ __repr__()
}
class UART2FPGA {
+ enable
+ port
+ instanz
+ __init__(..)
+ open()
+ write()
+ close()
+ __str__()
+ __repr__()
}
UART2FPGA .. RGBBasis
@enduml
// https://useblocks.github.io/posts/daniel/diagramme_mit_plantuml/
// http://plantuml.com/de/class-diagram | false | true | false | false | class |
451a4d429e6e2bba0a0578ab90dc98871386783c | fa876fda51207068ea7c2025828685bdbb66271b | /UML/WebAppComp2.puml | 98a5175903d009cfa1e06200daeeccdb41f26a36 | [] | no_license | ob-swengiib-ws18/ob-swengiib-ws18 | 11ec8d8dab67c01085a93cf4cb166bce6ef05c75 | 2bb2f3c961bdaef4609f212434a85184b7147388 | refs/heads/master | 2020-03-22T13:00:51.413782 | 2018-11-29T08:39:25 | 2018-11-29T08:39:25 | 140,077,034 | 0 | 0 | null | 2018-10-25T09:43:34 | 2018-07-07T11:05:35 | null | UTF-8 | PlantUML | false | false | 272 | puml | @startuml
package "Jetty Server" {
interface LifeCycle {
+start()
}
class Server {
+Server(port: int)
+join()
}
Server ..|> LifeCycle
}
package "Server-Tester" {
class JettyStarter {
{static} +main()
}
}
JettyStarter .> Server
@enduml | false | true | false | false | class |
1cdead125546e9a7493ebe4498bf3e0aa853a613 | e50b955c2a51aabfe3970d25f2a6b3445e806222 | /docs/diagrams/loadModuleList/helpCommandOverallDiagram.puml | c2ba3f8011f7052cc9425273da2b718762bf4108 | [] | no_license | AY2021S1-CS2113T-W11-1/tp | 7a49c176366eadf240354649815b157edd62c976 | ca108c7eacffcb4b7123bb7e52942072f4525839 | refs/heads/master | 2023-01-12T21:36:13.434397 | 2020-11-13T11:09:57 | 2020-11-13T11:09:57 | 299,793,065 | 2 | 5 | null | 2020-11-09T15:44:51 | 2020-09-30T02:50:54 | Java | UTF-8 | PlantUML | false | false | 944 | puml | @startuml
hide footbox
skinparam ParticipantPadding 20
participant ":Zoomaster" as Zoomaster
participant "<<class>> :Parser" as Parser
participant ":HelpCommand" as HelpCommand
participant ":Ui" as Ui
activate Zoomaster
Zoomaster-> Parser : parse(helpCommand)
activate Parser
create HelpCommand
Parser-> HelpCommand : HelpCommand(details)
activate HelpCommand
opt details isNotEmpty
opt details isNotValidCommand
note right of HelpCommand : throws exception
end opt
end opt
HelpCommand--> Parser : command
deactivate HelpCommand
Parser--> Zoomaster : command
deactivate Parser
Zoomaster-> HelpCommand : execute(bookmarks, timetable, ui)
activate HelpCommand
alt details is empty
ref over Parser, HelpCommand, Ui
details is empty
end ref
else details not empty
ref over Parser, HelpCommand, Ui
details not empty
end ref
end alt
deactivate Ui
destroy HelpCommand
@enduml | false | true | false | false | sequence |
3896ad03ed992451c50931fa343295877aba7150 | e00719d13ec796088adf530a1696276b8ca325e1 | /mojaloop-technical-overview/central-settlements/settlement-process/assets/diagrams/sequence/seq-setwindow-6.1.2.plantuml | cca5d36cf0d943786e85b5f5e4de8e1abd6afaeb | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | abehnamfard/documentation | 5158199612e136f4eb357f8ce77c6287d8935276 | 1e3a78954789e1f50185d752953409991d7e1b0f | refs/heads/master | 2022-12-10T04:45:01.467124 | 2020-08-29T08:51:01 | 2020-08-29T08:51:01 | 291,335,317 | 0 | 0 | NOASSERTION | 2020-08-29T19:25:13 | 2020-08-29T19:25:13 | null | UTF-8 | PlantUML | false | false | 16,031 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* ModusBox
- Georgi Georgiev <georgi.georgiev@modusbox.com>
--------------
******'/
@startuml
' declate title
title 6.1.2. Close Settlement Window (closeSettlementWindow)
autonumber
' declare actors
actor "Hub Employee" as OPERATOR
boundary "Settlement Service API" as SSAPI
collections "topic-\nsettlement-window" as TOPIC_SET_WIN
control "Settlement Window\nHandler" as SET_WIN_HANDLER
collections "topic-event" as TOPIC_EVENT
entity "Settlement DAO" as SETTLE_DAO
database "Central Store" as DB
box "Central HUB" #lightpink
participant OPERATOR
end box
box "Settlement Service" #lightgreen
participant SSAPI
participant TOPIC_SET_WIN
participant SET_WIN_HANDLER
participant TOPIC_EVENT
participant SETTLE_DAO
end box
box "Central Services" #lightyellow
participant DB
end box
' start flow
group Close Settlement Window
activate OPERATOR
activate SET_WIN_HANDLER
note right of OPERATOR #yellow
{
"state": "CLOSED",
"reason": <string>
}
end note
OPERATOR -> SSAPI: POST - /settlementWindows/{id}
activate SSAPI
SSAPI -> SSAPI: Validate payload, existing window,\nstate, assigned transfers, etc.
break
note right of SSAPI #yellow
{
"errorInformation": {
"errorCode": <integer>,
"errorDescription": "FSPIOP Error Description"
}
}
end note
OPERATOR <-- SSAPI: Respond HTTP - 400 (Bad Request)
end
SSAPI -> SETTLE_DAO: Get requested settlementWindow and state\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
SETTLE_DAO -> DB: Get settlementWindow state
activate DB
hnote over DB #lightyellow
SELECT sw.settlementWindowId, swsc.settlementWindowStateId,
swsc.reason, sw.createdDate, swsc.createdDate changedDate
FROM **settlementWindow** AS sw
JOIN **settlementWindowStateChange** AS swsc
ON swsc.settlementWindowStateChangeId = sw.currentStateChangeId
WHERE sw.settlementWindowId = {id}
end hnote
deactivate DB
SETTLE_DAO --> SSAPI: Return result
deactivate SETTLE_DAO
alt settlementWindow found && settlementWindowStateId == 'OPEN'
group Process settlement window
SSAPI -> SETTLE_DAO: Terminate current window and open a new one\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
group <color #blue>DB TRANSACTION: Terminate window usage and initate next</color>
note right of SETTLE_DAO #lightgray
let **transactionTimestamp** = now()
end note
SETTLE_DAO -> DB: Terminate requested window
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementWindowStateChange**
(settlementWindowId, settlementWindowStateId, reason, createdDate)
VALUES ({id}, 'PROCESSING', {payload.reason}, {transactionTimestamp})
end hnote
SETTLE_DAO <-- DB: Return **settlementWindowStateChangeId**
deactivate DB
SETTLE_DAO -> DB: Update pointer to current state change id
activate DB
hnote over DB #lightyellow
UPDATE **settlementWindow**
SET currentStateChangeId = {settlementWindowStateChangeId}
WHERE settlementWindowId = {id}
end hnote
deactivate DB
SETTLE_DAO -> DB: Create new settlementWindow
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementWindow** (reason, createdDate)
VALUES ({payload.reason}, {transactionTimestamp})
end note
SETTLE_DAO <-- DB: Return **settlementWindowId**
deactivate DB
SETTLE_DAO -> DB: Insert intial state for the created window
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementWindowStateChange**
(settlementWindowId, settlementWindowStateId, reason, createdDate)
VALUES ({settlementWindowId}, 'OPEN', {payload.reason}, {transactionTimestamp})
end note
SETTLE_DAO <-- DB: Return **newSettlementWindowStateChangeId**
deactivate DB
SETTLE_DAO -> DB: Update pointer to current state change id
activate DB
hnote over DB #lightyellow
UPDATE **settlementWindow**
SET currentStateChangeId = {newSettlementWindowStateChangeId}
WHERE settlementWindowId = {settlementWindowId}
end hnote
deactivate DB
end
SSAPI <-- SETTLE_DAO: Return success
deactivate SETTLE_DAO
end
note right of SSAPI #yellow
Message:
{
id: <uuid>
from: switch,
to: switch,
type: application/json
content: {
payload: {
settlementWindowId: {id}
}
},
metadata: {
event: {
id: <uuid>,
responseTo: null,
type: setwin,
action: close,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
SSAPI -> TOPIC_SET_WIN: Produce Settlement Window\nevent message\n<color #FF0000><b>Error codes:</b> 2003</color>
activate TOPIC_SET_WIN
deactivate TOPIC_SET_WIN
note left of SSAPI #yellow
{
"id": settlementWindowId,
"state": 'OPEN',
"reason": payload.reason,
"createdDate": transactionTimestamp,
"changedDate": transactionTimestamp
}
end note
OPERATOR <-- SSAPI: Respond HTTP - 201 (Created)
deactivate SSAPI
deactivate OPERATOR
group Close settlement window (SettlementWindowHandler)
TOPIC_SET_WIN <- SET_WIN_HANDLER: Consume Settlement Window\nevent message
activate TOPIC_SET_WIN
deactivate TOPIC_SET_WIN
group Persist Event Information
|||
SET_WIN_HANDLER -> TOPIC_EVENT: Publish event information
ref over SET_WIN_HANDLER, TOPIC_EVENT: Event Handler Consume\n
|||
end
note right of SET_WIN_HANDLER #lightgray
let **id** = message.content.payload.settlementWindowId
let **windowContentReady** = false
let **iter** = 0
end note
loop iter < Config.WIN_AGGREGATION_RETRY_COUNT && !windowContentReady
note right of SET_WIN_HANDLER #lightgray
iter++
end note
SET_WIN_HANDLER -> SETTLE_DAO: Check if all transferParticipant records\nfor the requested window have been set\n(currentStateChangeId is NOT NULL).\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
SETTLE_DAO -> DB: Use EXISTS query to find NULL currentStateChangeId records
activate DB
hnote over DB #lightyellow
transferFulfilment
transferParticipant
end hnote
deactivate DB
SET_WIN_HANDLER <-- SETTLE_DAO: Return result (success / failure)
deactivate SETTLE_DAO
opt transferParticipant records have been processed by central-ledger SettlementModelHandler
SET_WIN_HANDLER -> SETTLE_DAO: Generate window content and aggregations\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
group <color #blue>DB TRANSACTION: Generate window content and aggregations</color>
note right of SETTLE_DAO #lightgray
let **transactionTimestamp** = now()
end note
SETTLE_DAO -> DB: Change all applicable entries to CLOSED state
activate DB
hnote over DB #lightyellow
transferParticipantStateChange
transferParticipant
end hnote
deactivate DB
SETTLE_DAO -> DB: Determine window content and insert
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementWindowContent** (settlementWindowId, ledgerAccountTypeId,
currencyId, createdDate)
SELECT DISTINCT {id} settlementWindowId, pc.ledgerAccountTypeId,
pc.currencyId, transactionTimestamp
FROM **transferFulfilment** tf
JOIN **transferParticipant** tp
ON tp.transferId = tf.transferId
JOIN **participantCurrency** pc
ON pc.participantCurrencyId = tp.participantCurrencyId
WHERE tf.settlementWindowId = {id}
end hnote
deactivate DB
SETTLE_DAO -> DB: Aggregate window data and insert
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementContentAggregation** (settlementWindowContentId, participantCurrencyId,
transferParticipantRoleTypeId, ledgerEntryTypeId, currentStateId, createdDate, amount)
SELECT swc.settlementWindowContentId, pc.participantCurrencyId, tp.transferParticipantRoleTypeId,
tp.ledgerEntryTypeId, 'CLOSED', transactionTimestamp, SUM(tp.amount)
FROM **transferFulfilment** tf
JOIN **transferParticipant** tp
ON tf.transferId = tp.transferId
JOIN **participantCurrency** pc
ON pc.participantCurrencyId = tp.participantCurrencyId
JOIN **settlementWindowContent** swc
ON swc.settlementWindowId = tf.settlementWindowId
AND swc.ledgerAccountTypeId = pc.ledgerAccountTypeId
AND swc.currencyId = pc.currencyId
WHERE ttf.settlementWindowId = {id}
GROUP BY swc.settlementWindowContentId, pc.participantCurrencyId,
tp.transferParticipantRoleTypeId, tp.ledgerEntryTypeId
end hnote
deactivate DB
SETTLE_DAO -> DB: Insert initial window content state change
activate DB
hnote over DB #lightyellow
INSERT INTO **settlementWindowContentStateChange**
(settlementWindowContentId, settlementWindowStateId)
SELECT swc.settlementWindowContentId, 'CLOSED'
FROM **settlementWindowContent** swc
WHERE swc.settlementWindowId = {id}
end hnote
deactivate DB
SETTLE_DAO -> DB: Update pointers to current state change ids
activate DB
hnote over DB #lightyellow
settlementWindowContent
end hnote
deactivate DB
end
SETTLE_DAO --> SET_WIN_HANDLER: Return result (success / failure)
deactivate SETTLE_DAO
end
alt success
note right of SET_WIN_HANDLER #lightgray
windowContentReady = true
end note
SET_WIN_HANDLER -> SETTLE_DAO: Close requested window\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
SETTLE_DAO -> DB: Change window state to 'CLOSED'
activate DB
hnote over DB #lightyellow
settlementWindowStateChange
settlementWindow.currentStateChangeId
end hnote
deactivate DB
deactivate SETTLE_DAO
else failure && iter < Config.WIN_AGGREGATION_RETRY_COUNT
note right of SET_WIN_HANDLER #lightgray
**sleep** Config.WIN_AGGREGATION_RETRY_INTERVAL seconds
end note
else failure
SET_WIN_HANDLER -> SETTLE_DAO: Fail requested window\n<color #FF0000><b>Error code:</b> 2001</color>
activate SETTLE_DAO
SETTLE_DAO -> DB: Change window state to 'FAILED'
activate DB
hnote over DB #lightyellow
settlementWindowStateChange
settlementWindow.currentStateChangeId
end hnote
deactivate DB
deactivate SETTLE_DAO
SET_WIN_HANDLER ->> SET_WIN_HANDLER: Log ERROR event
end
end
end
else
SSAPI ->> SSAPI: Log ERROR event
activate SSAPI
note left of SSAPI #yellow
{
"errorInformation": {
"errorCode": <integer>,
"errorDescription": "Client error description"
}
}
end note
OPERATOR <-- SSAPI: Respond HTTP - 4xx (Client error)
deactivate SSAPI
activate OPERATOR
end
deactivate OPERATOR
deactivate SET_WIN_HANDLER
end
@enduml
| false | true | true | false | usecase |
315bd307f53db0772d8c289acd2ab68a98d4e77a | c37176203ad137daa1b62c20e6669ccd0098a3f7 | /src/main/java/ex43/base/LayoutEx43.puml | cf7fdb15d390fe28f7f027edac8f3f45f4ecd698 | [] | no_license | jgpeachey/Peachey-COP3330-Assignment3 | 2a703f352646f76763a2700eb6fca17b7d96ba34 | b4cf9f8a8aa9207413a13e729a33329910165b6c | refs/heads/master | 2023-06-03T08:35:04.243435 | 2021-06-21T03:59:48 | 2021-06-21T03:59:48 | 377,663,287 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 371 | puml | /*
* UCF COP3330 Summer 2021 Assignment 3 Solution
* Copyright 2021 John Peachey
*/
@startuml
'https://plantuml.com/class-diagram
App o-- WebsiteCentral
App o-- FileCentral
class App {
userInput()
outputCreator()
}
class WebsiteCentral{
websiteCreator()
}
class FileCentral{
directoryMaker()
fileMaker()
subDirectoryMaker()
}
@enduml | false | true | false | false | class |
de0f3b2e0f772c3826d0d30bcbea5966b30d42b1 | f505f3173c77debabd0a54f4124ecd87df0cb583 | /design-patterns/src/main/java/com/nijunyang/designpatterns/bridge/bridge.puml | 2cf0b82d1e9f252c23757319b9ead926958bc229 | [] | no_license | bluedarkni/study | 4dab9a627e11703e7b19c1ca5e4fd1c7a5e6c447 | 3da7f58e4df50b2ce0aa38eaff09fbc7b0329cca | refs/heads/master | 2023-04-06T20:57:52.596183 | 2023-03-26T12:53:51 | 2023-03-26T12:53:51 | 226,616,133 | 4 | 3 | null | 2022-06-21T04:24:54 | 2019-12-08T04:50:21 | Java | UTF-8 | PlantUML | false | false | 375 | puml | @startuml
abstract WaterDropScreenPhone
abstract LiuHaiScreenPhone
abstract WaKongScreenPhone
interface Phone
class HuaWei
class Vivo
Phone <|.. WaterDropScreenPhone
Phone <|.. LiuHaiScreenPhone
Phone <|.. WaKongScreenPhone
WaKongScreenPhone <|-- HuaWei
WaKongScreenPhone <|-- Vivo
'LiuHaiScreenPhone <|-- HuaWei
'LiuHaiScreenPhone <|-- Vivo
@enduml | false | true | false | false | class |
0652399157ca3c667a32fccae473501715bb1fae | 245dab3313d45260bdca21aa540b62c99cd5f046 | /design/examService.puml | df0c378a9158adf3817aa6fc178cdeaccf5875d5 | [] | no_license | xiang3/exam-plantform | c1eb303e93c9d190ef3cd40b6939a36a41b78a7d | ee12c370ab68e1af80141c1c60bc9a28c56d17b3 | refs/heads/master | 2022-04-18T19:48:09.714118 | 2020-04-13T11:04:06 | 2020-04-13T11:04:06 | 254,629,443 | 0 | 0 | null | 2020-04-20T06:27:03 | 2020-04-10T12:30:06 | Java | UTF-8 | PlantUML | false | false | 1,329 | puml | @startuml
class Teacher <<Entity>> {
id: String
}
class Student <<Entity>> {
id: String
}
package Paper <<Aggregate>> {
class Paper <<Aggregate Root>> {
id: String
blankQuiz: List
updatePaper()
{static} create(): Paper
}
class "BlankQuiz" as blankQuiz <<Value Object>>{
id: String
question: String
referenceAnswer: String
score: Number
}
Paper "1" *-- "n" blankQuiz
Paper "n" *-- "1" Teacher
}
package AnswerSheet <<Aggregate>> {
class AnswerSheet <<Aggregate Root>> {
id: String
studentId: String
Score: Number
answer: List
handInAnswerSheet()
reviewedAnswerSheet()
{static} create(): AnswerSheet
}
class Answer <<Entity>>{
id: String
blankQuizId: String
submitAnswer()
}
AnswerSheet "1" *-- "1" Student
AnswerSheet "1" *-- "n" Answer
}
package Examination <<Aggregate>> {
class Examination <<Aggregate Root>> {
id: String
paper: Paper
blankQuizNumber: Number
examTime: Date
studentId: List
finishExmination()
{static} create(): Examination
}
Examination "1" *-- "1" Teacher
Examination "1" *-- "n" Student
Examination "1" *-- "1" Paper
}
@enduml | false | true | false | false | class |
56f8f19257554be9a00f69b2f98717a922db169d | b8b944a1c6b89f9426d9c85b2560968b41e913d2 | /resources/UML/ro.uaic.info/configuration/tests/tests.plantuml | 3afb8615fadd2dea30bda890263710213ed2d695 | [] | no_license | anaidde/VladianaInvaders | e0076b7a4e2b4cc48de6cabfa4ee0158888f5ec0 | aff35c93b657c06ca9038884126fe0dd0a7a094a | refs/heads/master | 2022-11-12T10:03:36.383752 | 2020-07-02T09:30:37 | 2020-07-02T09:30:37 | 261,261,460 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 194 | plantuml | @startuml
title __TESTS's Class Diagram__\n
namespace ro.uaic.info.configuration.tests {
class ro.uaic.info.configuration.tests.EngineTest {
{static} + main()
}
}
@enduml
| false | true | false | false | class |
dd50ca079328defdbf8c6c1ea0d63f9c877eb47c | 8d91ff31e22d4f0f2082ebba0c6da8ec4391e8f4 | /src/doc/sequenceDiagram/signup.puml | 23e24781afc15526aae5509c1fcf437edcb8a202 | [] | no_license | suraj903/sportsgeek_backend-1 | fe54372687c96ac6a92a8e76d913bf60f44ffee7 | 99fe51fa81a9df4599f2b3eeac299846d5bf835d | refs/heads/master | 2023-07-28T02:16:51.481764 | 2021-09-13T14:43:12 | 2021-09-13T14:43:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,040 | puml | @startuml
header SportsGeek
title Sign Up
skinparam ParticipantPadding 10
skinparam BoxPadding 20
actor User
box "SportsGeek System"
participant sportsGeek
end box
box "User Service"
participant user
end box
box "database"
database database
end box
box "email service"
participant email
end box
User -> sportsGeek: Enter the Details to Register
activate sportsGeek #lightblue
alt #white
note right #yellow
*params*
firstName=xyz
lastName=pqr
genderId=1
username=xyz112
password=******
email=xyz123@gmail.com
mobileNumber=9632587410
availablePoints=500
profilePicture=xyz.png
end note
sportsGeek -> "user" : Check user exists
activate user #lightblue
user -> "database" : Check user exists
activate "database" #lightblue
"database" --> "user" : <font color=darkblue><b>Response not exist user
user -> "database" : add user details
alt #lightgreen If user added
"user" -> email : <font color=darkblue><b>Mail Sent to User
"database" --> user : <font color=darkblue><b>Response user added
"user" --> sportsGeek : <font color=darkblue><b>Response User Added
"sportsGeek" --> User : <font color=darkblue><b>Response User Added
else #pink UserName Already Exist
"database" --> "user" : <font color=darkblue><b> User exist
"user" --> "sportsGeek" : <font color=darkblue><b>Response Username already exist
"sportsGeek" --> User : <font color=darkblue><b>Response Username already exist
else #pink Email Already Exist
"database" --> "user" : <font color=darkblue><b> Email exist
"user" --> "sportsGeek" : <font color=darkblue><b>Response Email already exist
"sportsGeek" --> User : <font color=darkblue><b>Response Email already exist
else #pink Unable to Add User
"database" --> "user" : <font color=darkblue><b> Unable to Add User
deactivate "database"
"user" --> "sportsGeek" : <font color=darkblue><b>Response Unable to Add User
deactivate "user"
"sportsGeek" --> User : <font color=darkblue><b>Response Unable to Add User
deactivate "sportsGeek"
end alt
end alt
@enduml | false | true | false | false | sequence |
1ce0f751b101aa011f3f0dccd8f5b363e3b42386 | 4d66030f0dcd0b815bf6af7a607220f932f1abb8 | /UML/class/PeripheralDrivers/DigitalPort/DigitalPort.plantuml | 5a7190521dc05250bfe3cb373ceb5d4a2bbe9e2a | [] | no_license | TabletennisScoreCounter/firmwareDocumentations | 5e4104beb5dd6c8879ed135e815b032b93639321 | 4e049daafe9d37fe697a46a09f0fefeb52634185 | refs/heads/master | 2020-06-11T10:50:36.076051 | 2017-09-24T00:41:36 | 2017-09-24T00:41:36 | 75,685,379 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,863 | plantuml | @startuml
title DigitalPort Class
abstract "DigitalPort" as AbstractDigitalPort{
+DigitalPort(port : GPIO_TypeDef*, pin : uint16_t)
+~DigitalPort()
-Port : GPIO_TypeDef*
''-Pin : uint16_t
''#PullResister : uint32_t
''#Mode : uint32_t
+{static}const NUM_OF_PORTS = 4 : uint16_t
+{static}const NUM_OF_PINS = 16 : uint16_t
-{static}PinUsedStatus[NUM_OF_PORTS][NUM_OF_PINS] : bool
+read() : bool
+operator bool()
#{static}checkPinUsable(port : GPIO_TypeDef, pin : uint16_t) : bool
#getPort() : GPIO_TypeDef*
#getPin() : uint16_t
-{static}updatePinOccupation(port : GPIO_TypeDef*, pin : uint16_t, add : bool) : void
-{static}getPortIndex(port : GPIO_TypeDef*) : int
-{static}peripheralClockEnable(port : GPIO_TypeDef*) : void
-{static}peripheralClockDisable(port : GPIO_TypeDef*) : void
#GPIO_InitStruct : GPIO_InitTypeDef
}
class "DigitalOut" as ClassDigitalOut{
+DigitalOut(port : GPIO_TypeDef*, pin : uint16_t)
+write(data : bool) : void
+operator =(data : bool) : DigitalOut&
+setMode(outMode : OutMode_t) : void
}
enum "OutMode_t" as EnumOutMode_t{
MODE_PUSH_PULL = GPIO_MODE_OUTPUT_PP
MODE_OPEN_DRAIN = GPIO_MODE_OUTPUT_OD
}
ClassDigitalOut -- EnumOutMode_t
class "DigitalIn" as ClassDigitalIn{
+DigitalIn(port : GPIO_TypeDef*, pin : uint16_t)
+setPullResister(pullMode : PullRes_t) : void
+IRQAttach(irqMode : IRQMode_t, funcPtr : void*) : void
+IRQDetach() : void
-{static}funcPtr[NUM_OF_PINS] : void*
-HAL_GPIO_EXTI_Callback(GPIO_Pin : uint16_t) : void
-{static}EXTI_UsedStatus[NUM_OF_PINS] : bool
-{static}checkEXTI_Usable() : bool
}
enum "PullRes_t" as EnumPullReg_t{
PULLRES_PULLUP = GPIO_PULLUP
PULLRES_NONE = GPIO_NOPULL
PULLRES_PULLDOWN = GPIO_PULLDOWN
}
ClassDigitalIn -- EnumPullReg_t
AbstractDigitalPort <|-- ClassDigitalOut
AbstractDigitalPort <|-- ClassDigitalIn
@enduml
| false | true | false | false | class |
ab9890da4f51b8fb7e1268c0f7a2ded4ba487515 | fa9855ed2f2ad20f1876549b9aa036265346adff | /use-cases/use-case-5.3.puml | e6549a8cbef1df4a654c1f170fdcf2c33bbea082 | [
"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 | 274 | puml | @startuml
rectangle Database
rectangle "Organisation" {
usecase UC1 as "Get capital cities in region
by largest population to smallest"
usecase UCa as "Print: Name, Country, Population"
}
User - UC1
UC1 ..> UCa : include
UC1 - Database
@enduml | false | true | false | false | usecase |
4ef7dcb7c7c9819be47d744a8c218276bf387be2 | 6d04ad5d18e564c09c4dffdd8177f8e811c130cd | /media/tree_flat.puml | a9c141273455bce9b056b865113845c5c308c681 | [] | no_license | Sipondo/PMPH_parallel_woody | 92ccb1b4f2473b62d5fd0fa0912b9199cb958f01 | 916c2f52add772891d67b773bf716906aefa413c | refs/heads/master | 2022-12-03T15:14:07.273996 | 2018-12-04T20:06:35 | 2018-12-04T20:06:35 | 151,559,829 | 2 | 0 | null | 2022-11-22T01:22:15 | 2018-10-04T11:16:25 | Python | UTF-8 | PlantUML | false | false | 198 | puml | @startuml
partition "Map 1" {
(*) --> if "" then
--> "Node 1"
else
--> "Node 2"
endif
}
partition "Map 2" {
"Node 2" --> if "" then
--> "Node 3"
else
--> "Node 4"
endif
}
@enduml
| false | true | false | false | activity |
58557e67a83436743de742fbec3e704dfda3a57e | d046d1d89b21d4e30f6ca382c15de6da3941395e | /uml/usecase-view/usecase-move-work-target.puml | 5e82dc7f34be7ad794d366dc774ee29bfb3d3549 | [] | no_license | hombrenieve/klondike_rup | fff8cbc09e8b2a647b6f4c71111960b2a8fe3714 | cb8e1bbcb24d0750dd93f6048ed840d7552dc145 | refs/heads/master | 2020-06-04T02:15:00.755154 | 2019-06-17T09:59:09 | 2019-06-17T09:59:09 | 191,829,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 881 | puml | @startuml
top to bottom direction
hide empty description
state "Partida abierta" as precondicion
state " " as s1
state " " as s2
state " " as s3
state " " as s4
state " " as s5
[*] --> precondicion
precondicion --> s1: El usuario solicita mover una carta de trabajo a objetivo
s1 --> s2: El sistema permite introducir una carta de trabajo
s2 --> s3: El usuario introduce la carta del trabajo
s3 --> CartaInvalida: [carta != cima de trabajo]\nEl sistema muestra un mensaje de error
s3 --> s4: El sistema permite introducir un objetivo destino
s4 --> s5: El usuario introduce un objetivo destino
s5 --> ObjetivoInvalido: [palo carta != palo objetivo || carta != cima objetivo+1]\nEl sistema muestra un eror
s5 --> CartaMovida: El sistema muestra la carta en objetivo destino
CartaMovida --> PartidaGanada: [partida ganada?]\nEl sistema muestra un mensaje de partida ganada
@enduml | false | true | false | false | sequence |
b53f03188df73cbac2d37a0c96155fad4c30f43e | 5b9092e6cb6760e2471483e438520451f408511e | /doc/1_sprint/diagrams/puml/class/tiles.puml | 6a75cd5713432b7a23d68df49d7cc39977c5011b | [] | no_license | Reynault/ACL_2019_Zelpop | ac8be33233a78ecb010ffc7c3135031dfece3dd6 | 0edbfabd698ac2ef2e16e5cf70f41d8f9a310219 | refs/heads/master | 2020-08-15T14:32:19.385568 | 2019-12-10T16:59:19 | 2019-12-10T16:59:19 | 215,357,337 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 847 | puml | @startuml
package tile{
class Tile{
+ draw()
+ action()
+ canBeCrossed(): boolean
}
class Wall{
+ draw()
+ action()
+ canBeCrossed(): boolean
}
class Treasure{
+ draw()
+ action()
+ canBeCrossed(): boolean
}
class Trap{
+ draw()
+ action()
+ canBeCrossed(): boolean
}
abstract Effect{
+ {abstract} draw()
+ {abstract} action()
+ {abstract} canBeCrossed(): boolean
}
class TileFactory << (S,#FF7700) Singleton >>{
+ getWall(): Tile
+ getTrap(): Tile
+ getTreasure(): Tile
+ getEmptyTile(): Tile
}
}
Wall --|> Effect
Effect --|> Tile
Effect --> "1" Tile : -decore
Trap --|> Effect
Treasure --|> Effect
TileFactory ..> Tile : create
@enduml | false | true | false | false | sequence |
f6c407944eb2fe5b3ecf41a89814c9be3bf0a0af | cd311955a4e833889d31ab910eccf7c2a322de41 | /documentation/diagrams/states/localbusiness_state-overview.puml | 9363081d8f6a2da76158e0684dfb8bfd4f1bb774 | [] | no_license | ogabrielguerra/puc-tcc | 11a8a89e533429f52acd4df1f05419dc2763ccc3 | e02d78e8214c387796553f3703d7b1bc4da1e8c6 | refs/heads/master | 2023-08-26T06:24:38.929937 | 2021-10-23T14:16:50 | 2021-10-23T14:16:50 | 303,121,964 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 868 | puml | @startuml
title "LocalBusiness - Diagrama de Estado (Usuário Comum)"
state "Criar Conta" as register
state "Login" as login
state "Lista Empresas" as list
state c <<choice>>
state c2 <<choice>>
state "Adicionar/Remover\n dos Favoritos" as handleFav
state "Autenticado" as loggedOn{
state "Cadastrando Empresa" as cadBusiness
state "Dashboard" as dashboard
state "Remover Empresa" as delBusiness
state "Editar Perfil" as editProfile
state "Editar Empresa" as editBusiness
}
[*] -d-> list
[*] -> login
login -> c2
c2 -> register : sem cadastro
c2 -> dashboard : Já possui conta
register -> dashboard : conta criada com sucesso
dashboard -> cadBusiness
dashboard -d-> editBusiness
editBusiness -> delBusiness
dashboard -> editProfile
list -r-> handleFav
handleFav -> c
c -> Sucesso : Logado
c -> login : Não logado
login -d-> handleFav
@enduml | false | true | true | false | sequence |
959ecccd658836021809dec3a144e451dea78755 | 833c4b92528ecd1580abf373ab58e7f77b874ea1 | /diagrams/07-table-relation.puml | 976809837fd1445279b15ee201cc4ad84347f5b7 | [] | no_license | lcalmsky/jpa | 3d67b948d5d68646cb1194871a1f1214bdc44a52 | fa36fcf46b25c638cb64a682ec1bde097e5a934d | refs/heads/master | 2022-08-21T08:53:49.261282 | 2022-07-11T13:12:37 | 2022-07-11T13:12:37 | 251,661,495 | 1 | 1 | null | 2022-07-11T13:02:41 | 2020-03-31T16:20:39 | Java | UTF-8 | PlantUML | false | false | 251 | puml | @startuml
entity product {
id
--
name
price
}
entity song {
id
--
singer
writer
}
entity movie {
id
--
director
actor
}
entity book {
id
--
author
isbn
}
product -d- song
product -d- movie
product -d- book
@enduml | false | true | false | false | sequence |
40d735ea0af4874980e8221e76e7ef0e72c62f49 | 56baa505bb7a25377becf94a99986f3c267540f2 | /docs/Structural UML diagrams/high level class diagram.puml | ee667779cdf90e7bfa5b3027ba9ebc3e5f04c18c | [
"MIT"
] | permissive | jenirainerpdx/stocks | 4f6508163981fdf7ee1a8db7f2ef331e020d3f6e | f1eebee5de6fcc27a2db197cd9cb6236c4e4c22d | refs/heads/master | 2020-04-08T05:32:15.587724 | 2018-11-25T20:50:23 | 2018-11-25T20:50:23 | 159,064,611 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 218 | puml | @startuml
class Stock {
- symbol: String
- amountTraded: Long
}
class Bid {
- stock : Stock
- quantity: Integer
- pricePerShare: BigDecimal
- requestTimeStamp : TimeStamp
}
Bid --> Stock : has a
@enduml | false | true | false | false | sequence |
aa874a15ba60a6ab7f2dc14bc755376e4a5bbbca | 58f5766244826918a3cf79312f861f76c5aa6f7d | /Documents/uml/Models/GenerateConfigSettings.puml | d927320b74b45a934049f12740a950c2f8efb0c2 | [
"MIT"
] | permissive | BillKrat/CsvEditSharp | 3835aa9d7955a33830be47b044d3c05763c68dff | a91334a8aa1b08c4f7fe38116892b088e92d4da4 | refs/heads/master | 2022-01-28T15:31:06.719793 | 2019-07-28T11:39:25 | 2019-07-28T11:39:25 | 198,216,226 | 0 | 1 | MIT | 2019-07-22T12:10:45 | 2019-07-22T12:10:44 | null | UTF-8 | PlantUML | false | false | 246 | puml | @startuml
class GenerateConfigSettings {
+ TemplateName : string <<get>> <<set>>
+ TargetFileEncoding : Encoding <<get>> <<set>>
+ TargetFileEncodingName : string <<get>> <<set>>
+ HasHeaderRecord : bool <<get>> <<set>>
}
@enduml
| false | true | false | false | class |
be7ede81c8f833b6143b534d2f62899d2c818fc9 | c4f7d455bd5f34d0875b667304c2767143ef9ac3 | /doc/plantuml/HCARDC/present.plantuml | 3da956cf45fe09d5ea87309ffcc5db235ee6d847 | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardControl | 6b7482826e2e35242bfe6a3367dd2888244178d0 | 26a0e1be00206ca74785b4c7c008f17d863d854f | refs/heads/master | 2022-01-22T11:48:22.199071 | 2020-02-20T13:12:39 | 2020-02-20T13:12:39 | 214,092,133 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,379 | plantuml | @startuml
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
abstract class AbstractEgkHealthCardPresentEvent {
# AbstractEgkHealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
abstract class AbstractHbaHealthCardPresentEvent {
# AbstractHbaHealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
abstract class AbstractHealthCardPresentEvent {
# AbstractHealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
abstract class AbstractSmcbHealthCardPresentEvent {
# AbstractSmcbHealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Egk21HealthCardPresentEvent {
+ Egk21HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Egk2HealthCardPresentEvent {
+ Egk2HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Hba21HealthCardPresentEvent {
+ Hba21HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Hba2HealthCardPresentEvent {
+ Hba2HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Smcb21HealthCardPresentEvent {
+ Smcb21HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class Smcb2HealthCardPresentEvent {
+ Smcb2HealthCardPresentEvent()
}
}
}
}
package de.gematik.ti.healthcard.control {
package de.gematik.ti.healthcard.control.events.healthcard {
package de.gematik.ti.healthcard.control.events.healthcard.present {
class UnknownCardPresentEvent {
+ UnknownCardPresentEvent()
}
}
}
}
AbstractEgkHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
AbstractHbaHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
AbstractHealthCardPresentEvent -up-|> AbstractHealthCardEvent
AbstractSmcbHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
Egk21HealthCardPresentEvent -up-|> AbstractEgkHealthCardPresentEvent
Egk2HealthCardPresentEvent -up-|> AbstractEgkHealthCardPresentEvent
Hba21HealthCardPresentEvent -up-|> AbstractHbaHealthCardPresentEvent
Hba2HealthCardPresentEvent -up-|> AbstractHbaHealthCardPresentEvent
Smcb21HealthCardPresentEvent -up-|> AbstractSmcbHealthCardPresentEvent
Smcb2HealthCardPresentEvent -up-|> AbstractSmcbHealthCardPresentEvent
UnknownCardPresentEvent -up-|> AbstractHealthCardPresentEvent
@enduml
| false | true | false | false | class |
2a95010d4905593aaeb4000ff184e686565183d4 | 3576ec713485a374cd82f4db2df455e2108fbf46 | /features/0429-prepare-req-rich-pres/rich_presentation_prereqs.puml | dab4d1768a0b7dbcd486d900935a25f1d707d424 | [
"Apache-2.0",
"LicenseRef-scancode-dco-1.1"
] | permissive | hyperledger/aries-rfcs | b5de0c6f3b6855c6b66039b3f3580e062d238cdf | 097053c6e91f16d4dad18b5367cf338721423dc7 | refs/heads/main | 2023-08-31T08:13:57.556336 | 2023-07-24T21:30:11 | 2023-07-24T21:30:11 | 185,645,683 | 340 | 259 | Apache-2.0 | 2023-09-13T01:20:18 | 2019-05-08T16:49:20 | Python | UTF-8 | PlantUML | false | false | 351 | puml | @startuml
title Rich Schema Presentation Prerequisites
participant VDR as L
actor Verifier as V
actor Holder as H
V -> V: check for local pres def
alt if no local pres def
V -> L: check for existing pres def
else if no pres def
V->V: create and store pres def
opt
V->L: anchor cred def
end
end
V->H: request presentation\nusing pres def
@enduml | false | true | false | false | sequence |
de589f67971c695f7e13bf0dc8cae9af0867f4db | 6fedb79cb2a26d55ec22595e3a001378b97b8f74 | /app/src/main/java/com/alex/kotlin/javadesignmode/flyweight/fly.puml | 2b1e2ee33a633452a96accc2526c32d35ecd6c39 | [] | no_license | AlexTiti/JavaDesignMode | e3b283b9547207a82b3d1ea7e12e617038a5aacb | c605ca319c20d8628d7fa38c42c5776943568e06 | refs/heads/master | 2020-05-04T19:34:08.751540 | 2019-09-09T08:44:44 | 2019-09-09T08:44:44 | 179,399,468 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 194 | puml | @startuml
class Client
class FlyWeight
class FlyWeightFactory{
- {field} pool
+ {method} getFlyWeight
}
Client --> FlyWeightFactory
FlyWeightFactory o--> FlyWeight
Client --> FlyWeight
@enduml | false | true | false | false | class |
cfb5c7a0bab0149d72492e2e3bfbb515f843ff01 | fc970887ee55681f1366d6d26245021b282ee57c | /docs/scheme.puml | a52b939ac5cdf4a32b4359e177ce4d011c4794e4 | [] | no_license | morticius/octo | 4e686dcca1fbdaa63369788630561875860946f8 | 46590b5510ef6ecc1c545080b3b32c26b65c7717 | refs/heads/main | 2023-07-16T17:36:36.531750 | 2021-09-01T08:52:43 | 2021-09-01T08:52:43 | 391,064,137 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,714 | puml | @startuml
legend
<u><b>Legend</b></u>
Render Aggregations: true
Render Fields: true
Render Methods: true
Pritave Aggregations: true
<b><u>Notes</u></b>
-show-options-as-note
end legend
namespace config {
class Config << (S,Aquamarine) >> {
+ Addr string
+ Secret string
+ Issure string
+ BtcRateEndpoint string
}
}
namespace file {
class UserFileRepository << (S,Aquamarine) >> {
- pathToSave string
- getPathToFileFromHash(hash string) string
- createFile(p string) (*os.File, error)
+ GetByEmail(c context.Context, email string) (*models.User, error)
+ Save(c context.Context, user models.User) error
}
}
"repositories.IUserRepository" <|-- "implements""file.UserFileRepository"
namespace models {
class User << (S,Aquamarine) >> {
+ Email string
+ Password string
}
}
namespace repositories {
interface IUserRepository {
+ GetByEmail( context.Context, string) (*models.User, error)
+ Save( context.Context, models.User) error
}
class MockUserRepository << (S,Aquamarine) >> {
+ GetByEmail(ctx context.Context, s string) (*models.User, error)
+ Save(ctx context.Context, user models.User) error
}
}
"repositories.IUserRepository" <|-- "implements""repositories.MockUserRepository"
namespace services {
class AuthCredentials << (S,Aquamarine) >> {
+ Email string
+ Password string
}
class AuthService << (S,Aquamarine) >> {
- userRepository repositories.IUserRepository
- jwtService JWTService
+ Create(c *gin.Context)
+ SignIn(c *gin.Context)
}
class BTCService << (S,Aquamarine) >> {
+ EndpointAPI string
+ GetPriceBTCInUAH() (float64, error)
}
interface JWTService {
+ GenerateToken(email string) string
+ ValidateToken(token string) (*jwt.Token, error)
}
class RatesService << (S,Aquamarine) >> {
- btcService *services.BTCService
+ GetRateBTCToUAHHandler(c *gin.Context)
}
class authCustomClaims << (S,Aquamarine) >> {
+ Email string
}
class jwtService << (S,Aquamarine) >> {
- secretKey string
- issure string
+ GenerateToken(email string) string
+ ValidateToken(encodedToken string) (*jwt.Token, error)
}
}
"jwt.StandardClaims" *-- "extends""services.authCustomClaims"
"services.JWTService" <|-- "implements""services.jwtService"
"services.AuthService""uses" o-- "repositories.IUserRepository"
"services.AuthService""uses" o-- "services.JWTService"
"services.RatesService""uses" o-- "services.BTCService"
@enduml
| false | true | false | false | class |
31032feb6b4aa71f236f54b826050b3da2808f68 | f90c39ffff44a5a39493336c9c18331db8f8760f | /docs/useCaseView/FlipsCardStock.plantuml | 740aedfac2887c5c7cda7a803b329f8945fdad31 | [] | no_license | Sertinell/klondike | e60d49defc893f459218c491a084e1872fddaa44 | 7c10f627fda6caf8b1ddc9e2cd6a59b218f34c53 | refs/heads/master | 2023-04-11T08:18:00.482272 | 2021-04-22T12:46:28 | 2021-04-22T12:46:28 | 338,658,308 | 0 | 9 | null | 2021-04-22T12:46:29 | 2021-02-13T19:59:43 | null | UTF-8 | PlantUML | false | false | 530 | plantuml | @startuml Player Flips Card from Stock
state isEmpty <<choice>>
state isWasteEmpty <<choice>>
hide empty description
state "OpenGame" as 0
state " " as 1
state " " as 2
state " " as 3
state " " as 4
state " " as 5
0 -down-> 1: Player selects Stock
1 -down-> isEmpty: Is stock Smpty?
isEmpty -down-> 2
isEmpty --> 4: yes
2 --> 3: System move 3 cards from Stock to waste
4 --> isWasteEmpty: Is waste empty?
isWasteEmpty -down-> OpenGame : yes
isWasteEmpty -down-> 5
5-->2 : Turn down waste
3-down-> OpenGame : Show Game
@enduml
| false | true | false | false | sequence |
fb9aeaef848f3f396e327f5cad9d945b5dfaafba | e4fc7942b38055b147f242599c7c25b74dd21656 | /DunedinRentersHub/diagrams/class_diagram.puml | 115ceea736d578e8f42135d52298cbebc057cd62 | [] | no_license | gzotta/dunedinRentersHub | b507df37551898437527c5d4402ad85c5b993205 | 251e227ba496b2869cb5420fc459556a9373c2d1 | refs/heads/master | 2023-07-17T18:24:16.963045 | 2021-09-02T00:12:49 | 2021-09-02T00:12:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,307 | puml | @startuml
' ======= Style / Layout Tweaks =======
hide empty members
skinparam {
Style StrictUML
' use characters instead of icons for showing visibility
ClassAttributeIconSize 0
' make the stereotypes less ugly
ClassStereotypeFont {
Size 10
Style plain
}
' vertical spacing (make room for labels)
RankSep 100
' horizontal spacing (make room for labels)
NodeSep 100
}
' ======= Classes =======
class "Renter" as renter <<domain>>{
-renterId: Integer <<unique>>
-renterPassword: String
-userName: String
-dateOfBirth: Date
-renterPhone: String
-renterEmail: String
-references: String
-wishList: ArrayList<<Property>>
--
}
class "Lanlord" as landlord <<domain>>{
-landlordId: Integer <<unique>>
-lanlordPassword: String
-userName: String
-landlordPhone: String
-landlordEmail: String
'-properties: <Property>Properties
--
}
class "Property" as property <<domain>>{
-propertyId: Integer<<unique>>
-landlordId: Integer
-renterId: Integer
-address: String<<unique>>
-status: String
--
}
class "Booking" as booking <<domain>>{
-bookingId: Integer<<unique>>
-date: Date
--
}
' ======= Relationships =======
title <b>Dunedin Renters Hub Class Diagram</b>
booking --> "\t-renter\n1" renter
booking --> "-lanlord\n1" landlord
booking --> "-property\n1" property
@enduml
| false | true | false | false | class |
6fcb14329493f306deb5fc2ca02726242cc18915 | d4622773afa930d1021cb38d2d467ec51ec2f20d | /uml/sequence/seqBox.puml | bd3119d2e6f127ea7a4c148125230f32fdf20a1a | [] | no_license | zmOnly1/Test2 | 8da13d6d401ae469a27faf976bda37c046a4c1e5 | 0cc6a0af93e59b14c5a71d75c8e3302f210b97aa | refs/heads/master | 2022-12-12T14:26:55.560954 | 2020-08-30T15:42:31 | 2020-08-30T15:42:31 | 291,500,018 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 169 | puml | @startuml
box "Internal Service" #LightBlue
participant Bob
participant Alice
end box
participant Other
Bob -> Alice : hello
Alice -> Other : hello
@enduml | false | true | false | false | sequence |
94626573b9ed4f7194d3a899272cf5e4952128f1 | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /4.Behavioral Design Patterns/8.State/src/main/java/com/javatpoint/diagram/StateClassDiagram.puml | 553e42c402aaa52e7ac0c50616cfa8b6087af511 | [] | no_license | drronidz/design-patterns-java-maven | 8df24c5bdd021dd45018faf3937b767609e880eb | aa580cd4cc6caa25a418a71bd5af06f86bd354a6 | refs/heads/main | 2023-07-15T15:26:04.451482 | 2021-08-25T23:45:35 | 2021-08-25T23:45:35 | 392,855,046 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,184 | puml | @startuml
'https://plantuml.com/class-diagram
' We can call it also State
interface Connection {
+ open () : void
+ close () : void
+ log () : void
+ update () : void
}
hide Connection members
show Connection methods
class Accounting implements Connection{
+ open () : void
+ close () : void
+ log () : void
+ update () : void
}
hide Accounting members
show Accounting methods
class Sales implements Connection{
+ open () : void
+ close () : void
+ log () : void
+ update () : void
}
hide Sales members
show Sales methods
class Management implements Connection{
+ open () : void
+ close () : void
+ log () : void
+ update () : void
}
hide Management members
show Management methods
' We can call it also Context
class Controller {
+ accounting : Accounting
+ management : Management
+ sales : Sales
- connection : Connection
+ Controller ()
+ setAccountingConnection () : void
+ setManagementConnection () : void
+ setSalesConnection () : void
+ open () : void
+ close () : void
+ log () : void
+ update () : void
}
Controller -left-> Connection : uses
@enduml | false | true | false | false | sequence |
07ef717feeb6030334461b37ca2a0612274cb527 | 3d9111aa1d6755f6561a8d4fff0d883cf11c63ce | /pkg/arrai/out/data_diagram.puml | 7b936d3722c3063aea00ae45b4f8dbd98390e912 | [
"Apache-2.0"
] | permissive | davidbroughsmyth/sysl | db5b2be2291a9e90d26cae9e3831b569260403e1 | 2d06200d45a2da9045b7f9fdb05b91276637d688 | refs/heads/master | 2023-04-04T18:48:03.009552 | 2021-04-07T08:27:20 | 2021-04-07T08:27:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 911 | puml | @startuml
skinparam component {
BackgroundColor FloralWhite
BorderColor Black
ArrowColor Crimson
}
skinparam stereotypeCBackgroundColor Orchid
hide methods
entity Source.Bar {
* x : **Foo.x** <<FK>>
}
entity Source.Bar {
b : int
}
entity Source.Bar {
* a : string
--
}
entity D.FetchResponse {
* dx : int
}
entity D.FetchResponse {
* dy : int
}
entity C.FetchResponse {
* cx : int
}
entity B.FetchResponse {
* by : int
}
entity B.FetchResponse {
* bx : int
}
entity A.FetchResponse {
* ay : int
}
entity A.FetchResponse {
* ax : int
}
entity C.FetchResponse {
* cy : int
}
entity Source.Foo {
* y : int
}
entity Source.Foo {
* x : int
}
entity Client.Screen {
* ww : digit
}
entity Client.Screen {
* zz : digits
}
entity Client.Screen {
* yy : int
}
entity Client.Screen {
* xx : int
}
Source.Bar }o--|| Source.Foo
@enduml
| false | true | false | false | sequence |
cc275f36d3694c86c97fcd4372284f00468b72e4 | f1f0a7d86cb6307f542cc8473e9f7d1d16d0ae6d | /UML/communications.puml | 50c5edbc4c43c4b4978cade1a136840b9bb8540a | [] | no_license | pieter-hendriks/recycling-plant | 27d688e0d11d03fe1aa2037bb184f895e171a53e | c0d2354c606fa9419ce1f1286dd27fb0fa289af1 | refs/heads/master | 2023-02-16T00:33:10.391345 | 2021-01-13T09:34:04 | 2021-01-13T09:34:04 | 324,202,481 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,526 | puml | @startuml
!pragma teoz true
actor Motor1A as 1A
actor Motor1B as 1B
actor Motor1C as 1C
actor Motor2B as 2B
actor Motor2C as 2C
actor Motor2D as 2D
actor Sensor11 as 11
actor Sensor12 as 12
actor Sensor13 as 13
actor Sensor14 as 14
actor output as out
activate 1A
activate 2B
activate 2C
activate 2D
1A -> 1A : R_DRP
& 2B -> 2B : R_EJT
& 2C -> 2C : R_SRT
& 2D -> 2D : R_PRS
deactivate 1A
deactivate 2B
deactivate 2C
2D -> 11 ++
& 2D -> out : 'ready'
deactivate 2D
11 -> 12 ++
& 11 -> out : 'next brick'
deactivate 11
alt valid_color
12->1A ++ : 'brick ready'
deactivate 12
1A -> out : 'brick dropped'
& 1A -> 1B
& 1A -> 1C
1A -> 13 ++ : 'proximity check'
deactivate 1A
alt insufficient distance
13 -> out : 'proximity alert'
& 13 -> 1B
& 13 -> 1C
& 13 -> 13
group Wait until area clear
13 -> out : 'area clear'
& 13 -> 1B
& 13 -> 1C
end
end
13 -> 1B ++ : 'maybe stuck'
deactivate 13
1B -> 14 ++ : 'no stuck brick'
deactivate 1B
alt brick is build color
14 -> 1B ++ : 'build'
1B -> 2D ++ : 'press=[1 or 2]'
deactivate 1B
alt press=1
2D -> out : 'ready'
& 2D -> 11
else press=2
2D -> out : 'eject'
& 2D -> 2B ++
deactivate 2D
2B -> 11 : 'ready'
& 2B -> out
deactivate 2B
end
else
14 -> 14 : 'sort'
14 -> 1B ++ : 'sort=[1, 2 or 3]'
deactivate 14
1B -> 2C ++ : 'sorted'
deactivate 1B
2C -> 11 : 'ready'
& 2C -> out
deactivate 2C
end
else
activate 12
12->out : 'incorrect brick'
12-> 11 : 'ready'
deactivate 12
end
@enduml | false | true | false | false | sequence |
ac636f2375bc699dda65be417f1f06abefed00bf | afd26a066ad07ed0d651fb2c218636c3b1f09fda | /core/out/production/core/com/lobby/login/login.plantuml | 0be5010a649882f05f20f501958b2d4c99c2dff1 | [] | no_license | thuyhoang-bkuer/socket-assignment | 125c4c7894b4d17558c17687a63617e967188c4b | c67e2477166b43652d5e84b1cf181b31da34ce60 | refs/heads/master | 2020-08-30T18:01:51.960923 | 2019-11-13T10:08:19 | 2019-11-13T10:08:19 | 218,452,024 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,342 | plantuml | @startuml
title __LOGIN's Class Diagram__\n
namespace com.lobby.login {
class com.lobby.login.LoginController {
{static} + controller : CommunityController
+ hostnameTextfield : TextField
- borderPane : BorderPane
- connectBtn : Button
- imageSource : String
- imageView : ImageView
{static} - instance : LoginController
- portTextfield : TextField
- scene : Scene
- usernameTextfield : TextField
- xOffset : double
- yOffset : double
+ LoginController()
+ closeSystem()
+ generateAnimation()
{static} + getInstance()
+ initialize()
+ loginButtonAction()
+ minimizeWindow()
+ showErrorDialog()
+ showScene()
}
}
namespace com.lobby.login {
class com.lobby.login.MainLauncher {
{static} - primaryStageObj : Stage
{static} + getPrimaryStage()
{static} + main()
+ start()
}
}
com.lobby.login.LoginController .up.|> javafx.fxml.Initializable
com.lobby.login.MainLauncher -up-|> javafx.application.Application
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 |
2c3d53330806dde06f67a3b6bc4d6b9b8646e757 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - design/rollcall/updateScore.plantuml | 52b7049047e592cd19cc96cdca5ab5f86628c628 | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,426 | plantuml | @startuml updateScore
class UpdateScoreForm {
- classroom_member_id: bigint
- token: string
- test_title: string
+ update_score(token, classroom_member_id, test_title, score)
}
class IStudentForm <<interface>> {
+ update_score(token, classroom_member_id, test_title, score)
}
class StudentController {
+ update_score(token, classroom_member_id, test_title, score)
}
class ClassroomMember {
- id: bigint
- user_id: bigint
- classroom_id: bigint
- created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IClassroomMemberDB <<interface>> {
+ create(classroom_id, user_id): void
+ read(classroom_id)
+ read(user_id)
+ read(classroom_member_id)
+ read(classroom_id, user_id)
+ update_rollcall(classroom_member_id, created_at, is_presented)
+ update_bonus_point(classroom_member_id, created_at, point)
+ update_score(classroom_member_id, created_at, test_title, score)
+ delete(classroom_id, user_id)
+ get_user(classroom_member)
+ get_classroom(classroom_member)
}
class ScoreDB {
- id: bigint
- classroom_member_id: bigint
- date: date
- test_title: string
- score: double
- created_at: datetime
- updated_at: datetime
+ get_id(): bigint
+ get_classroom_member_id(): bigint
+ set_classroom_member_id(bigint)
+ get_date(): date
+ set_date(date)
+ get_test_title(): string
+ set_test_title(string)
+ get_score(): double
+ set_score(double)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IScoreDB <<interface>> {
+ create(classroom_member_id, date, test_title, score)
+ read(classroom_member_id)
+ read(classroom_member_id, score_id)
+ delete(classroom_member_id, score_id)
}
hide UpdateScoreForm circle
hide IStudentForm <<interface>> circle
hide StudentController circle
hide IClassroomMemberDB <<interface>> circle
hide ClassroomMember circle
hide IScoreDB <<interface>> circle
hide ScoreDB circle
IStudentForm .down.> UpdateScoreForm
IClassroomMemberDB .down.> ClassroomMember
IScoreDB .down.> ScoreDB
IStudentForm "1"-left-"1" StudentController
StudentController "1"-left-"1" IClassroomMemberDB
StudentController "1"-down-"1" IScoreDB
@enduml
| false | true | false | false | class |
49370accec9b38ceeb5ff8c22a6f92140d909496 | 51896b5e4952f4c444497c218af46ac440f2aec7 | /src/main/java/com/tca/designpattern/creation/factory/factorymethod02/factory_method.puml | 9efc11b1f56829e26fc53729d53980c49356133c | [] | no_license | 870235784/design-pattern | 312c887d06a58774a924ddaebe40a117d1bb033e | 4a393db6c595f6335cb4191feaf670a1e62d0e22 | refs/heads/master | 2021-06-23T18:48:56.767413 | 2021-01-13T16:39:39 | 2021-01-13T16:39:39 | 185,201,597 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 735 | puml | @startuml
interface IPizza {
String type()
}
abstract class AbstractPizza
interface IOrderPizza {
AbstractPizza createPizza(PizzaTypeEnum pizzaType)
}
class PizzaHutCheesePizza
class PizzaHutClamPizza
class LacesarCheesePizza
class LacesarClamPizza
class PizzaHutOrderPizza
class LacesarOrderPizza
IPizza <|.. AbstractPizza
AbstractPizza <|-- PizzaHutCheesePizza
AbstractPizza <|-- PizzaHutClamPizza
AbstractPizza <|-- LacesarCheesePizza
AbstractPizza <|-- LacesarClamPizza
PizzaHutOrderPizza ..> PizzaHutCheesePizza
PizzaHutOrderPizza ..> PizzaHutClamPizza
LacesarOrderPizza ..> LacesarCheesePizza
LacesarOrderPizza ..> LacesarClamPizza
IOrderPizza <|.. PizzaHutOrderPizza
IOrderPizza <|.. LacesarOrderPizza
@enduml
| false | true | false | false | class |
b74dcecd11e8d5cd261d1ff42f59c1e184f6d2dd | 1780d045451129d92e39d01641e56085fd771538 | /uml/Task.puml | 6a268e777a49deed98a949c731af308b69b8a212 | [] | no_license | Jsnoap/snoap-cop3330-assignment4 | 041ca3f45038f1305d5a456ee8ae1b77f5941e61 | 93401c3f8c47116bd14b24a5ace085612bdf6247 | refs/heads/master | 2023-08-24T05:02:14.752393 | 2021-11-01T17:23:51 | 2021-11-01T17:23:51 | 423,554,563 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 210 | puml | @startuml
'https://plantuml.com/class-diagram
class Task {
-LocalDate date;
-String description;
+toString()
+getDate()
+setDate(LocalDate date)
+getDescription()
+setDescription(String description)
}
@enduml | false | true | false | false | class |
72c938e5711b318cd16423a085869b04246701cd | aa40a51eb539170cf1646fda1da4b50b1ea5379b | /src/main/resources/schemas/registration/registration_sequence.puml | d98bded4315e36467e6ab806cf2f3de4b813f938 | [] | no_license | AlexOmarov/templates | c5d574e0e5b1b5b705589500ccf4b0c3a4b1782e | b3b7e56e19f3792ab7da7cb588002808f20255ed | refs/heads/master | 2023-08-06T14:28:47.525940 | 2021-10-08T09:29:23 | 2021-10-08T09:29:23 | 347,609,722 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,212 | puml | @startuml
autonumber
title Registration flow for DWD clients
header Actual at 05.02.2020
actor client
participant "Android/Web" as front
box "Fxbank" #A9D1EF
participant backend as app
participant DB as db
end box
=== Request for registration ==
client -> front++: get welcome page
front --> client: welcome page
client -> front: get registratio page
front --> client: registration page
client -> front: Pass required fields and press "register"
front -> app++: POST:\n[[ /checkRegistrationPreconditions]]
group #EDEFA9 opt
app --> front: "AlreadyInUse" code
front --> client++: Email is already in use
client -> front: Pass new email
deactivate client
end group
front -> app: POST:\n[[/register]]
=== Registration business logic ==
app -> app: set roles to user
app -> db++: save user
app -> db: save player
return player entity info
=== Redirection to start page ==
group #C5EFA9 alt [Registration is correct]
app -> front: OK response with a player/user info\n AND somehow redirect to welcome page
front -> client++ : Shows account page
else #EFA9A9 Errors occurred
app -> front : Response with error code
deactivate app
front -> client : Shows errors
deactivate front
deactivate client
end
@enduml | false | true | false | false | sequence |
9732a56401744a1109d7a22c86a88b8a178408d5 | 843483e56c0b830b6a0af85b4cfbe5ad81a663b1 | /app/src/androidTest/java/com/vargo/geoff/gvnestable/gvnestable.plantuml | d7a03b8359fc47fa7da2294306f88b36d76efd0e | [] | no_license | geoffvargo/GVnestable | 5a40f2347edbb1851083a305e2c3ae8eae30886a | a1a5c4ca0f17a7e96a61266907dbfb471f4408a3 | refs/heads/master | 2021-03-27T13:09:39.523290 | 2018-09-13T15:23:28 | 2018-09-13T15:23:28 | 114,741,058 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 365 | plantuml | @startuml
title __GVNESTABLE's Class Diagram__\n
package com.vargo.geoff.gvnestable {
class ExampleInstrumentedTest {
+ useAppContext()
}
}
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 |
7c0d36cdf2bbb7858d61fec65cb365fc446bf38a | c9c618e7ea0dc7e1e8957ddba74791e0b34419af | /src/main/java/structuration/bridge/eni/adapter.puml | f19f3a5c20d636e1d236059ef347af9e757d2164 | [] | no_license | soffiane/java-design-patterns | c978e24723721895e559683ad3334a44ce540a05 | bff3ce4caf56590daa35e8b1a08bdcdf6e118e73 | refs/heads/master | 2020-12-03T06:12:13.046057 | 2020-02-13T21:48:22 | 2020-02-13T21:48:22 | 231,225,139 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 924 | puml | @startuml
abstract class FormulaireImmatriculation{
+affiche()
+genereDocument()
+gereSaisie()
#controleSaisie()
}
class FormImmatriculationFrance{
#controleSaisie()
}
class FormImmatriculationLux{
#controleSaisie()
}
interface FormulaireImpl{
+dessineTexte()
+gereZoneSaisie()
}
class FormHtmlImpl{
+dessineTexte()
+gereZoneSaisie()
}
class FormAppletimpl{
+dessineTexte()
+gereZoneSaisie()
}
FormulaireImmatriculation <|-- FormImmatriculationFrance
FormulaireImmatriculation <|-- FormImmatriculationLux
FormulaireImpl "1 #implementation" <|- FormulaireImmatriculation
FormulaireImpl <|- FormHtmlImpl
FormulaireImpl <|-- FormAppletimpl
note "Le pattern Bridge permet de separer\nla representation de l'implementation\npour eviter liaison forte entre representation\ndes objets et leur implem" as N0
note bottom of N0 : "lien entre la classe abstraite et l'implementation\nvia une instance de l'implementation "
@enduml | false | true | false | false | class |
aab46a3e13358f355d8c3973671aa0285da194ed | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/carrierEthernet/uml/carrierEthernetExternalInterface.puml | 91e9f35cb7374a60bcc0173ea79e0bec3efd3a89 | [
"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 | 1,223 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class CarrierEthernetExternalInterface {
administrativeState: AdminState[1]
operationalState: OperationalState[1]
externalInterfaceFrameFormat: EthernetFrameFormat[1]
linkOam: EnabledDisabled[1]
l2cpPeering: L2cpPeering[*]
lagLinkMeg: EnabledDisabled[1]
aggregationLinkMap: ConversationIdToAggegationLinkMap[*]
maxmimumFrameSize: PositiveInteger[1]
linkAggregation: LinkAggregation[1]
meg: EnabledDisabled[1]
}
abstract class CarrierEthernetUni {
maximumNumberOfEndPoints: PositiveInteger[1]
maximumNumberOfCtagVlanIdsPerEndPoint: PositiveInteger[1]
tokenShare: EnabledDisabled[1]
envelopes: Envelope[*]
l2cpAddressSet: L2cpAddressSet[1]
}
class CarrierEthernetSubscriberUni {
"...attributes are not shown"
}
class CarrierEthernetOperatorUni {
"...attributes are not shown"
}
class CarrierEthernetEnni {
"...attributes are not shown"
}
CarrierEthernetExternalInterface <|-- CarrierEthernetUni
CarrierEthernetExternalInterface <|-- CarrierEthernetEnni
CarrierEthernetUni <|-- CarrierEthernetSubscriberUni
CarrierEthernetUni <|-- CarrierEthernetOperatorUni
@enduml | false | true | false | false | class |
07bfa235998b9dc07f91f5c2ebecdf6f598cb9c0 | 36e8e37a895ba9b2666e81c1da40f7fd0580d37b | /out/production/DesignPatterns/javaLang/Decorator/装饰模式类图.puml | 6f16cdd18ccc1377d0aca69737773cc5c9423f37 | [] | no_license | xhSun9527/DesignPatterns | 0b08185780882a8e1b7e065c39a44e7c19838e17 | 1ed5099b9156853601e6b3a9cdf0c1d6090a6812 | refs/heads/master | 2023-02-01T06:22:45.580510 | 2020-12-17T08:55:19 | 2020-12-17T08:55:19 | 287,001,208 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 685 | puml | @startuml
abstract class Component{
+ operate() : void
}
abstract class Decorator{
- component : Component
+ Decorator(Component)
+ operate() : void
}
class ConcreteComponent{
+ operate() : void
}
class ConcreteDecoratorA{
+ ConcreteDecoratorA(Component)
+ operate() : void
+ operateA() : void
+ operateB() : void
}
class ConcreteDecoratorB{
+ ConcreteDecoratorB(Component)
+ operate() : void
+ operateA() : void
+ operateB() : void
}
Component <|-left- ConcreteComponent
Component <|-right- Decorator
Component <.. Decorator
Decorator o-- Component
Decorator <|-- ConcreteDecoratorA
Decorator <|-right- ConcreteDecoratorB
@enduml | false | true | false | false | class |
1092ec3fd2aa7acb2e4594f303096634097ded2f | 8664bf2165c807e312c4ddc0cbab2815c56119e1 | /documentss/premium_packs/list_pack.puml | b20db7ff3fd0180d076b6933bbbac84308b3353e | [
"MIT"
] | permissive | tuanlvse294/CHome | 3f36afcfd9c0b8a327b0bc81622da5fff095b492 | 115e898e8f734f90de915d73e8a98d3044afad58 | refs/heads/master | 2020-04-13T09:21:03.904078 | 2019-05-09T18:00:56 | 2019-05-09T18:00:56 | 163,108,106 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 789 | puml | @startuml
actor Admin
boundary list_packs_view
control PremiumPackController
entity PremiumPackModel
Admin -> list_packs_view : view packs list
activate Admin
activate list_packs_view
list_packs_view -> PremiumPackController: request packs list
deactivate list_packs_view
activate PremiumPackController
PremiumPackController -> PremiumPackController : validate
PremiumPackController -> PremiumPackModel : get packs list
activate PremiumPackModel
PremiumPackModel->PremiumPackModel:get all packs
PremiumPackModel --> PremiumPackController : packs list
deactivate PremiumPackModel
PremiumPackController --> list_packs_view: packs list
deactivate PremiumPackController
activate list_packs_view
list_packs_view --> Admin: dislay packs list
deactivate list_packs_view
deactivate Admin
@enduml | false | true | false | false | sequence |
8569176cc0f41eeba1e7891bd9adcf57162bd578 | 5037fa8d593da60bfc0ffabc20430d62ed78a1c1 | /docs/datamodel/contextual-work-comm.puml | 2da17119742163274c22ffc564b021dc2eb377c4 | [
"Apache-2.0"
] | permissive | reTHINK-project/dev-smart-contextual-assistance-app | f7adea96beacaec7fc91302de6289e6ad318743b | adcdb86cc400da79dccabb2412fcdc8dd2325ad4 | refs/heads/develop | 2020-05-30T07:20:16.816636 | 2018-01-17T22:09:37 | 2018-01-17T22:09:37 | 56,498,153 | 0 | 0 | Apache-2.0 | 2018-01-08T11:02:43 | 2016-04-18T10:17:55 | CSS | UTF-8 | PlantUML | false | false | 1,094 | puml | @startuml "contextual-work-comm.png"
Package WorkContext {
class ContextualCommWork {
contexts : ContextualCommWorkTask[]
communication : Communication.Communication
context : WorkContext.WorkContext
}
note top : Comm participants are all users of all Tasks
class ContextualCommWorkTask {
name : string
description ?: string
contexts : ContextualCommWorkTaskUser[]
communication : Communication.Communication
context : WorkContext.WorkTaskContext
}
note right : Comm participants are all users of the Task
class ContextualCommWorkTaskUser {
users : ContextualComm.ContextualCommUser[]
communication : Communication.Communication
context : WorkContext.WorkTaskUserContext
}
note right : Comm participant is user
ContextualCommWork -|> ContextualComm.CompositeContextualComm
ContextualCommWork *-down- "0..*" ContextualCommWorkTask
ContextualCommWorkTask -|> ContextualComm.CompositeContextualComm
ContextualCommWorkTask *-- "0..*" ContextualCommWorkTaskUser
ContextualCommWorkTaskUser -|> ContextualComm.AtomicContextualComm
}
@enduml
| false | true | false | false | class |
80bd9493b36e3f7181089b928e22e84565d24bff | 96bfc83bdc5004cc1432515d6cbee64f42e8c82f | /docs/system-structure-frontend-modules-files/1.puml | 3a9d561840e8fcd0726c1b2ded73d41ba82ccbd3 | [] | no_license | thanhnguyen2187/amber | e67f870826db48ece330b46739504fac862e9595 | a14e150f3612d167d03d270367dd0caa05377f46 | refs/heads/master | 2023-06-03T19:40:13.408132 | 2021-06-23T22:58:03 | 2021-06-23T22:58:03 | 320,848,888 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 708 | puml | @startuml
' Definitions
package Frontend as FE {
package "End-user Views" as EUV {
[Content View] as CV
[Bike View] as BV
[List Bike View] as LBV
[Contact Component] as CC1
[Contract Component] as CC2
}
package "Management Views" as MNV {
[...]
}
}
package Backend as BE {
[End-user API Endpoints] as EUAE
[Management API Endpoints] as MNAE
}
database Database as DB
' Order fixes
'FE -[hidden]down- BE
EUV -[hidden]right- MNV
EUAE -[hidden]right- MNAE
CV -[hidden]right- BV
BV -[hidden]right- LBV
CV -[hidden]down- CC1
BV -[hidden]down- CC2
CC1 -[hidden]down- BE
' Connections
MNV .down.> MNAE
EUV .down.> EUAE
EUAE .down.> DB
MNAE .down.> DB
@enduml
| false | true | false | false | sequence |
00b693b22a3b463746242f9ad5d035f5a24f07b9 | 3cd6a5ea51c646b30b97f99b35f0f89a966ac123 | /src/main/resources/ViewingProduct.puml | 8141b64f9bb04b802b9dd78101117c69d0aa1cee | [] | no_license | JWill2580/shopping-cart | 65163d46c1665200d826fc55d40a11ab7dfb6385 | 5be26310840e4de46b6481b0daecf0fcdca48a46 | refs/heads/master | 2022-11-24T15:12:59.207758 | 2020-08-04T07:11:41 | 2020-08-04T07:11:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,304 | puml | @startuml product-viewer-sequence-diagram
skinparam guillemet false
skinparam classAttributeIconSize 0
skinparam linetype ortho
skinparam style strictuml
skinparam sequenceParticipant underline
hide circle
title Product view product process
actor "Staff" as staff
participant "Administration" as admin <<main>>
staff -> admin: runs program
activate admin
create "Main Screen" as main <<JFrame>>
admin -> main: <<construct>>
deactivate admin
activate main
main --> staff: displays main menu
staff -> main: <<UI event>> clicks view product
create "View Dialog" as dialog <<JDialog>>
main -> dialog: <<construct>>
deactivate main
create "DB Manage Products" as dao <<DAO>>
activate dialog
dialog -> dao: <<construct>>
activate dao
dialog->dao : getProducts()
database "Database" as db
dao -> db: SELECT * FROM product
activate db
dao<--db: data
deactivate db
dao->dao : construct a product list from data
dialog <-- dao: Collection<products>
deactivate dao
create "Simple List Model" as slm <<Helper>>
dialog -> slm: <<construct>>
activate slm
dialog-> slm: updateItems(categories)
deactivate slm
dialog -> dialog: txt.categorysetModel(simpleListModel)
staff <-- dialog: display list of product
staff -> dialog: <<UI event>> clicks close
dialog -> dialog: dispose()
destroy dialog
@enduml
| false | true | false | false | usecase |
069b4ac35c9d8f0e3860e0185dfaa5355d73c1b1 | 1f654aac851f68e5261b4a767b1e1ebca2b110d5 | /docs/simple_design.puml | e611df64abfe5b27c7c0cb73b746f156dbb8b5cc | [
"MIT"
] | permissive | OpenIoTAcademy/Training_Kayanyazisaat | 0db75cd9117bd64715d1adaed75224e34a2b3ab2 | d3d135987254c0a90debb203b9173d3ac5731630 | refs/heads/master | 2023-01-01T12:57:58.166992 | 2020-10-22T23:07:01 | 2020-10-22T23:07:01 | 278,166,266 | 1 | 7 | MIT | 2020-10-22T23:07:03 | 2020-07-08T18:32:28 | C | UTF-8 | PlantUML | false | false | 1,468 | puml | @startuml
component max7219_driver[
Max7219 Driver
====
Animasyon modulunden
gelen datalari fiziki
katman uzerinden gonderir
----
SPI veya bit banging
....
]
component rtc_driver[
RTC Driver
====
Gercek zamanli saatten
bilgileri alir.
]
component rht_driver[
RHT Driver
====
Sicaklik sensorunden
bilgileri alir.
]
component comms_protocol[
Communication Protocol
====
Dis dunya ile haberlesmede
kullanilacak protokol katmani.
Paketleme, hata kontrolu ve
paket acma islemleri bu katmanda yapilir.
]
component uart_driver[
Uart Driver
====
Dis dunya ile haberlesmek
icin protokol katmanindan
gelen verileri fiziki katmana
cevirir. Ayni sekilde fiziki
katmandan gelen verileri
protokol katmanina gonderir.
Cakisma, frame, buffer hatalari
burada kontrol edilir.
]
component animation_mgr[
Animation Manager
====
Data yoneticisinden gelen
bilgiler ile animasyonlari
ve zamanlamalari ayarlar,
max7219_driver ile ekrana
bilgiyi gonderir
]
component data_mgr[
Data Manager
====
Sensorden ve saatten veri
okumalarini koordine edip
animasyon yoneticisine
gonderir
]
component comms_mgr[
Communication Manager
====
Ic moduller ve dis dunya
ile haberlesmeyi saglar.
Tum moduller haberlesmeleri
Haberlesme yoneticisi uzerinden
saglayacaktir
]
comms_mgr <----[norank]-> data_mgr
comms_mgr <----[norank]-> animation_mgr
data_mgr <--> rht_driver
data_mgr <--> rtc_driver
animation_mgr --> max7219_driver
comms_mgr <--> comms_protocol
comms_protocol <--> uart_driver
@enduml
| false | true | false | false | component |
c4c6013937209c5723268515886c226149d2b633 | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/logic/round.puml | a7ded82f483002309398fba22d319fead41b21b2 | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 468 | puml | @startuml
class Round < logic > {
..this..
- scope: {}
- t: t
.. scope ..
- backwards
- round
- roundOutsiders
- roundDelegates
- library.logger
- modules.accounts
- block.generatorPublicKey
- block.id
- block.height
-- Methods --
+ Round (scope, t)
+ mergeBlockGenerator ()
+ updateMissedBlocks ()
+ getVotes ()
+ updateVotes ()
+ markBlockId ()
+ flushRound ()
+ truncateBlocks ()
+ applyRound ()
+ land ()
}
@endtuml
| false | true | false | false | class |
cb77b8aeb56568d89318dbed664e5dd85177d34e | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/zigzag_conversion/zigzag_conversion.plantuml | d85cde92f81cf3eacef01b241cad78745c113ff4 | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 487 | plantuml | @startuml
title __ZIGZAG_CONVERSION's Class Diagram__\n
namespace cn.shui.order {
namespace zigzag_conversion {
class cn.shui.order.zigzag_conversion.Solution {
{static} + main()
{static} - convert()
{static} - convert2()
}
}
}
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 |
1e3dc298116c6dc23b48eedad2a32392a60411e6 | eace5cc91d30597da909131cd33f752061873905 | /docs/login.puml | 1604147be135070c0d9d12bbc93201355147b02d | [
"MIT"
] | permissive | pcandido/ms-account | 60d78945ea87e05093d8d7a86497e60a6a75c51c | 19ac509b5f7eac3e40f08e9d60bfd82cd00033a3 | refs/heads/main | 2023-07-09T22:50:57.735840 | 2021-08-17T01:20:31 | 2021-08-17T01:20:31 | 338,481,352 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 774 | puml | @startuml login
package controllers {
[LoginController] -> () Validator
[loginValidator] -.-> () Validator
[loginValidator] -> () EmailValidator
}
package utils {
[EmailValidatorAdapter]
}
package domain {
() Authentication
}
package usecase {
() LoadAccountByEmailRepository <-- [AuthenticationUseCase]
() HashComparer <-- [AuthenticationUseCase]
() TokenSetGenerator <-- [AuthenticationUseCase]
}
package gateway {
[AccountMongoRepository]
[BCryptAdapter]
[JwtAdapter]
}
EmailValidatorAdapter -.-> EmailValidator
LoginController --> Authentication
AuthenticationUseCase -.-> Authentication
AccountMongoRepository -.-> LoadAccountByEmailRepository
BCryptAdapter -.-> HashComparer
JwtAdapter -.-> TokenSetGenerator
@enduml
| false | true | false | false | uml-unknown |
fffef85c0c910243972105ab5d0d514f61f2d8d3 | 917f7524046ed086a97d0aeb39ff694bc707598c | /ProjetACL-master/ProjetACL/bin/modele/categorie/categorie.plantuml | 931eff78482fdfd72c366242a7db18910c4a4299 | [] | no_license | h-wb/s7-acl | ff5797db723abb1773e49cb3982f0ba59ac2ed5a | b04e4849944e28077fa8f461d36b431a51c9b9af | refs/heads/master | 2020-04-10T13:04:09.215000 | 2019-03-16T12:51:24 | 2019-03-16T12:51:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,034 | plantuml | @startuml
title __CATEGORIE's Class Diagram__\n
package modele {
package modele.categorie {
class Carreau {
+ Carreau()
+ toString()
}
}
}
package modele {
package modele.categorie {
class Coeur {
+ Coeur()
+ toString()
}
}
}
package modele {
package modele.categorie {
enum Couleur {
Rouge
Noir
couleur
}
}
}
package modele {
package modele.categorie {
class Pique {
+ Pique()
+ toString()
}
}
}
package modele {
package modele.categorie {
class Trefle {
+ Trefle()
+ toString()
}
}
}
Carreau -up-|> Categorie
Coeur -up-|> Categorie
Pique -up-|> Categorie
Trefle -up-|> Categorie
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 |
b48d1ce92fa00e4d148cfe412104b89852bdfd6b | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/Rendering/TextureManager-Class.iuml | dd0cd447508cd65bd91dd44bf76aaac83d04c85d | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 238 | iuml | namespace Graphics::Rendering {
class TextureManager {
+GetSimpleTexture()
+GetCubeTexture()
+UnbindAll()
+CreateSimpleTexture()
+CreateCubeTexture()
}
}
| false | true | false | false | class |
986f6c6283029bd58c4d20a13a8c2890832fd70d | bbf5d313a2f321263f8871f0bab11a4b5d34f216 | /docs/diagrams/Use_Case_Diagram.puml | 7e39876d412146f31ed93201cd008a45bb4f44f5 | [
"MIT"
] | permissive | thm-projects/frag.jetzt | e3f8965c6f950147fdaad73267cbb8967388c058 | fcaf5baf62ef2ff26573dd6c5fee5b5dc372b049 | refs/heads/master | 2023-08-16T15:52:35.793263 | 2023-08-06T06:20:33 | 2023-08-06T06:20:33 | 203,749,401 | 22 | 4 | MIT | 2021-01-07T13:37:50 | 2019-08-22T08:29:56 | TypeScript | UTF-8 | PlantUML | false | false | 5,179 | puml | @startuml Use Cases
scale 1.0
skinparam backgroundColor Linen
skinparam LegendBackgroundColor Strategy
skinparam LegendBorderThickness 0
skinparam LegendFontSize 12
skinparam Padding 5
skinparam defaultFontSize 14
skinparam ArrowThickness 2
skinparam shadowing true
skinparam rectangle {
BackgroundColor #fdf6e0
}
skinparam usecase {
BackgroundColor LightGreen
BorderColor Green
BackgroundColor<<USP>> Pink
BorderColor<<USP>> HotPink
BorderThickness 2
ArrowThickness 2
}
rectangle "frag.jetzt | Use Case Diagram" {
left to right direction
actor "Anonymous User" as AU #linen;line:black;line.bold;text:black
actor "Participant" as P #lightgreen;line:green;line.bold;text:green
actor "Moderator" as M #lightblue;line:blue;line.bold;text:blue
actor "Room Creator" as RC #pink;line:red;line.bold;text:red
actor "Registered User" as RU #pink;line:red;line.bold;text:red
actor "Admin" as A
P -|> AU
RU -|> AU
M --|> P
RC -left-|> M
rectangle "frag.jetzt" <<webService>> {
together {
usecase "Enter a room" as UC1 #white;line:black;line.bold;text:black
usecase "Book a room temporarily" as UC2 #white;line:black;line.bold;text:black
usecase "Create an account" as UC3 #white;line:black;line.bold;text:black
}
together {
usecase "Write a post" as UC4
usecase "Write a brainstorming idea" as UC5
usecase "Create keywords for a post" as UC6
usecase "Tag a post with a question category" as UC7
usecase "Rate posts of others" as UC8
usecase "Delete own post" as UC9
usecase UC10 as "Present posts
using Question Focus"
usecase UC11 as "Present keywords
using Question Radar"
usecase "Navigate to posts of interest" as UC12
usecase UC13 as "Optimize post text
using DeepL, LanguageTool, spaCy"
usecase "Rate the app" as UC14
usecase UC15 as "Create a quiz rally
using antworte.jetzt"
usecase UC16 as "Participate in a quiz rally
using antworte.jetzt"
usecase "Export all published posts" as UC17
usecase "Redeem bonus token" as UC18
}
usecase "Create app messages" as UC19 #lightgray;line:gray;line.bold;text:black
usecase "Delete spam posts" as UC32 #pink;line:red;line.bold;text:red
usecase "Delete room" as UC33 #pink;line:red;line.bold;text:red
usecase "Book a room for at least 180 days" as UC34 #pink;line:red;line.bold;text:red
usecase "Keep bonus tokens" as UC35 #pink;line:red;line.bold;text:red
together {
usecase "Block new posts" as UC26 #lightblue;line:blue;line.bold
usecase "Delete moderated posts" as UC27 #lightblue;line:blue;line.bold
usecase "Delete all posts" as UC28 #lightblue;line:blue;line.bold
usecase "Evaluate a post" as UC23 #lightblue;line:blue;line.bold
usecase "Mark a post for bonus" as UC24 #lightblue;line:blue;line.bold
usecase "Create question categories" as UC20 #lightblue;line:blue;line.bold
usecase "Check bonus token" as UC25 #lightblue;line:blue;line.bold
usecase "Ban a post" as UC21 #lightblue;line:blue;line.bold
usecase "Publish a post" as UC22 #lightblue;line:blue;line.bold
usecase "Appoint the role of moderator" as UC29 #lightblue;line:blue;line.bold
usecase "Export all published and moderated posts" as UC30 #lightblue;line:blue;line.bold
usecase "Open and manage brainstorming session" as UC31 #lightblue;line:blue;line.bold
}
}
AU --> UC1
note right of (UC1)
«postCondition»
Anonymous User becomes a Participant.
end note
AU --> UC2
note right of (UC2)
«postCondition»
Anonymous User becomes a Room Creator.
end note
AU --> UC3
note right of (UC3)
«postCondition»
Anonymous User becomes a Registered User.
end note
P --> UC14
note right of (UC14)
«preCondition»
User has visited a room and written a post.
end note
M --> UC29
note right of (UC29)
«preCondition»
User is registered or has received a moderation link.
end note
RC --> UC33
note right of (UC33)
«preCondition»
The bonus archive is empty.
end note
P --> UC4
P --> UC5
P --> UC6
P --> UC7
P --> UC8
P --> UC9
P --> UC10
P --> UC11
P --> UC13
P --> UC15
P --> UC16
P --> UC17
P --> UC18
M --> UC20
M --> UC21
M --> UC22
M --> UC23
M --> UC24
M --> UC25
M --> UC26
M --> UC27
M --> UC28
M --> UC30
M --> UC31
RU --> UC34
RU --> UC35
RC ---> UC32
UC19 <-- A
(UC12) .> (UC11) : <<extends>>
}
legend right
|<img:https://git.thm.de/arsnova/frag.jetzt/-/raw/staging/src/assets/icons/Logo_frag_jetzt_128x128.png> |= \n\n »frag.jetzt« |
| Domain glossary | [[https://git.thm.de/arsnova/frag.jetzt/-/raw/staging/docs/diagrams/Glossary.pdf]] |
| Production server | [[https://frag.jetzt]] |
| Repository | [[https://git.thm.de/arsnova/frag.jetzt/-/blob/staging/README.md]] |
| Staging server | [[https://staging.frag.jetzt]] |
| UML tool| PlantUML-Server Version 1202202|
| Author| Klaus Quibeldey-Cirkel|
| Contact| [[mailto:klaus.quibeldey-cirkel@mni.thm.de]] |
| Last revision| 04.12.2022 |
end legend
@enduml
| false | true | true | false | usecase |
3cac6234d6c6759b66f73a7d634f6fd35732f99f | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 3_ Patrones de Diseño Estructurales/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/structural/proxy/class-diagram.puml | 6d0f09321b4e8a3972a895fbe9702913c3f4a2bd | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 458 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title Proxy Pattern
interface Subject{
+ void doAction()
}
class RealSubject implements Subject{
+ void doAction()
}
class Proxy implements Subject{
+ void doAction()
}
Proxy --> RealSubject: delegate
class Client
Client --> Subject
@enduml | false | true | false | false | sequence |
5c66be963b7bdee5f26c8b90e896661bf12ce233 | dcb670e556926a88cd8d9f5f1cc9c5d9d4b5c0b7 | /src/main/java/ex46/UML46.puml | ca3604c34f155739809f6c6403a98a7da103481c | [] | no_license | xFebreze/Dussuau-cop3330-assignment3 | 0ae298ae04ee7235051b558820247a56d14d8043 | c6208380cb7092b6c93b72d65036cce76c284d45 | refs/heads/master | 2023-06-23T09:56:00.010568 | 2021-07-25T00:54:42 | 2021-07-25T00:54:42 | 378,293,295 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 216 | puml | @startuml
'https://plantuml.com/class-diagram
class ReadFile{
Read()
}
class WordCounter{
wordCounter()
}
class Histogram{
sort()
createHistogram()
}
WordCounter <|-- ReadFile
Histogram <|-- WordCounter
@enduml | false | true | false | false | class |
a98549eb5a6fc1b434f5c0b2125c6271a7255e82 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/017/diagrama.puml | 25201210eb206fe0d24c769384d07baf461ecae5 | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 2,052 | puml | '--
@startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
'==
class Coin {
- value : double
- volume : int
- label : string
__
' static const Coin C10; //c++
+ {static} C10 : Coin
+ {static} C25 : Coin
+ {static} C50 : Coin
+ {static} C100 : Coin
__
- Coin(value: double, volume: int, label: string)
__
+ getValue() : double
+ getVolume() : int
+ getLabel() : string
__
' retorna value:volume
+ toString() : string
}
class Item {
- label : string
- volume : int
__
+ Item(label : string, volume : int)
__
+ getLabel() : string
+ getVolume() : int
+ setLabel (label : string)
+ setVolume(volume : int)
__
' retorna label:volume
+ toString() : String
}
class Pig {
- broken : boolean
- coins : Array<Coin>
- items : Array<Item>
- volumeMax : int
__
' inicializa o volumeMax
+ Pig(volumeMax : int)
' se nao estiver quebrado e couber, adicione a moeda ao vetor de moedas
+ addCoin(coin : Coin) : boolean
' se não estiver quebrado e couber, adicione o item ao vetor de itens
+ addItem(item : Item) : boolean
' se o porco não estiver quebrado, quebre o porco
+ breakPig() : boolean
' se estiver quebrado, pegue e retorne as moedas
' se não estiver quebrado, retorne um vetor vazio
+ extractCoins() : double
' se estiver quebrado, pegue e retorne os itens
' se não estiver quebrado, retorne um vetor vazio
+ extractItems() : Array<String>
' retorna uma string com uma lista de itens, valor, volume / volumeMax,
' e se o porquinho está quebrado ou não
+ toString() : String
__
' se estiver quebrado
' retorne zero
' se não estiver quebrado
' percorre o vetor de moedas e o vetor de itens somando o volume de cada um
+ getVolume() : int
' percorre o vetor de moedas somando o valor de cada moeda
+ getValue() : double
' retorna o volumeMax
+ getVolumeMax() : int
' retorna se o porquinho está quebrado ou não
+ isBroken() : boolean
}
'--
@enduml
| false | true | true | false | class |
19efe6f7a0b469e2ba308a16232ddccaa071326a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/inspectors/EditorClipFactory.puml | f1636b6e11da6faa228f8330ef56bed4b505479a | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 336 | puml | @startuml
class EditorClipFactory <<static>> {
+ {static} GetEditorClip(clip:TimelineClip) : EditorClip
+ {static} RemoveEditorClip(clip:TimelineClip) : void
+ {static} Contains(clip:TimelineClip) : bool
}
class "Dictionary`2"<T1,T2> {
}
EditorClipFactory o-> "s_EditorCache<TimelineClip,EditorClip>" "Dictionary`2"
@enduml
| false | true | false | false | class |
12b54e6673b0d48922b35c7af501eac4c31244b5 | 3a2efe5eec3e69ae4847afc830971037c1459227 | /docs/infrastruttura/classi.plantuml | 7af12f424db83d04529f5fef23a689be89de3328 | [
"MIT"
] | permissive | f0lg0/gelata | 2a39a74eed3554f2a119ba5a1303b3b91f7e9222 | 73aa10284982885db1723fc57526383e53a30622 | refs/heads/main | 2023-05-15T00:23:23.340193 | 2021-06-09T19:59:52 | 2021-06-09T19:59:52 | 359,433,642 | 0 | 0 | MIT | 2021-06-04T08:23:19 | 2021-04-19T11:24:42 | Python | UTF-8 | PlantUML | false | false | 766 | plantuml | @startuml Classi
class DatabaseGenerator {
+DB_PATH: str
+CREATED: bool
+conn: sqlite3
+c: sqlite3
+execute_query()
-create_tables()
+close_connection()
}
interface DatabaseOps {
+dbops_init()
+dbops_user_signup()
+dbops_save_intervento()
+dbops_delete_intervento()
+dbops_update_intervento()
+dbops_get_interventi_by_user()
}
class LogEvent {
+author: str
+description: str
+query: str
+ts: float
}
class Watchdog {
+DB_PATH: str
+log()
}
interface Interventi {
+upload_intervento()
+update_intervento()
+delete_intervento()
}
interface LoginRequired {
+login_required()
}
class OAuthWrapper {
+oauth: OAuth
+google: OAuth
+get_auth_object()
}
@enduml | false | true | false | false | class |
2db316583077161a46a1fe1b0574f71a4d715fd1 | 029cb46869ccf461da6ded9c2788b957346f8c70 | /docs/diags/Server/esquemaModel.puml | 96e0450e9753852d1033e7b737010ed392e3f331 | [] | no_license | Jonathan-R0/Wolfenstein-FIUBA | c3e5c53d33098a158f45eb0bdb4063fb7aed1540 | 8f26d69348a7748ababf785f564f4bb3de9c224b | refs/heads/master | 2023-06-24T14:12:51.931833 | 2021-07-28T17:49:04 | 2021-07-28T17:49:04 | 343,952,390 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,735 | puml | @startuml
class Game{
+ void updatePositions(float timeElapsed, WaitingQueue<Notification*>& notis)
+ void addPlayer(int playerID, WaitingQueue<Notification*>& notis)
+ bool removePlayer(int playerID)
+ std::tuple<int, int> moveDoor(int playerID)
+ void start(int playerID);
+ void end(WaitingQueue<Notification*>& queue)
}
class Player{
+ void update(float timeElapsed, WaitingQueue<Notification*>& notis, std::list<Updatable*>& updatables)
+ bool collidesWith(double x, double y)
+ int attack(float timeElapsed)
+ int takeDamage(unsigned int damage, WaitingQueue<Notification*>& notis)
}
class Map{
+ Player* traceAttackFrom(Player* attacker, int range)
+ std::tuple<int, int> moveDoor(Player* p)
+ bool moveTo(double fromX, double fromY, double x, double y, Player* p,
WaitingQueue<Notification*>& notis)
}
class Tile{
+ void applyDamageToPlayers(int damage, int distanceToCenter, WaitingQueue<Notification*>& notif)
+ bool allowMovement(double x, double y, Player* p, WaitingQueue<Notification*>& notis)
}
class Item{
+ virtual void pickUp(Player* p)
+ virtual bool canBePickedUpBy(Player* p)
}
class Weapon{
+ unsigned int getRandomDamage()
+ virtual int getRange()
}
class Door{
+ virtual bool isLocked()
+ virtual void changeStatus()
}
class Updatable{
+ virtual void update(float timeElapsed, Game& game, WaitingQueue<Notification*>& notif)
+ virtual bool notify(WaitingQueue<Notification*>& notif)
}
Game-->Player
Game-->Map
Player-->Map
Map..>Player
Map-->Tile
Tile-->Player
Tile-->Item
Player..>Item
Item..>Player
Player-->Weapon
Tile-->Weapon
Tile-->Door
Game-->Updatable
Player..>Updatable
@enduml
| false | true | false | false | class |
e41816077b8bc7e826c0a5e706c83124d4699a58 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /docs/SprintD/US/US7/US7_SD3.puml | 42469a4bc1533393f562ab78fcca34c39e971c1e | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,861 | puml | @startuml
autonumber
'hide footbox
actor "Administrator" as AD
participant ":RegisterEmployeeUI" as REUI
participant ":RegisterEmployeeController" as REC
participant "Administrator" as ADMIN
participant "LRoles :List<OrgRole>" as LROLE
participant "Employee :Receptionist" as RECP
participant "Employee :LaboratoryCoordinator" as LC
participant "Employee :MedicalLabTechnicians" as MLT
participant "Employee :ChemistryTechnologist" as CT
participant "Employee :Administrator" as EMPAD
participant "Employee :SpecialistDoctor" as SD
participant "ReceptionistStore" as RECPSTORE
participant "LaboratoryCoordinatorStore" as LCSTORE
participant "MedicalLabTechniciansStore" as MLTSTORE
participant "ChemistryTechnologistStore" as CTSTORE
participant "AdministratorStore" as EMPADSTORE
participant "SpecialistDoctorStore" as SDSTORE
activate AD
AD -> REUI : asks to create a new Employee
activate REUI
'REUI -> REC : authenticate(email, password)
'activate REC
'activate AF
'REC -> AF : doLogin(email, password)
'REC -> AF : session = getCurrentSession()
'deactivate AF
'REC -> US : session.isLoggedInWithRole(id)
'activate US
'
'US --> REC : result
'
'deactivate US
'REC --> REUI: result
'deactivate REC
deactivate REC
REUI -> AD : asks to select the employee role
deactivate REUI
AD -> REUI : select the intended role
activate REUI
REUI -> AD : Requests data (name, address, phone number, email, soc, role, ...)
deactivate REUI
AD -> REUI : types requests data
activate REUI
REUI -> REC : addEmployee(name, address, phone number, email, soc, role, ...)
activate REC
REC -> ADMIN : emp = addEmployee(name, address, phone number, email, soc, role, ...)
activate ADMIN
alt role = Receptionist
ADMIN -> RECP** : createReceptionist(name, address, phone number, email, soc, role)
else role = LaboratoryCoordinator
ADMIN -> LC** : LaboratoryCoordinator(name, address, phone number, email, soc, role)
else role = MedicalLabTechnicians
ADMIN -> MLT** : createMedicalLabTechnicians(name, address, phone number, email, soc, role)
else role = ChemistryTechnologist
ADMIN -> CT** : createMedicalLabTechnicians(name, address, phone number, email, soc, role)
else role = Administrator
ADMIN -> EMPAD** : createAdministrator(name, address, phone number, email, soc, role)
else role = SpecialistDoctor
ADMIN -> SD** : createSpecialistDoctor(name, address, phone number, email, soc, role,doctorIndexNumber)
end
ADMIN --> REC : result
REC --> REUI : result
deactivate ADMIN
deactivate REC
REUI -> AD : Asks to confirm data
deactivate REUI
AD -> REUI : Confirms data
activate REUI
REUI -> REC : saveEmployee(emp)
activate REC
REC -> ADMIN : saveEmployee(emp)
activate ADMIN
alt role = Receptionist
ADMIN -> ADMIN : validateReceptionist(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> RECPSTORE** : addReceptionist(emp)
else role = LaboratoryCoordinator
ADMIN -> ADMIN : validateLaboratoryCoordinator(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> LCSTORE** : addLaboratoryCoordinator(emp)
else role = MedicalLabTechnicians
ADMIN -> ADMIN : validateMedicalLabTechnicians(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> MLTSTORE** : addMedicalLabTechnicians(emp)
else role = ChemistryTechnologist
ADMIN -> ADMIN : validateChemistryTechnologist(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> CTSTORE** : addChemistryTechnologist(emp)
else role = Administrator
ADMIN -> ADMIN : validateAdministrator(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> EMPADSTORE** : addAdministrator(emp)
else role = SpecialistDoctor
ADMIN -> ADMIN : validateSpecialistDoctor(emp)
activate ADMIN
deactivate ADMIN
ADMIN -> SDSTORE** : addSpecialistDoctor(emp)
end
activate ADMIN
deactivate ADMIN
ADMIN --> REC : result
REC --> REUI : result
deactivate REC
deactivate ADMIN
REUI -> AD : Informs operation success
deactivate REUI
@enduml | false | true | false | false | usecase |
ec41df55b0d7397c725ffd7f446f7564e53ebe84 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StandalonePriceSetPriceTiersAction.puml | e0bdbeac431cd4758cbb569a4f72512abd9b4b40 | [] | 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 | 522 | 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 StandalonePriceSetPriceTiersAction [[StandalonePriceSetPriceTiersAction.svg]] extends StandalonePriceUpdateAction {
action: String
tiers: [[PriceTierDraft.svg List<PriceTierDraft>]]
}
interface StandalonePriceUpdateAction [[StandalonePriceUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.