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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
af528da398c01ece68a6a3aa1257d08e15d2dcf6 | 9e8f6f981401ab74602122a283213d1086ef0d79 | /class-diagram.puml | 4430aa394f0915b5f7f355651a7f9174b275b8b1 | [
"MIT"
] | permissive | thehuseyinoglu/freelance-teacher-platform | ea479af64cb7da72eb1560e78c5808df6330a16a | 058c4600230065e79d500539d6032489be3dcaf2 | refs/heads/main | 2023-06-07T01:56:45.640963 | 2021-06-26T15:03:36 | 2021-06-26T15:03:36 | 361,645,161 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 934 | puml | @startuml FreelanceTeacherMarket
class Student <<Entity>> {
+name: String
+age: Number
+mail: String
+phone: String
+bookings: Booking[]
+book()
+follow()
+comment()
}
class Teacher <<Entity>> {
+name: String
+phone: String
+job: Job[]
+comments: Comment[]
+bookings: Booking[]
+followers: Student[]
+updateJob()
+startLesson()
+finishLesson()
}
class Booking <<Entity>> {
+student: Student
+teacher: Teacher
+date: String
+subject: String
+status: Status[]
}
class Comment <<Entity>> {
+text: String
+score: Number
}
class Job <<Entity>> {
+teacher: Teacher
+title: String
+content: String
+price: Number
}
enum Status {
INPROGRESS
DONE
CANCELED
}
Booking -down-> Status
Student *-up-> Comment
Student *-right-> Booking
Teacher *--> Booking
Teacher o--> Job
Job "0..n" *-left-> "0..n" Booking
@enduml | false | true | false | false | class |
162acef3d404a8493bdb079b188e640b94fe14b7 | 510539264b85fd5bbd074a6959fcbab20e7cfbd9 | /documentation/architecture/simulation_sequence.puml | 496ba45f4029c81cd4b88456a534da33dc771b77 | [] | no_license | vduseev/mars-lander | c86399316ee0af9f65e5067b40776003fca088dc | 23c71b0520630660d85a4b5c1ec4ad2afd703f12 | refs/heads/master | 2020-04-05T14:34:13.091508 | 2017-08-17T02:45:29 | 2017-08-17T02:45:29 | 94,686,111 | 2 | 1 | null | 2017-07-03T23:58:02 | 2017-06-18T12:34:46 | QML | UTF-8 | PlantUML | false | false | 2,027 | puml | @startuml
title
Debug and Simulation sequence.
Exceptions are not shown.
end title
actor User
control Simulation
participant Bot
participant Visualization
participant Referee
'Start debugging'
User -> Simulation : Debugs **run.py**
activate Simulation
== Startup ==
'Read config file
' * map files location
' * bot scripts location
Simulation -> Simulation : Reads **config.ini**\n- Bot File\n- Map Files
' Start Bot subprocess
Simulation -> Bot : Starts Bot\n- **subprocess**\n- **input** to Referee's\n**output**\n- **output** to Referee's\n**input**
activate Bot
' Start Visualization subprocess
Simulation -> Visualization : Starts Visualization\n- **subprocess**\n- **input** to Referee's\n**output**
activate Visualization
' Start Referee subprocess
Simulation -> Referee : Starts Referee\n- **subprocess**\n- map in **args**
activate Referee
== Initialization ==
' Referee initializes everyone with the map data
Referee -> Referee : Reads **Map**\ndata out loud
== Simulation Loop ==
loop Until Referee Stops
' Declares frame data
Referee -> Referee : Reads out loud:\n- **X**\n- **Y**\n- **hSpeed**\n- **vSpeed**\n- **fuel**\n- **rotate**\n- **power**
' Visualization saves then draws a frame
Visualization -> Visualization : Draws **frame**
' TODO: Add ability to replay simulation after end'
' TODO: Add ability to pause simulation using visualization
' in the middle of the run
' First repsonse of the bot
Bot -> Bot : Prints\n**first action**
Simulation -> Simulation : Saves frame\nto **log**
' First repsonse of the referee
Referee -> Referee : Reads Bot's\nresponse
end
Referee -> Simulation : Stops simulation\n- **success**\n- **crash**\n- **timeout**\n- **exception**
deactivate Referee
Simulation -> Bot : Stops Bot process
deactivate Bot
Simulation -> Visualization : Stops Visualization process
deactivate Visualization
Simulation -> Simulation : Save **log**
Simulation -> Simulation : __Exit__
deactivate Simulation
@enduml
| false | true | false | false | sequence |
dc0d8e62761044af4b52a08844969f82dc1193f2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QuoteRequestChangeCustomerAction.puml | 5162b12c7f180a720e647be5d9d43250a4c856f6 | [] | 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 | 530 | 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 QuoteRequestChangeCustomerAction [[QuoteRequestChangeCustomerAction.svg]] extends QuoteRequestUpdateAction {
action: String
customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
}
interface QuoteRequestUpdateAction [[QuoteRequestUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
9c389985810a9a2a6d7e77dc3ca81d7f47eef63c | fb84bca41a00746017b56791cc1900e4cb811be7 | /Assets/Scripts/plantuml/EatableObjContoroller.puml | eb6211290ee13a5012a8d4a50c57082cb92aebcb | [] | no_license | MainCastle1212/EverythingEater_Main | 9b3622cc5cca5f78a411cfd7df61fbdec29a8856 | c228f75b78387aee448c6fbb2f3a362dccb724bd | refs/heads/main | 2023-01-12T07:33:38.139825 | 2020-11-12T10:01:22 | 2020-11-12T10:01:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 366 | puml | @startuml
class EatableObjContoroller {
- Ratio : float = 10
- PlayerSize : float
- ObjSize : float
Start() : void
+ Eaten() : void
+ IsEatable() : bool
}
MonoBehaviour <|-- EatableObjContoroller
IEatable <|-- EatableObjContoroller
EatableObjContoroller --> "Player" SpriteRenderer
EatableObjContoroller --> "Renderer" SpriteRenderer
@enduml
| false | true | false | false | class |
befe779a99a0d4d11ad82aafdfa7b415e37d619f | 990bdb5fcb1a5c5105313e1276aa7323788bfc06 | /UML/Classes.puml | 699a1e8213a56aa97bb7e940156e7ce009dd5eb3 | [] | no_license | SebBil/PcapAnalyse | 722e70227ecfb2a931352a724b2b1e2d04ad14b8 | b63eca4acc3e361448cbccbe62bbab086f627b2f | refs/heads/master | 2023-04-04T22:31:51.946996 | 2021-04-06T12:28:25 | 2021-04-06T12:28:25 | 338,662,937 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,330 | puml | @startuml
class RootCATree {
+ logger : Logger
+ __init__(self, node_class=None)
+ create_node(self, tag=None, identifier=None, parent=None, data=None)
+ check_if_is_root_ca(self, root, search, ts)
+ search_nodes(self, search_node, ts)
+ insert_into_tree(self, parent_node, add_node, ts)
+ safe_tree_to_graphviz(self, filename, shape='oval', graph='digraph')
}
treelib.Tree <|-- RootCATree
@enduml
@startuml
class CertNode {
+ frequency : Int
+ first_seen : Date
+ __init__(self, tag, identifier, data)
}
treelib.Node <|-- CertNode
@enduml
@startuml
class GetRootCAs {
+ logger : Logger
+ root_ca_folder : String
+ root_ca_download_url : String
+ __init__(self, folder)
+ get_roots(self, cert_mgr)
- _get_all_roots_from_web(self)
- _load_root_cas(path, cert_mgr)
- _time_in_range(self, start, end, x)
}
@enduml
@startuml
class Parser {
+ cert_with_no_parent : List
+ root_ca_tree_list : List
+ used_cipher_suites : List
+ streambuffer : Dict
+ encrypted_streams : List
+ count_no_certificate_found : Int
+ chains_with_no_root : List
+ count_certificate_messages : Int
+ count_cert_chains_added : Int
+ count_handshake_messages : Int
+ count_parsing_errors : Int
+ logger : Logger
+ __init__(self, crt_m, used_cs)
+ analyze_packet(self, ts, pkt)
+ parse_ip_packet(self, ip, ts)
+ parse_tcp_packet(self, ip, ts)
+ add_to_buffer(self, ip, partial_stream)
+ tls_factory(self, buf)
+ parse_tls_records(self, ip, stream, ts)
+ unpacker(self, type_string, packet)
+ parse_tls_handshake(self, ip, data, record_length, ts)
+ parse_server_hello(self, handshake)
+ parse_server_certificate(self, tls_cert_msg, client, server, ts)
}
@enduml
@startuml
class PcapAnalyzer {
+ logger : Logger
+ cert_mgr : Dict
+ interface : String
+ file : String
+ list_interfaces : Bool
+ info : Bool
+ ca_folder : String
+ captured_packets : Int
+ usedCipherSuites : List
+ parser : Parser
+ __init__(self, args)
+ init_logging_read_file(self)
+ run(self)
+ list_possible_interfaces(self
+ read_file(self)
+ start_listening(self)
+ plot_statistics(self)
+ print_statistics(self)
+ produce_svg(self)
}
@enduml | false | true | false | false | class |
9e34537990c334d9d38666fbb07e09b70fa0ac43 | b942fbd6248094a0213f66734acb8131b961ebb5 | /UML/logicalArchitecture.puml | 24299e6a5f7e0058cbf063c114af6073d10989c9 | [] | no_license | IohanSardinha/open-cx-t5g2-esotericos | 5f128c6af7e31960d4900ebfc166984d98fe764e | dd81107a4dfcb6b7974a76a346e611337e31985e | refs/heads/main | 2023-01-20T10:28:32.472395 | 2020-11-18T19:30:09 | 2020-11-18T19:30:09 | 314,367,021 | 0 | 0 | null | 2020-11-19T20:50:24 | 2020-11-19T20:50:23 | null | UTF-8 | PlantUML | false | false | 325 | puml | @startuml logicalArchitecture
scale 200
skinparam linetype polyline
skinparam minClassWidth 100
skinparam classBackgroundColor WhiteSmoke
skinparam classBorderColor DarkSlateGrey
skinparam ArrowColor Black
hide members
hide circles
class Controller
class Model
class View
Model -> Controller
View -left-> Controller
@enduml | false | true | false | false | class |
623af659882e67d69364fc9952bbe55f0c0e3178 | f5aea07abd95b801de6ece190410883bf0c2ba9d | /series/quantitative-trading-with-backtrader/2020-09-09-backtrader-architecture/backtrader_architecture.puml | 20f2f8fff48d20396c522a1fea433a15650de8ca | [] | no_license | juvu/damonyuan.github.io | c1452331c8e018d1ced039ac60d9e98dfee55dd1 | b6e1d33baa3662e181499472d8257bfd7e51de5f | refs/heads/main | 2023-08-29T15:31:42.100471 | 2021-10-03T16:21:32 | 2021-10-03T16:21:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,870 | puml | @startuml
actor main
participant Engine
participant Strategy
participant DataFeed
participant Analyzer
main -> Engine: create a Cerebro entity [1]
main -> DataFeed: load data from data source [2]
DataFeed --> Engine: add the data to the engine [3]
main -> Strategy: create a strategy [4]
note right
There are plenty of indicators built inside the backtrader:
- SimpleMovingAverage
- ExponentialMovingAverage
- WeightedMovingAverage
- StochasticSlow
- MACDHisto
- RSI
- SmoothedMovingAverage
- ATR -> AverageTrueRange
Here SimpleMovingAverage is picked for demo purpose
end note
Strategy -> Strategy: init references to datas\nand keep track of pending orders [5]
Strategy -> Strategy: implement next() method which\nis the main body of the strategy [6]
note right
use self.position to check if
we are in the market
end note
Strategy -> Strategy: implement notify_order() method\nwhich tracks the order's status [7]
Strategy -> Strategy: implement notify_trade() method\nwhich tracks the trade's status [8]
Strategy -> Strategy: implement stop() method\nif optstrategy() is used [9]
Strategy --> Engine: add/opt the strategy to the engine [10]
main -> Analyzer: add analyzers [11]
Analyzer --> Engine
Engine -> Engine: set the init cash to\nthe **broker** of the engine [12]
Engine -> Engine: set the commission to\nthe **broker** of the engine [13]
Engine -> Engine: add sizer according to\nthe stake [14]
note right
sizer controls the size of each buy/sell execution
end note
Engine -> Engine: run over everything [15]
note right
the platform will first call next
when all indicators are ready to produce a value
end note
Engine --> main: show the backtesting results [16]
Engine --> main: plot the charts [17]
note right
Here you will need to inspect the backtesting results
of your strategy and decide whether to apply it in real
transactions
end note
@enduml | false | true | false | false | sequence |
614d362c74339a38ff9b92a461c0741661949ae1 | 9ca77153b1b36f7991ba622d460b84a27f5947c5 | /Diagram.plantuml | 20e3a647cfae6d2799a390bf6c3b921eb600a226 | [] | no_license | sa6kok/exam20210901Angular | f3f59d81a62288094dbe0eb935cb2f7b7c834b5d | cc60740041747f7114b7b7203333686618ed9aeb | refs/heads/master | 2023-07-30T04:01:49.630142 | 2021-09-01T13:14:54 | 2021-09-01T13:14:54 | 402,040,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 384 | plantuml | @startuml ServerClients
Client -> Server: Request (niz: string)
Server --> Client: Response (number: int)
Client2 -> Server: Request (niz: string)
Server --> Client2: Response (number: int)
Client -> Server: Request (niz: string)
Server --> Client: Response (number: int)
Client2 -> Server: Request (niz: string)
Server --> Client2: Response (number: int)
@enduml | false | true | false | false | sequence |
189fc2f8941df7fe4bccac3b5b387fdcaa7eeaef | 8a01731637b7d98427e290e9ae0e4b74dc2d86f1 | /src/com/zzw/java1000000/z1142267/Class/md/relation.puml | f7c90e86b219d4a587b5cadf5cc5fd36a1e78a1e | [] | no_license | zhengzewang/1000000study | a2629ceff34f2083ab211c6eb64c939248c6d31d | 93b0f2d30e36f6653316aec8077b6fd424b099a2 | refs/heads/master | 2020-04-12T15:55:52.586491 | 2019-09-02T12:24:07 | 2019-09-02T12:24:09 | 162,595,667 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 430 | puml | @startuml
class Class<T> implements java.io.Serializable,GenericDeclaration,Type,AnnotatedElement{
public Package getPackage()
public String getName()
}
class Field extends AccessibleObject implements Member
abstract class Executable extends AccessibleObject implements Member, GenericDeclaration
class Method extends Executable
class Constructor<T> extends Executable
class Parameter implements AnnotatedElement
@enduml | false | true | false | false | class |
a72ec482467d206c8fda3fde791b688a5b632f93 | b45fa3584d86664b968ca4261d425300da67d5b1 | /Diagrams/ActivityDiagrams/RegistrationActivity.puml | 230a259611068637f5a8297175e6b1ada6749776 | [] | no_license | syedyasirali22/Attendance | c19de58683356c1375bfd9b0a2e9d822759b7d3a | f91ae28e13d08ee03f695ea72273ad29d091de0d | refs/heads/master | 2020-09-21T02:47:03.104110 | 2020-01-07T10:52:42 | 2020-01-07T10:52:42 | 224,657,474 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | puml | @startuml
title Registration Activity Diagram
(*) --> "Enter Email"
If "If email is valid" then
--> "Register"
else
--> "Enter Email"
(*) --> "Enter Name"
If "If Name is valid" then
--> "Register"
else
--> "Enter Name"
(*) --> "Enter Password"
If "If Password is valid" then
--> "Register"
Endif
-->(*)
@enduml | false | true | false | false | activity |
df412f9ba5961aecd7c38c4839561781704ae6f2 | 897c5f0768d85d6070cbac83453eaeda84f86ab7 | /SELAIN SISTEM/UML/SEQUENCE/pemberitahuan/admin bkd/Pemberitahuan surat bkd.puml | 2608cd2e4dfacb92417c5ed33559948bdcc37321 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | fiqihrosady/sistem_kp | b593e68eda63e3c4b2953447a2aa8f25f33f9921 | 7b9060a89f852577a6f4c1ea2596b59beb5e5b77 | refs/heads/master | 2020-09-27T00:03:37.042300 | 2019-12-05T18:54:26 | 2019-12-05T18:54:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 501 | puml | @startuml
autonumber
hide footbox
title Pemberitahuan Surat BKD
Actor AdminBKD
boundary Dashborad_V
boundary SuratBKD_V
control Admin_C
control BKD_C
Entity SuratDisposisi_E
Admin_C --> Dashborad_V: load->view()
Dashborad_V --> AdminBKD: Halaman Dashborad
AdminBKD --> Dashborad_V: klik tombol pemberitahuan
Dashborad_V --> BKD_C: index()
BKD_C --> SuratDisposisi_E:
SuratDisposisi_E --> BKD_C:
BKD_C --> SuratBKD_V: load->view()
SuratBKD_V --> AdminBKD: Halaman Surat BKD
@enduml | false | true | false | false | sequence |
5050ec571dd940808dab08c5a5c475a40f8629af | 3dd18ea1f7bc562203cd243e66148d676a171db1 | /src/main/java/com/design/model/decorator/decorator.puml | 5ab5ceb41bc25c8866367316459817521b83f49c | [] | no_license | Carlos-Messi-Gold-Ye/design-model | 44c2b6a13994195ef54cedd31ee4c4f92e250589 | 23f6d1baca5fb425cd35915b1f6409ff9c7af9dc | refs/heads/master | 2020-06-14T01:29:09.899964 | 2019-09-19T02:57:05 | 2019-09-19T02:57:05 | 194,851,032 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 499 | puml | @startuml
interface IOrder {
void orderInfo();
}
class BasisOrder implements IOrder{
+ void orderInfo()
}
abstract class DecoratorOrder implements IOrder{
- IOrder order;
+ DecoratorOrder(IOrder order)
+ void orderInfo()
}
DecoratorOrder o.. IOrder
class FranchiseeOrder extends DecoratorOrder{
+ FranchiseeOrder(IOrder order)
+ void orderInfo()
}
class BigCustomerOrder extends DecoratorOrder{
+ BigCustomerOrder(IOrder order)
+ void orderInfo()
}
@enduml | false | true | false | false | class |
727bde35b663fc0a0fbbf7a2a38e7ff52e47d21f | 3af9fc20cec0790a9ee4af86194a897a20844ec6 | /UML/diagrams/ClassDiagram/ClassCircle.puml | f79a9d139265382d60c41cf77368f411d728c2c7 | [
"BSD-3-Clause"
] | permissive | michaelchi08/design_pattern | 43dd486b0d0d94a75ab92b4c134329a030576231 | db2320a1b8e5001d4eaa7c4040ddbaea57062e1e | refs/heads/master | 2022-04-25T11:10:44.439494 | 2020-04-28T23:28:56 | 2020-04-28T23:28:56 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 185 | puml | @startuml
class Circle
{
-double radius
-Point center
+setRadius(double radius)
+setCenter(Point center)
+double getArea()
+double getCircumfrence()
}
@enduml
| false | true | false | false | class |
55ec1161c8c3a4e0ba02faf969a033dec5303938 | ea1c235d799a63eb2ad7fab3a262b51199ab1c96 | /src/main/java/com/designpatterns/graph/pattern/creative/simplefactory/SimpleFactory.puml | cf63600a5c1f2758ad72e60ffcf8eee6ffe40799 | [] | no_license | violet-Bin/designpatterns | f286a9f4b18674acc1f095a440b104402c5f9edc | fb73bc8f033a3248ef41c17874ccea13c439120a | refs/heads/master | 2022-07-13T02:43:34.134498 | 2021-11-25T16:25:42 | 2021-11-25T16:25:42 | 174,949,082 | 1 | 0 | null | 2022-06-17T03:35:02 | 2019-03-11T07:39:12 | Java | UTF-8 | PlantUML | false | false | 243 | puml | @startuml
class OrderPizza
class SimpleFactory
interface Pizza
class CheesePizza
class GreekPizza
Pizza <|.. CheesePizza
Pizza <|.. GreekPizza
SimpleFactory <.. OrderPizza
CheesePizza <.. SimpleFactory
GreekPizza <.. SimpleFactory
@enduml | false | true | false | false | class |
2565e25f6b490349fdb953f5681b76274ab57fa3 | 1a01e61cc1059497c9081f378e14f37131927748 | /docs/late_delivery.puml | a5235a3375767e17889357eb59a183143b0a7e18 | [] | no_license | duckception/dissertation | d6fb82b9f396ee10d2718fb40434e765da50fa2e | 1108ba7b9a7c1373101111bc5d582e0c6a5cc96c | refs/heads/master | 2023-07-31T21:10:52.549443 | 2021-09-24T00:57:35 | 2021-09-24T01:01:58 | 334,768,083 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,832 | puml | @startuml
title Duck Express - the app lifecycle (late delivery)
participant "Addressee" as addressee
participant "Customer" as customer
participant "Contract" as contract
participant "Courier" as courier
customer -> contract: Create a delivery order
activate contract
contract -> contract: Transfer reward tokens from the <b>Customer</b> to the <b>Contract</b>
contract -> customer: Get order's hash (identification purpose)
deactivate
courier -> contract: Browse all available delivery orders
activate contract
return
courier -> contract: Accept a delivery order
activate contract
contract -> contract: Transfer collateral tokens from the <b>Courier</b> to the <b>Contract</b>
return
courier -> customer: Pick up the delivery goods
activate customer
customer -> contract: Confirm pick up
activate contract
return
return
alt Customer claims the collateral
customer -> contract: Claim collateral
activate contract
contract -> contract: Transfer back reward tokens from the <b>Contract</b> to the <b>Customer</b>
contract -> contract: Transfer collateral tokens from the <b>Contract</b> to the <b>Customer</b>
return
else Customer allows the courier to deliver the late goods
alt Addressee accepts the late delivery
courier -> addressee: Deliver the goods
activate addressee
addressee -> contract: Confirm delivery
activate contract
contract -> contract: Transfer 50% of reward tokens from the <b>Contract</b> to the <b>Courier</b>
contract -> contract: Transfer 50% of reward tokens from the <b>Contract</b> to the <b>Customer</b>
contract -> contract: Transfer collateral tokens from the <b>Contract</b> to the <b>Courier</b>
return
return
else Addressee refuses to receive the delivery
courier -> addressee: Deliver the goods
activate addressee
addressee -> contract: Refuse to receive the delivery
activate contract
return
return
courier -> customer: Deliver the goods back
activate customer
alt Customer accepts the returned goods
customer -> contract: Accept the returned goods
activate contract
contract -> contract: Transfer 50% reward tokens from the <b>Contract</b> to the <b>Courier</b>
contract -> contract: Transfer 50% reward tokens from the <b>Contract</b> to the <b>Customer</b>
contract -> contract: Transfer collateral tokens from the <b>Contract</b> to the <b>Courier</b>
return
else Customer refuses to receive the returned goods
customer -> contract: Refuse to receive the returned delivery
activate contract
contract -> contract: Transfer back reward tokens from the <b>Contract</b> to the <b>Customer</b>
contract -> contract: Transfer collateral tokens from the <b>Contract</b> to the <b>Customer</b>
return
end
return
end
end
@enduml
| false | true | false | false | sequence |
bcc5781cfa696833a7704c50911b0820bf7e74fb | 5b6edc3cbeb1d2b5bb8ec9eafba39b12d66c5fb8 | /classes.puml | ed4635fe861e7f0936d2c6869533d5d98ddd04b1 | [] | no_license | zst-c/learning_hub | 454a12e0f71087de152475efdaaffbd6e77186a9 | fda34fb7f6f45031a0fcb33a6caf8b0a606fe513 | refs/heads/master | 2023-04-04T01:34:28.968674 | 2021-03-25T10:20:06 | 2021-03-25T10:20:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 13,035 | puml | @startuml
set namespaceSeparator ::
class "learning_hub::objects::addEventPopup.dart::AddEvent" {
+CustomUser user
+AddEventState createState()
}
"learning_hub::objects::addEventPopup.dart::AddEvent" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::addEventPopup.dart::AddEventState" {
-GlobalKey<FormState> _formKey
+List<bool> days
+dynamic title
+dynamic location
+dynamic teacher
+dynamic start
+dynamic end
+bool boxValueA
+bool boxValueB
+bool daysFilled
+bool weeksFilled
+bool timesValid
+Widget build()
}
class "learning_hub::objects::addPersonalTask.dart::AddPersonalTask" {
+CustomUser user
+AddPersonalTaskState createState()
}
"learning_hub::objects::addPersonalTask.dart::AddPersonalTask" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::addPersonalTask.dart::AddPersonalTaskState" {
-GlobalKey<FormState> _formKey
+dynamic title
+dynamic description
+dynamic subject
+DateTime dueDate
+bool dueDateSet
+Widget build()
}
class "learning_hub::objects::assignment.dart::Assignment" {
+String url
+String platform
+String courseId
+String courseName
+String submissionId
+String title
+String description
+String id
+String status
+String type
+DateTime creationTime
+DateTime updateTime
+String creatorId
+DateTime dueDate
+List<Attachment> attachments
+List<Attachment> submissionAttachments
+Question question
+int points
+String state
+bool isLate
+int grade
+String answer
}
"learning_hub::objects::assignment.dart::Assignment" o-- "learning_hub::objects::question.dart::Question"
class "learning_hub::objects::assignments_list_view.dart::AssignmentsListView" {
+List assignments
+CustomUser user
+dynamic courseName
+dynamic courseId
+bool timetable
+AssignmentsListViewState createState()
}
"learning_hub::objects::assignments_list_view.dart::AssignmentsListView" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::assignments_list_view.dart::_CustomListRow" {
+Assignment assignment
+CustomUser user
+_CustomListRowState createState()
}
"learning_hub::objects::assignments_list_view.dart::_CustomListRow" o-- "learning_hub::objects::assignment.dart::Assignment"
"learning_hub::objects::assignments_list_view.dart::_CustomListRow" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::assignments_list_view.dart::_CustomListRowState" {
+Widget build()
{static} -void _pushAssignmentPage()
}
class "learning_hub::objects::attachment.dart::Attachment" {
+String title
+String link
+String id
+String thumbnail
+String type
}
class "learning_hub::objects::attachments_list_view.dart::AttachmentsListView" {
+List<Attachment> attachments
+dynamic description
+AttachmentsListViewState createState()
}
class "learning_hub::objects::attachments_list_view.dart::_FirstTile" {
+dynamic description
+bool attachments
+_FirstTileState createState()
}
class "learning_hub::objects::attachments_list_view.dart::_CustomListRow" {
+Attachment attachment
+_CustomListRowState createState()
}
"learning_hub::objects::attachments_list_view.dart::_CustomListRow" o-- "learning_hub::objects::attachment.dart::Attachment"
class "learning_hub::objects::course.dart::Course" {
+String name
+String description
+String platform
+String id
+String status
}
class "learning_hub::objects::courses_list_view.dart::CoursesListView" {
+List<Course> courses
+CustomUser user
+CoursesListViewState createState()
}
"learning_hub::objects::courses_list_view.dart::CoursesListView" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::courses_list_view.dart::_CustomListRow" {
+Course course
+CustomUser user
+_CustomListRowState createState()
}
"learning_hub::objects::courses_list_view.dart::_CustomListRow" o-- "learning_hub::objects::course.dart::Course"
"learning_hub::objects::courses_list_view.dart::_CustomListRow" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::customUser.dart::CustomUser" {
+User firebaseUser
+Map<String, dynamic> authHeaders
}
class "learning_hub::objects::custom_app_bar.dart::CustomAppBar" {
+dynamic title
+bool reload
+Size preferredSize
+CustomAppBarState createState()
}
class "learning_hub::objects::custom_navigation_bar.dart::CustomNavigationBar" {
+dynamic name
+CustomUser user
+int index
+CustomNavigationBarState createState()
}
"learning_hub::objects::custom_navigation_bar.dart::CustomNavigationBar" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::custom_navigation_bar.dart::CustomNavigationBarState" {
{static} -void _pushAccountPage()
{static} -void _pushCoursesPage()
{static} -void _pushTannoyPage()
{static} -void _pushTimetablePage()
+Widget build()
}
class "learning_hub::objects::event.dart::Event" {
+String id
+String classSet
+String location
+String name
+String platform
+String teacher
+List<List<String>> times
+int compareTo()
}
class "learning_hub::objects::events_list_view.dart::EventsListView" {
+List<Event> events
+CustomUser user
+EventsListViewState createState()
}
"learning_hub::objects::events_list_view.dart::EventsListView" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::events_list_view.dart::_CustomListRow" {
+Event event
+CustomUser user
+_CustomListRowState createState()
}
"learning_hub::objects::events_list_view.dart::_CustomListRow" o-- "learning_hub::objects::event.dart::Event"
"learning_hub::objects::events_list_view.dart::_CustomListRow" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::notice.dart::Notice" {
+String title
+String body
+String author
}
class "learning_hub::objects::offlineScaffold.dart::OfflineScaffold" {
+OfflineScaffoldState createState()
}
class "learning_hub::objects::question.dart::Question" {
+String type
+List<String> options
}
class "learning_hub::objects::showEventPopup.dart::ShowEvent" {
+CustomUser user
+dynamic id
+ShowEventState createState()
}
"learning_hub::objects::showEventPopup.dart::ShowEvent" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::showEventPopup.dart::ShowEventState" {
+bool showConfirm
+Widget build()
}
class "learning_hub::objects::student_submissions.dart::StudentSubmissions" {
+Assignment assignment
+CustomUser user
+StudentSubmissionsState createState()
}
"learning_hub::objects::student_submissions.dart::StudentSubmissions" o-- "learning_hub::objects::assignment.dart::Assignment"
"learning_hub::objects::student_submissions.dart::StudentSubmissions" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::objects::student_submissions.dart::StudentSubmissionsState" {
+dynamic answer
+Widget build()
}
class "learning_hub::objects::tannoy_list_view.dart::TannoysListView" {
+List<Notice> notices
+TannoysListViewState createState()
}
class "learning_hub::objects::tannoy_list_view.dart::_CustomListRow" {
+Notice notice
+_CustomListRowState createState()
}
"learning_hub::objects::tannoy_list_view.dart::_CustomListRow" o-- "learning_hub::objects::notice.dart::Notice"
class "learning_hub::pages::account_page.dart::AccountPage" {
+GoogleSignInAccount account
+dynamic name
+CustomUser user
+bool toSignOut
+AccountPageState createState()
}
"learning_hub::pages::account_page.dart::AccountPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::account_page.dart::_CustomScaffold" {
+dynamic name
+CustomUser user
+_CustomScaffoldState createState()
}
"learning_hub::pages::account_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::account_page.dart::_CustomScaffoldState" {
+bool showEventConfirm
+bool showTasksConfirm
+bool showAllConfirm
+Widget build()
{static} -void _pushSignOut()
}
class "learning_hub::pages::assignments_page.dart::AssignmentsPage" {
+GoogleSignInAccount account
+dynamic name
+dynamic id
+dynamic course
+CustomUser user
+AssignmentsPageState createState()
}
"learning_hub::pages::assignments_page.dart::AssignmentsPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::assignments_page.dart::_CustomScaffold" {
+dynamic name
+CustomUser user
+dynamic course
+dynamic id
+_CustomScaffoldState createState()
}
"learning_hub::pages::assignments_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::assignment_page.dart::AssignmentPage" {
+GoogleSignInAccount account
+dynamic name
+Assignment assignment
+CustomUser user
+AssignmentPageState createState()
}
"learning_hub::pages::assignment_page.dart::AssignmentPage" o-- "learning_hub::objects::assignment.dart::Assignment"
"learning_hub::pages::assignment_page.dart::AssignmentPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::assignment_page.dart::_CustomScaffold" {
+dynamic name
+CustomUser user
+Assignment assignment
+_CustomScaffoldState createState()
}
"learning_hub::pages::assignment_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
"learning_hub::pages::assignment_page.dart::_CustomScaffold" o-- "learning_hub::objects::assignment.dart::Assignment"
class "learning_hub::pages::courses_page.dart::CoursesPage" {
+GoogleSignInAccount account
+dynamic name
+CustomUser user
+CoursesPageState createState()
}
"learning_hub::pages::courses_page.dart::CoursesPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::courses_page.dart::_CustomScaffold" {
+dynamic name
+CustomUser user
+_CustomScaffoldState createState()
}
"learning_hub::pages::courses_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::dashboard_web_view.dart::DashboardWebView" {
+CustomUser user
+dynamic url
+bool events
+DashboardWebViewState createState()
}
"learning_hub::pages::dashboard_web_view.dart::DashboardWebView" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::dashboard_web_view.dart::_CustomBody" {
+dynamic url
+CustomUser user
+bool events
+_CustomBodyState createState()
}
"learning_hub::pages::dashboard_web_view.dart::_CustomBody" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::dashboard_web_view.dart::_CustomBodyState" {
+Widget build()
{static} -void _pushTimetablePage()
}
class "learning_hub::pages::portal_web_view.dart::PortalWebView" {
+CustomUser user
+dynamic url
+PortalWebViewState createState()
}
"learning_hub::pages::portal_web_view.dart::PortalWebView" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::portal_web_view.dart::_CustomBody" {
+dynamic url
+CustomUser user
+_CustomBodyState createState()
}
"learning_hub::pages::portal_web_view.dart::_CustomBody" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::portal_web_view.dart::_CustomBodyState" {
+Widget build()
{static} -void _pushTannoyPage()
}
class "learning_hub::pages::tannoy_page.dart::TannoyPage" {
+dynamic name
+CustomUser user
+TannoyPageState createState()
}
"learning_hub::pages::tannoy_page.dart::TannoyPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::tannoy_page.dart::_CustomScaffold" {
+CustomUser user
+dynamic name
+_CustomScaffoldState createState()
}
"learning_hub::pages::tannoy_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::tannoy_page.dart::_CustomScaffoldState" {
+Widget build()
{static} -void _pushTannoyPage()
}
class "learning_hub::pages::timetable_page.dart::TimetablePage" {
+dynamic name
+CustomUser user
+TimetablePageState createState()
}
"learning_hub::pages::timetable_page.dart::TimetablePage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::timetable_page.dart::_CustomScaffold" {
+CustomUser user
+dynamic name
+_CustomScaffoldState createState()
}
"learning_hub::pages::timetable_page.dart::_CustomScaffold" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::timetable_page.dart::_MainPage" {
+CustomUser user
+dynamic name
+DateTime time
+dynamic week
+_MainPageState createState()
}
"learning_hub::pages::timetable_page.dart::_MainPage" o-- "learning_hub::objects::customUser.dart::CustomUser"
class "learning_hub::pages::timetable_page.dart::_MainPageState" {
+DateTime time
+dynamic week
+Widget build()
}
@enduml | false | true | false | false | class |
2cdab0a5de97f3d69637ff9d36cc60b797ebfcb5 | e77531a66c273d5480b8551879ba5513ea47b652 | /docs/design/fabric-v2+/fpc-cc-invocation.puml | 5b276c0039dd1376bec6501263d509658c699548 | [
"Zlib",
"MIT",
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | cosys-work/fabric-private-chaincode | 564d2915d4006a2535b78df494319a690283eafe | 7305fca16d261799e04852110249f24fe84bbb6b | refs/heads/master | 2022-12-11T07:20:52.641290 | 2020-08-31T11:07:01 | 2020-09-02T08:24:05 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,073 | puml | /'
Copyright 2020 Intel Corporation
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
'/
@startuml
'- force wrapping of longer text
'skinparam wrapWidth 400
!pragma teoz true
hide footbox
title Foot Box removed
title Fabric Private Chaincode - Chaincode invocation
actor "User" as User1 order 9
participant "Peer_CLI/\nClient SDK" as CLI order 10
participant "Ledger_enclave" as TLCC1 order 45 #99FF99
participant "Peer" as Peer order 25
participant "ERCC" as ERCC1 order 50
ref over User1, ERCC1
see fpc-registration-new.puml
|||
end ref
|||
User1 -> CLI ++: invoke <CC_Id, args, ...>
group prepare FPC proposal
CLI -> ERCC1 ++: queryECCInfos(CC_Id)
return ECCInfos = List<<Enclave_VK, Chaincode_EK, ... , ATTESTATION>, ...>
CLI -> CLI: verify ECCInfos
note right
NOTE ECCInfos contains a list of all FPC enclave registered for CC_Id.
Verify performs the same verification steps (i.e., attestation
verification, etc.) as the registration step performed by ERCC.
See fpc-registration.puml for more details.
Note that this verification is only necessary iff User is not member
of Org1, otherwise authenticated response enough. In that case, the
user also has to query different peers from different orgs in order
to satisfy a quorum as necessary for the lifecycle endorsement policy
and channel configuration changes.
NOTE: For MVP, ECCInfo only contains Chaincode_EK and no ECCInfo verification is needed.
end note
CLI -> CLI : r_key <- keyGen()
note right
generate a symmetric key to
encrypt the FPC chaincode result
end note
CLI -> CLI : args_ECC <- encrypt <args, r_key> with Chaincode_EK
end
group invoke
CLI -> Peer ++: send proposal <CC_Id, args_enc, ...>
alt FPC Chaincode is not running
note right Peer
handled implicitly by the peer which determines
when to call run() from external builder.
end note
create participant "FPC_stub" as ECC1 order 26
Peer -> ECC1 ++: call external builder run()
note right
NOTE: Any failure in ECC or FPC_Enclave will cause
ecc (and docker) dieing so peer will notice it.
end note
ECC1 -> ECC1 ++: get sealed credentials
note right ECC1
FPC_stub has access to peer local
storage through external builder.
end note
return
create participant "FPC_stub_enclave" as Enclave1 order 30 #99FF99
ECC1 -> Enclave1 ++ : spawn enclave with sealed credentials
Enclave1 -> Enclave1 : unseal credentials and restore
return
return
end
Peer -> ECC1 ++: invoke (proposal(args_enc), CTX)
note right
Transaction context (CTX) used for all interactions
with both, the untrusted ledger und trusted ledger (Ledger_enclave)
within the invocation. It ensures that all state accesses
are from the same state view (block height).
end note
ECC1 -> Enclave1 ++: invoke (proposal(args_enc), CTX)
Enclave1 <-> TLCC1: establish secure channel based on local attestation
note right Enclave1
See interfaces.ecc-tlcc-channel.md for details on secure channel
end note
Enclave1 -> Enclave1 : verify proposal
Enclave1 -> TLCC1 ++: verify (proposal.creator, CTX)
note over TLCC1
Ledger_enclave access is needed to check that the creator
(client identity) passes MSP validation, that is,
it comes with a certificate that is a proper root
of trust.
end note
return
Enclave1 -> Enclave1 : <args, r_key> <- decrypt args_enc with Chaincode_DK
note right
If proposal contains optional Req_ledger_enclave_inst_id parameter,
make sure it matches own Ledger_enclave_inst_id, otherwise abort.
This is necessary for CC2CC calls to make sure the two chaincodes
interact with the same Ledger_enclave instance and hence have consistent
views on ledger state.
end note
Enclave1 -> Enclave1: result <- invoke(args, CTX)
ref over Enclave1
Chaincode execution
see fpc-chaincode-execution.puml
end ref
Enclave1 -> Enclave1 : result_enc <- encrypt result with r_key
note right
The encryption is via authenticated symmetric cipher like aes-gcm
end note
Enclave1 -> Enclave1 : Sig_Enclave <- sign <args, read/writeset, result_enc> with Enclave_SK
return <result_enc, Sig_Enclave>
return <result_enc, Sig_Enclave>
alt MVP
Peer -> Peer : create proposal response <args, read/writeset, result=<result_enc, Sig_Enclave, Enclave_VK>, ...>
note right Peer
Note that the result field of the proposal response contains
a message that comprises the encrypted result produced by the
enclave, the enclave signature, and the corresponding
verification key.
end note
else Post-MVP: Validation
Peer -> Peer : create proposal response <args, read/writeset, result=result_enc, ...>
Peer -> Peer : Replace endorsement signature & cert of peer with Sig_enclave & CC_Parameters.Certificate
note right Peer
This step is performed using an FPC-specific endorsement plugin.
end note
end
return proposal response
end
group complete transaction
note right CLI
Invoke at enough endorsing peers to satisfy
endorsement policy and collect proposal responses.
NOTE: For MVP we support a designated endorsing peer only
end note
loop for all/"enough" endorsers
ref over CLI
invoke
end
end
CLI -> CLI : form transaction
create entity Orderer order 100
CLI -> Orderer : submit transaction
end
group result decryption
CLI -> CLI : result_enc <- extract from proposal response
CLI -> CLI : result <- decrypt result_enc with r_key
end
return result
|||
ref over User1, Orderer
continue with validation phase after ordering
see fpc-validation.puml
|||
end ref
@enduml
| false | true | false | false | usecase |
73c8812676b92f6bbf1c63931b4e17b65138d786 | 4a7f464339cddae673d135698e38517288034b83 | /doc/ocr-process.puml | ac50ae57cd98c816233272b06c4b71ce8e58cee6 | [] | no_license | ipf-dev/sat-anti-luddite | d10593d060fbc6565b215a8874aa7c1188afbe94 | ebb168a1686b71691b549bb2a814a8dfec2f2b97 | refs/heads/main | 2023-08-27T09:39:48.252213 | 2020-11-05T01:56:46 | 2020-11-05T01:56:46 | 297,558,320 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 682 | puml | @startuml
skinparam responseMessageBelowArrow true
participant SAT
participant "ocr-body-filter"
participant "ocr-sent-tokenize"
database ElasticSearch
SAT -> "ocr-body-filter": Invoke via SNS
activate "ocr-body-filter"
"ocr-body-filter" -> ElasticSearch: Query <ocr-result>
"ocr-body-filter" <-- ElasticSearch: Return document
"ocr-body-filter" -> "ocr-body-filter": Filter text into text elements
"ocr-body-filter" -> "ocr-sent-tokenize": Invoke via SNS
deactivate "ocr-body-filter"
activate "ocr-sent-tokenize"
"ocr-sent-tokenize" -> "ocr-sent-tokenize": Sentence tokenizing
"ocr-sent-tokenize" -> ElasticSearch: Save to <ocr-sentence>
deactivate "ocr-sent-tokenize"
@enduml | false | true | false | false | sequence |
d06a2bfd7c47366daa5c1f45a1d91e3bc3a0c29b | adc1be69234432655526ba7136d8d3144338509c | /packages/core/example-input/SeqD-examples/SeqDs/wait.puml | a1cf5434fabe0327f540276f54ac6992ef7d0e90 | [
"MIT"
] | permissive | tum-esi/wot-runtime | 062b6863b555b391fd70cbf2bc7c9639ee8a751a | aabb896d0b5f223e5f3aab6993be445e2dc29848 | refs/heads/main | 2023-06-19T04:21:14.298268 | 2021-07-20T22:09:02 | 2021-07-20T22:09:02 | 387,924,384 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 656 | puml | @startuml wait
[->"Agent": top:wait()
activate "Agent"
group strict
par
"Agent" -> "VirtualCoffeeMachine" : subscribeEvent: "maintenance"
activate "VirtualCoffeeMachine"
"VirtualCoffeeMachine" --> "Agent" : confirmation
"VirtualCoffeeMachine" ->> "Agent" : data-pushed
end
par
"Agent" -> "TestThing" : writeProperty: "string"
end
end
... wait 500ms ...
group strict
par
"Agent" -> "VirtualCoffeeMachine" : readProperty: "state"
activate "VirtualCoffeeMachine"
"VirtualCoffeeMachine" --> "Agent" : response
deactivate "VirtualCoffeeMachine"
end
par
"Agent" -> "TestThing" : writeProperty: "string"
end
end
[<-"Agent"
deactivate "Agent"
@enduml | false | true | false | false | sequence |
35d889712997c3eeda493ba56b8292aeb7563e74 | 95137e9a69f43a2c8a3c79e78f68605e6e92a208 | /out/production/flappybird/UML/paintComponentSequenceDiagram.puml | 01d1e755947632dc10e77950f0ac8b1d9a5b522d | [] | no_license | dawrop/FlappyBird | 78d004cdc009b8a496cf8320ebdaa9b2571b1569 | 2547ffb7a8cbeb837d605fa3a1ebaa9cf8eec411 | refs/heads/main | 2023-04-11T03:31:39.359356 | 2021-04-22T16:16:44 | 2021-04-22T16:16:44 | 360,580,119 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,386 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
User -> GameplayState : paintComponent
activate GameplayState
GameplayState -> GameplayState : update
activate GameplayState
GameplayState -> Bird : updateEntity
activate Bird
Bird --> GameplayState :
deactivate Bird
GameplayState -> Pipe : updateEntity
activate Pipe
Pipe --> GameplayState :
deactivate Pipe
GameplayState -> GameplayState : checkIfCollided
activate GameplayState
alt Zderzenie ptaszka z przeszkodą
GameplayState -> Main : setState
activate Main
Main --> GameplayState : Gameover State
deactivate Main
else Przeszkoda została ominięta
GameplayState -> Pipe : setScored
activate Pipe
Pipe --> GameplayState : score++
deactivate Pipe
end
deactivate GameplayState
deactivate GameplayState
GameplayState -> GameplayState : draw
activate GameplayState
loop 4 razy
GameplayState -> Pipe : drawEntity
activate Pipe
Pipe --> GameplayState :
deactivate Pipe
end
GameplayState -> Bird : drawEntity
activate Bird
Bird -> Entity : drawEntity
activate Entity
Entity --> Bird :
deactivate Entity
Bird --> GameplayState :
deactivate Bird
deactivate GameplayState
return
deactivate GameplayState
@enduml | false | true | true | false | sequence |
3ddf466fdab57528e3b9bf87df0ad43de05d9901 | 008380a4479bddd6b17b6d752b0d91ba220e6b33 | /Eureka/Assets/Scripts/plantuml/DragMe.puml | a130a3852fdb5ee42d9f9b4a881bc1da5a185d84 | [] | no_license | xxbokusu/Eureka | bb2b8c92973905c05a38b4661d00d4d0090bf918 | e4e2284d304bfd76ba0aa9cd735fb30f73a3d722 | refs/heads/master | 2023-06-09T06:13:54.758394 | 2023-06-08T03:33:01 | 2023-06-08T03:33:01 | 195,805,623 | 0 | 0 | null | 2023-06-08T03:55:52 | 2019-07-08T12:16:08 | C# | UTF-8 | PlantUML | false | false | 546 | puml | @startuml
class DragMe {
+ dragOnSurfaces : bool = true
- m_DraggingIcons : Dictionary<int,GameObject>
- m_DraggingPlanes : Dictionary<int, RectTransform>
+ OnBeginDrag(eventData:PointerEventData) : void
+ OnDrag(eventData:PointerEventData) : void
- SetDraggedPosition(eventData:PointerEventData) : void
+ OnEndDrag(eventData:PointerEventData) : void
{static} + FindInParents(go:GameObject) : T
}
MonoBehaviour <|-- DragMe
IBeginDragHandler <|-- DragMe
IDragHandler <|-- DragMe
IEndDragHandler <|-- DragMe
@enduml
| false | true | false | false | class |
aa618aea66285ef709702cbeca6211a257278ec9 | aa51d1608d513fc651ab662fed7d33e0da3fff59 | /lesson8/src/main/java/ru/android/Project.puml | 5613499d78459cb5fca66e7c582223c1d500ba74 | [] | no_license | MarsMoldobekov/Java_Core | abd9570a275f894d61436f97956c51b52151f6a5 | 7ed35276eb52941c607ae46698be3a9ac74a6d5b | refs/heads/master | 2023-03-22T06:01:24.665452 | 2021-03-16T20:34:50 | 2021-03-16T20:34:50 | 333,040,710 | 0 | 0 | null | 2021-03-11T15:33:07 | 2021-01-26T09:55:01 | Java | UTF-8 | PlantUML | false | false | 2,447 | puml | @startuml
package "participant" {
abstract class Participant {
#name: String
#runningRestriction: int
#jumpingRestriction: int
---
+Participant(name: String, runningRestriction: int, jumpingRestriction: int)
+toString(): String {override}
+passObstacles(Obstacle[] obstacles): void
-checkDistance(distance: int): boolean
-checkHeight(height: int): boolean
+{abstract}run(distance: int): void
+{abstract}jump(height: int): void
}
class Cat {
+Cat(name: String, runningRestriction: int, jumpingRestriction: int)
+run(distance: int): void {override}
+jump(height: int): void {override}
}
class Human {
+Human(name: String, runningRestriction: int, jumpingRestriction: int)
+run(distance: int): void {override}
+jump(height: int): void {override}
}
class Robot {
+Robot(name: String, runningRestriction: int, jumpingRestriction: int)
+run(distance: int): void {override}
+jump(height: int): void {override}
}
Participant <|-- Cat
Participant <|-- Human
Participant <|-- Robot
}
package "obstacle" {
interface Obstacle {
+info(): void
}
class Treadmill {
-distance: int
---
+getDistance(): int
+info(): void {override}
+toString(): String {override}
}
class Wall {
-height: int
---
+getHeight(): int
+info(): void {override}
+toString(): String {override}
}
Obstacle <|.. Treadmill
Obstacle <|.. Wall
}
package "factories" {
enum ObstacleType{
TREADMILL, WALL
}
enum ParticipantType {
HUMAN, CAT, ROBOT
}
class ObstacleFactory {
+getObstacle(obstacleType: ObstacleType, length: int): Obstacle
}
class ParticipantFactory {
+getParticipant(participant: Participant, name: String, runningRestriction: int, jumpingRestriction: int): Participant
}
ObstacleFactory o.. Obstacle
ParticipantFactory o.. Participant
}
class Main {
+{static}main(args: String[]): void
+{static}printParticipantInfo(participants: Participant[]): void
+{static}printObstaclesInfo(obstacles: Obstacles[]): void
+{static}runChallenge(participants: Participant[], obstacles: Obstacles[]): void
}
Main -- ObstacleFactory
Main -- ParticipantFactory
@enduml
| false | true | false | false | sequence |
bb301c412729d7bbe88d1340a0acea7225879d02 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Runtime/TMP_TextProcessingStack.puml | 857b350af8039bcf277c8371f2492d8407fbaf2e | [] | 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 | 1,023 | puml | @startuml
class TMP_FontStyleStack <<struct>> {
+ bold : byte
+ italic : byte
+ underline : byte
+ strikethrough : byte
+ highlight : byte
+ superscript : byte
+ subscript : byte
+ uppercase : byte
+ lowercase : byte
+ smallcaps : byte
+ Clear() : void
+ Add(style:FontStyles) : byte
+ Remove(style:FontStyles) : byte
}
class "TMP_TextProcessingStack`1"<T> <<struct>> {
+ index : int
m_DefaultItem : T
m_Capacity : int
m_RolloverSize : int
m_Count : int
<<const>> k_DefaultCapacity : int = 4
+ TMP_TextProcessingStack(stack:T[])
+ TMP_TextProcessingStack(capacity:int)
+ TMP_TextProcessingStack(capacity:int, rolloverSize:int)
+ Count : int <<get>>
+ current : T <<get>>
+ rolloverSize : int <<get>> <<set>>
+ Clear() : void
+ SetDefault(item:T) : void
+ Add(item:T) : void
+ Remove() : T
+ Push(item:T) : void
+ Pop() : T
+ Peek() : T
+ CurrentItem() : T
+ PreviousItem() : T
}
@enduml
| false | true | false | false | class |
e92e5eb1178c7f9691d78fe1d1957a8bdeb78d15 | 0736d15b860f9d207c7505034b0471e995e30187 | /src/at/omi/blatt6/a3/smarthome/factory/factory.plantuml | c496aad4855a9d07d94fc9dd9dbca82a88f41ee0 | [] | no_license | yahorpaulson/FactoryObserverDesignPatterns | b3d2b23683c18fbf36d0e5db50cfa97ed93cc53c | 916a1d81f10ec56ec3321cd7649da8a4737847ba | refs/heads/master | 2023-04-21T13:08:34.098570 | 2021-05-11T11:15:27 | 2021-05-11T11:15:27 | 366,354,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,900 | plantuml | @startuml
title __FACTORY's Class Diagram__\n
namespace at.omi.blatt6.a3.smarthome.factory {
abstract class at.omi.blatt6.a3.smarthome.factory.DefaultDeviceImpl {
- id : String
- name : String
+ getId()
+ getName()
+ setId()
+ setName()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
class at.omi.blatt6.a3.smarthome.factory.Main {
{static} + main()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
class at.omi.blatt6.a3.smarthome.factory.SensorImpl {
- unit : String
+ getUnit()
+ getValue()
+ setUnit()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
class at.omi.blatt6.a3.smarthome.factory.SimulatedLight1Adapter {
- id : String
- name : String
- on : boolean
+ getId()
+ getName()
+ isOn()
+ setId()
+ setName()
+ switchOff()
+ switchOn()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
class at.omi.blatt6.a3.smarthome.factory.SimulatedLight2Adapter {
- id : String
- name : String
- on : boolean
+ getId()
+ getName()
+ isOn()
+ setId()
+ setName()
+ switchOff()
+ switchOn()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
abstract class at.omi.blatt6.a3.smarthome.factory.SmarthomeManager {
- devices : ArrayList<Device>
+ SmarthomeManager()
+ addDevice()
+ printSensorReadings()
+ switchActorsOff()
+ switchActorsOn()
{abstract} # createDevice()
- testDevice()
}
}
namespace at.omi.blatt6.a3.smarthome.factory {
class at.omi.blatt6.a3.smarthome.factory.SmarthomeManagerFactory {
+ createDevice()
}
}
at.omi.blatt6.a3.smarthome.factory.DefaultDeviceImpl .up.|> at.omi.smarthome.interfaces.Device
at.omi.blatt6.a3.smarthome.factory.SensorImpl .up.|> at.omi.smarthome.interfaces.Sensor
at.omi.blatt6.a3.smarthome.factory.SensorImpl -up-|> at.omi.blatt6.a3.smarthome.factory.DefaultDeviceImpl
at.omi.blatt6.a3.smarthome.factory.SimulatedLight1Adapter .up.|> at.omi.smarthome.interfaces.Actor
at.omi.blatt6.a3.smarthome.factory.SimulatedLight1Adapter -up-|> at.omi.smarthome.simulation1.SimulatedLight1
at.omi.blatt6.a3.smarthome.factory.SimulatedLight2Adapter .up.|> at.omi.smarthome.interfaces.Actor
at.omi.blatt6.a3.smarthome.factory.SimulatedLight2Adapter -up-|> at.omi.smarthome.simulation2.SimulatedLight2
at.omi.blatt6.a3.smarthome.factory.SmarthomeManagerFactory -up-|> at.omi.blatt6.a3.smarthome.factory.SmarthomeManager
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 |
231ae7f5a69b75c6730dbd38e68d91484b22d8a3 | b844fa68b3c7a2854ebce5f9b546eecc94262acd | /src/main/java/com/lqq/demo/spring/aware/demo.puml | df27f8b2d7a7827e840ac0fdbe32361e710443ea | [] | no_license | lanqqiao/net-demo | 308bac12fe2b2a52044b216818a89cfb05d96553 | f93830b938d7e09e61160a5c0bd6424bffd4e85e | refs/heads/master | 2022-10-13T12:53:35.769896 | 2021-06-07T03:44:13 | 2021-06-07T03:44:13 | 224,372,465 | 0 | 1 | null | 2022-10-04T23:57:42 | 2019-11-27T07:39:48 | Java | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
actor Foo1
boundary Foo2
control Foo3
entity Foo4
database Foo5
collections Foo6
Foo1 -> Foo2 : To boundary
Foo1 -> Foo3 : To control
Foo1 -> Foo4 : To entity
Foo1 -> Foo5 : To database
Foo1 -> Foo6 : To collections
@enduml | false | true | false | false | sequence |
d205228c04e2e279f3555c4b2ac0e026264ace0a | 0ff1db84963512b70e74fa06894c61566c6c2ecc | /design/rng_design.puml | 60c12608f11317122573f3f60f3968f624558e9c | [] | no_license | CiaranWelsh/Evogen | 72834796a076281c2f2d7c6b2e521bced4da6c89 | 9c35cb4e5205234b5b4b4d3c09bf9dcc16cefded | refs/heads/master | 2023-01-07T20:11:27.409302 | 2020-11-01T00:55:45 | 2020-11-01T00:55:45 | 293,763,013 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,262 | puml | @startuml
class NetworkComponent {
list[str] ids
}
note left of NetworkComponent {
These are a set of data containers. Their only job
is to store information. There are some common aspects
to all parts of a network. These can go into
this base class, because why repeat outselves.
Subclasses hold the information that will be used
to create a model.
Remember that subclasses
all inherit the ids attribute.
}
class Compartment {
list[float] values
}
class BoundarySpecies {
list[int] compartment_index
list[int] values
}
class FloatingSpecies{
list[int] compartment_index
list[int] values
}
class Reactions {
list[RateLaw] rate_laws
list[int] substrate_indices
list[int] product_indices
list[int] modifier_indices
}
NetworkComponent <|-- Compartment :extends (or inherits from)
NetworkComponent <|-- BoundarySpecies
NetworkComponent <|-- FloatingSpecies
NetworkComponent <|-- Reactions
class RateLaw {
string name
string rate_law
dict roles
unpackRateLaw()
}
note left of RateLaw {
unpackRateLaw is probably the most diffict
bit to understand out of the whole RNG. Its
purpose is to automatically extract all
variable names from a rate law regardless
of the math thats holding them together. We
do this by relying on libsbml to be able to
parse arbitrary math strings.
Its nice to automate this, but a workaround to avoid
the rabbit hole I suspect this might cause you to fall into
could be to just get the user to input the names of the variables
in the math string?
So your RateLaw would have an extra argument, `variables` maybe
uni_uni = RateLaw("uni_uni", "k*A", variables=["A"]
roles = dict(k="parameter", A="substrate", B="product"),
}
class NetworkGenerationOptions {
NetworkGenerationOptions(rate_law_dict)
}
NetworkGenerationOptions <-- RateLaw : Input to
abstract class RNGAbstract{
RNGAbstract(NetworkGenerationOptions)
createCompartments() (abstract)
createFloatingSpecies() (abstract)
createBoundarySpecies()(abstract)
createReactions()(abstract)
generate()
}
RNGAbstract <-- NetworkGenerationOptions : used by
note right of RNGAbstract {
This in an abstract class. I.e. designed to
be extended. Never instantiated itself, only
subclasses are used by end user.
Algorithm is this:
1) randomly select nCompartments
compartments and create a Compartments object
2) randomly select nFloatingSpecies species
and create a FloatingSpecies object
3) randomly select nBoundarySpecies species
and create a BoundarySpecies object
4) Create nReactions reactions and store in
Reactions object. This involves
5) put the network together (generate)
}
class BasicRNG {
createCompartments()
createFloatingSpecies()
createBoundarySpecies()
createReactions()
}
RNGAbstract <|-- BasicRNG
note left of BasicRNG {
This is how we want users to use the class.
//this is a comment
//can be arbitrary length. This is the selection
//of rate laws that can be chosen randomly by the
//algorithm
rate_law_dict = dict(
uni_uni = RateLaw("uni_uni", "k*A",
roles = dict(k="parameter", A="substrate", B="product"),
uni_bi = RateLaw("uni_bi", "k*A",
roles = dict(k="parameter", A="substrate", B="product", C="product")
)
options = RNGOptions(rate_law_dict)
options.setNReactions(3)
// set other things
rng = BasicRNG(options)
rr_model = rng.generate()
many_models = rng.generate(10) #list of models
}
Compartment <-- BasicRNG : Create and\n read from
BoundarySpecies <-- BasicRNG : Create and\n read from
FloatingSpecies <-- BasicRNG : Create and\n read from
Reactions <-- BasicRNG : Create and\n read from
'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 |
e1ac05deae9ea0205e137a0601e6dc81c99c24bd | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/red/1161025/sp1/removeEventSSD.puml | 21ac170be8ce44c9295d11e4ad9a3b504512131b | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 387 | puml | @startuml analysis2.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
User -> Browser : remove event
Browser ->> Server : removeEvent()
database Database
Server -> Database : remove
Server -->> Browser : return
Browser -> Browser : display
@enduml
| false | true | false | false | sequence |
ce78a94d56758526aea253f0601fee953a884aff | 5b7734d8d03eb1feaf235fd9f9f40ed6382d9888 | /exercise46/docs/Exercise46 UML.puml | a59490c385224a9357f6e2e5913253f0e70b61ad | [] | no_license | azoomer2/zommer-a04 | 1252b5b3a35d414c72b65768e21a13d79aa9c5f8 | fc4d94ba17066d25a0f210eb1706e27860fbbfc7 | refs/heads/main | 2023-09-01T01:04:14.961425 | 2021-10-18T16:51:43 | 2021-10-18T16:51:43 | 416,378,327 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 249 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Solution46{
-makePlot(List searchTerms, int count)
}
class fileReader
{
+countEntries(String searchTerm, List list)
-readFile()
+getList()
}
Solution46 --> fileReader
@enduml | false | true | false | false | class |
d5cc6418984bbf1ad9598c240461e29ff3c0bc9b | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/red/1161025/sp2/inviteUserSSD.puml | ccab257351b06f0c3f7caafc965feb0727a999d6 | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 384 | puml | @startuml analysis2.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
User -> Browser : invite user
Browser ->> Server : send invite()
database Database
Server -> Database : save
Server -->> Browser : return
Browser -> Browser : display
@enduml
| false | true | false | false | sequence |
e7b5170a82f2f4390f048e0390ac5be74bffc850 | 2cb0d17b297862de0b2876905bc69fab6a3fda1a | /diagrams/class_diagram/reverse_engineered/user.plantuml | aff4d1daee7c81cbd0cfe67e619734608f1a82d1 | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | julienbenaouda/projectJJA | 507bd714ec752d41ce1ef2f7fd05104390f34e92 | 9063388043b79e68640379cda5f674df62f76213 | refs/heads/master | 2021-04-27T17:28:29.111045 | 2018-06-14T19:29:11 | 2018-06-14T19:29:11 | 122,321,355 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,744 | plantuml | @startuml
title __USER's Class Diagram__\n
package taskman {
package taskman.backend {
package taskman.backend.user {
class Developer {
+ Developer()
+ getUserType()
}
}
}
}
package taskman {
package taskman.backend {
package taskman.backend.user {
class OperationNotPermittedException {
+ OperationNotPermittedException()
}
}
}
}
class WrappedPrintWriter {
- printWriter : PrintWriter
~ WrappedPrintWriter()
~ lock()
~ println()
}
class WrappedPrintStream {
- printStream : PrintStream
~ WrappedPrintStream()
~ lock()
~ println()
}
abstract class PrintStreamOrWriter {
- PrintStreamOrWriter()
{abstract} ~ lock()
{abstract} ~ println()
}
class SentinelHolder {
{static} + STACK_TRACE_ELEMENT_SENTINEL : StackTraceElement
{static} + STACK_TRACE_SENTINEL : StackTraceElement[]
- SentinelHolder()
}
package taskman {
package taskman.backend {
package taskman.backend.user {
class ProjectManager {
+ ProjectManager()
+ getUserType()
}
}
}
}
package taskman {
package taskman.backend {
package taskman.backend.user {
abstract class User {
- name : String
- password : String
+ User()
+ getName()
- setName()
+ getPassword()
- setPassword()
{abstract} + getUserType()
}
}
}
}
package taskman {
package taskman.backend {
package taskman.backend.user {
class UserManager {
- users : List<User>
+ UserManager()
+ getUsers()
+ getUser()
+ hasUser()
+ createUser()
- createDeveloper()
- createProjectManager()
+ removeUser()
+ getUserTypes()
+ getCurrentUser()
- setCurrentUser()
+ hasCurrentUser()
+ login()
+ logout()
}
}
}
}
Developer -up-|> User
OperationNotPermittedException +-down- WrappedPrintWriter
OperationNotPermittedException +-down- WrappedPrintStream
OperationNotPermittedException +-down- PrintStreamOrWriter
OperationNotPermittedException +-down- SentinelHolder
ProjectManager -up-|> User
User -up-|> UserWrapper
UserManager o-- User : currentUser
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 |
7571e71bb8eb1283d4016fff9aadcac706e0eb96 | 00a5b71efb2c440b009c43d9a3c052a51ae1664b | /services/LinkLoss/plantuml/source/normal_disconnection.puml | 8012c9f2901acd082171100e04620e69d137e044 | [
"Apache-2.0"
] | permissive | ARMmbed/mbed-os-experimental-ble-services | abdcb91dc3810de96cdc759292f37d3f3232a9ad | 6db2c601106de94a49465917b7814c0f3c139999 | refs/heads/main | 2023-08-10T17:56:09.928036 | 2021-07-12T20:50:17 | 2021-07-14T10:16:13 | 307,758,956 | 8 | 9 | Apache-2.0 | 2021-07-14T10:16:14 | 2020-10-27T16:17:54 | C++ | UTF-8 | PlantUML | false | false | 637 | puml | @startuml
participant Application as APP
participant LinkLossService as LLS
participant BT_Stack as BTS
participant EventQueue as EQ
== Link Loss Service Constructed ==
LLS <- BTS : onDisconnectionComplete(event)
activate LLS
LLS -> LLS : get_alert_level()
note left
ret: level = HIGH_ALERT or MILD_ALERT
end note
APP <- LLS : on_alert_requested(level)
LLS -> EQ : call_in(t, stop_alert())
note left
t: alert timeout in ms > 0
end note
activate EQ
LLS -> LLS : stop_alert()
note left
Called due to timeout
end note
LLS -> EQ : cancel(x)
note left
0 < x
end note
deactivate EQ
LLS -> APP : on_alert_end()
deactivate LLS
@enduml
| false | true | false | false | sequence |
1e04afb2d3e603a2901a600b09169398f472bbcd | 6f91c40eb1ab052899810ae186f905dfc2bb9da6 | /Week2/Day3-Auth0_OIDC_ACFlow/Authorisation_Code_Flow.plantuml | 1607d22bf7b063cffd1b94f4f8d6990da4332e83 | [] | no_license | SBTurner/Module1 | add3bfc0b7e362b08e108d7ad3aca2f3198f29b8 | ce02855af2ac9aec1e5b426de7d8b76feed68d11 | refs/heads/master | 2023-03-02T11:30:39.253562 | 2021-02-15T14:04:27 | 2021-02-15T14:04:27 | 337,997,283 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 658 | plantuml | @startuml OAuth Authorisation Code Flow
skinparam maxMessageSize 110
skinparam sequenceMessageAlign center
actor User
activate User
User -> App : login (username,pwd)
App -> OAuth : /login(redirect URL)
OAuth -> OAuth : Validate username/pwd
App <-- OAuth : authorisation code
App -> OAuth : /oauth/token (authorisation code)
OAuth -> OAuth : Validate authorisation code
OAuth --> App : accessToken & idToken
App --> App : retrieve profile info
App --> Resource : request(accessToken)
Resource --> Resource: validate accessToken
Resource --> App : response
User <- App : granted access
@enduml | false | true | false | false | usecase |
cbbd2f3fab0531f694285584509db35319f71b81 | 390529a6994db132eebcf31cf5ca4ca160ba0929 | /PlantUML/logic.puml | 60973ff2405e3a34f1ee4ff47ef6d01bd97f61c1 | [
"Apache-2.0"
] | permissive | adamrankin/OpenIGTLinkIO | 673ecb3fb99caf3fae82aafcbc3961b087f59d83 | 9d0b1010be7b92947dbd461dc5298c320dfc00e4 | refs/heads/master | 2021-01-07T15:46:20.466195 | 2019-08-07T14:38:25 | 2019-08-07T14:38:25 | 201,068,719 | 0 | 0 | Apache-2.0 | 2019-08-07T14:38:46 | 2019-08-07T14:38:46 | null | UTF-8 | PlantUML | false | false | 5,198 | puml | @startuml
package "OpenIGTLink" #DDDDDF {
}
package "Device" #DDDDDF {
}
package "LogicPackage" #DDDDDD {
left to right direction
'abstract class vtkObject {
'}
class vtkIGTLIOObject {
+InvokePendingModifiedEvent() : int
+Modified() : void
+SetDisableModifiedEvent() : void
+GetDisableModifiedEvent() : void
#vtkIGTLIOObject()
-DisableModifiedEvent
-ModifiedEventPending
}
class DeviceFactory {
+New() : DeviceFactory
+PrintSelf() : void
+GetCreator() : DeviceCreatorPointer
+GetAvailableDeviceTypes() : std::vector<std::string>
+create() : DevicePointer
-DeviceFactory()
-~DeviceFactory()
-registerCreator(): void
-Creator
}
class CircularBuffer{
+New() : CircularBuffer
+PrintSelf(): void
+GetNumberOfBuffer(): int
+StartPush() : int
+EndPush() :void
+GetPushBuffer(): igtl::MessageBase::Pointer
+StartPull() : int
+EndPull() :void
+GetPullBuffer(): igtl::MessageBase::Pointer
+IsUpdated(): int
#CircularBuffer()
#~CircularBuffer()
#Mutex
#Last
#InPush;
#InUse
#UpdateFlag
#DeviceType
#Size
#Data
}
class Connector{
-NameListType
#Devices
#Name
#UID
#Type
#State
#Persistent
#Thread
#Mutex
#ServerSocket
#Socket
#ThreadID
#ServerPort
#ServerStopFlag
#ServerHostname
#Buffer
#CircularBufferMutex
#RestrictDeviceName
#EventQueue
#EventQueueMutex
#PushOutgoingMessageFlag
#PushOutgoingMessageMutex
#DeviceFactory
#CheckCRC
..events..
ConnectedEvent = 118944
DisconnectedEvent = 118945
ActivatedEvent = 118946
DeactivatedEvent = 118947
NewDeviceEvent = 118949
DeviceContentModifedEvent = 118950
RemovedDeviceEvent = 118951
..
+PeriodicProcess():void
+SendCommand(): CommandDevicePointer
+AddDeviceIfNotPresent(): DevicePointer
+AddDevice(): int
+GetNumberOfDevices(): unsigned int
+RemoveDevice(): void
+RemoveDevice(): int
+DeviceContentModified() : void
+GetDevice(): DevicePointer
+HasDevice(): bool
+SendMessage(): int
+GetDeviceFactory(): DeviceFactoryPointer
+SetDeviceFactory(): void
+New(): Connector
+PrintSelf(): void
+SetName() : void
+GetName() : std::string
+SetUID() :void
+GetUID() :int
+SetServerPort() :void
+GetServerPort() :int
+SetType() : void
+GetType() : int
+SetState() : void
+GetState() : int
+SetRestrictDeviceName() : void
+GetRestrictDeviceName() : int
+SetPushOutgoingMessageFlag() : void
+GetPushOutgoingMessageFlag() : int
+SetPersistent() : void
+GetPersistent() : int
+GetServerHostname() : const char*
+SetServerHostname() : void
+SetTypeServer() : int
+SetTypeClient() : int
+GetCheckCRC() : bool
+SetCheckCRC() : void
+Start() : int
+Stop() : int
-ThreadFunction() : void
-WaitForConnection() : int
-ReceiveController() : int
-SendData() : int
-Skip() : int
-GetUpdatedBuffersList() : unsigned int
-GetCircularBuffer() : CircularBufferPointer
-ImportDataFromCircularBuffer() : void
-ImportEventsFromEventBuffer() : void
-PushOutgoingMessages() : void
-PushNode() : int
#RequestInvokeEvent() : void
#RequestPushOutgoingMessages() : void
#Connector()
#~Connector()
}
class Session{
+SendCommand() : CommandDevicePointer
+SendCommandResponse() : CommandDevicePointer
+SendImage() : ImageDevicePointer
+SendTransform() : TransformDevicePointer
+SendString() : StringDevicePointer
+SendStatus() : StatusDevicePointer
+New() : Session
+PrintSelf() : void
+StartServer() : void
+ConnectToServer() : void
+GetConnector() : ConnectorPointer
+SetConnector() : void
-Session()
-Connector
-waitForConnection() : bool
}
class Logic {
-NewDeviceCallback
-RemovedDeviceCallback
-Connectors
+DeviceEventCallback
..events..
ConnectionAddedEvent = 118980
ConnectionAboutToBeRemovedEvent = 118981
NewDeviceEvent = 118949
DeviceModifiedEvent = 118950
RemovedDeviceEvent = 118951
CommandReceivedEvent = 119001
CommandResponseReceivedEvent = 119002
..
+New() : Logic
+PrintSelf() : void
+CreateConnector() : ConnectorPointer
+RemoveConnector() : int
+GetNumberOfConnectors() : int
+GetConnector() : ConnectorPointer
+StartServer() : SessionPointer
+ConnectToServer() : SessionPointer
+PeriodicProcess() : void
+GetNumberOfDevices() : int
+RemoveDevice() : void
+GetDevice() : DevicePointer
+ConnectorIndexFromDevice() : int
#Logic()
#~Logic()
#onDeviceEventFunc() : void
#onNewDeviceEventFunc() : void
#onRemovedDeviceEventFunc() : void
-CreateUniqueConnectorID() : int
-CreateDeviceList() : std::vector<DevicePointer>
}
}
"OpenIGTLink" <|-- "LogicPackage"
"Device" <|-- "LogicPackage"
"Session" "1" *-- "1" "Connector" :contains
"Connector" "1" *-- "many" "CircularBuffer" :contains
"Connector" "1" *-- "1" "DeviceFactory" :contains
"Logic" "1" *-- "many" "Connector" : contains
"Logic" "1" *-- "many" "Session" : contains
"vtkIGTLIOObject" <|-- "Connector"
' "vtkObject" <|-- "DeviceFactory"
@enduml | false | true | false | false | class |
8fe4b5d7806a3731fec2172c20eacd0d85323bae | 3075b6c51514546942e45db273543621aef99dc2 | /plantUmlDiagrams/Decorator.puml | db2f9aedd3a874fb12d552c7d58087bb05a05244 | [] | no_license | DeclanBU/Design_Patterns_Project | 8192788cd784740e14d55eb14741d7cbad9ca0e5 | 7329048e0ba5ce7b7725f92694ba4a0629f3d9e1 | refs/heads/master | 2020-03-29T00:26:47.891280 | 2018-12-01T23:01:46 | 2018-12-01T23:01:46 | 149,339,795 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,431 | puml | @startuml
abstract class Bicycle {
abstract void setModel(String model);
abstract String getModel();
public abstract int cost();
}
class Bmx extends Bicycle {
private String model;
public Bmx(){
void setModel (String model){
public String getModel () {
public int cost() {
}
class MountainBike extends Bicycle {
private String model;
public MountainBike(){
void setModel (String model){
public String getModel () {
public int cost() {
}
class ExtraTenGears extends ModifiedBicycle{
public String model;
Bicycle bike;
public ExtraTenGears(Bicycle bike){
public void setModel(String model) {
public String getModel(){
return bike.getModel();
public int cost() {
}
class ExtraFiveGears extends ModifiedBicycle {
public String model;
Bicycle bike;
public ExtraFiveGears(Bicycle bike)
public void setModel(String model)
public String getModel(){
return bike.getModel();
public int cost() {
}
abstract class ModifiedBicycle extends Bicycle {
public abstract String getModel();
}
@enduml | false | true | false | false | class |
e4cee4b4b77a96b732f0cab27a80be4a7bd01e6c | 54f0570710d72445f30bc8261595126edc5b67ca | /log_grabber/vjuniper_logfilter.py.class.puml | a1c5bce2eb10f5affd1913fe18954e711d5d70c3 | [] | no_license | deadbok/eal_programming | cab8fc7145b5115f887a7b10aad90880a799d118 | 33bf532b397f21290d6f85631466d90964aab4ad | refs/heads/master | 2021-01-13T15:11:19.276462 | 2017-06-13T09:20:51 | 2017-06-13T09:20:51 | 76,203,290 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 155 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
scale 2
class VJuniperLogFilter{
-__init__()
+filter()
+sort()
}
@enduml | false | true | false | false | class |
8e682cba8276980560ed3d3cc103982973c4aca2 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Operations-Manager/Physical.puml | b1ef4284c12f821fdd6d1fc1f30174ff35c4a8f7 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 443 | puml | @startuml
package "Operations Manager" #lightblue {
interface CLI
interface Web
interface REST
folder C3 #ffffff {
component sailsjs
component sails.io
}
folder bin #ffffff {
component ops
}
folder "ops-manager" #ffffff {
component micro as ommicro
}
}
CLI -- coordinate
coordinate -- REST
Web -- sailsjs
Web -- REST
REST -- sailsjs
Web -- sails.io
REST -- ommicro
@enduml
| false | true | false | false | class |
eee4141df7442d76279173b5f26cea930d57bc10 | 28cc353b960282035a9d030fbc9a1e8ce8491876 | /document/diagrams/usercase/manage/product.puml | 0e0ac2aff82b0aaed73278061877bd63ee3fdd2d | [
"MIT"
] | permissive | hataketsu/PetStore4 | 39b107ab004d16c23076a4d5ab24b81c9bc0d8de | 479b0709e7d9f202b6fa90adf8a6c4a874681fa3 | refs/heads/master | 2020-03-19T17:09:25.162293 | 2019-12-26T16:26:31 | 2019-12-26T16:26:31 | 136,746,560 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 446 | puml | @startuml
Admin -> (Quản lý sản phẩm)
(Tạo sản phẩm mới ) -down-|> (Quản lý sản phẩm)
(Liệt kê sản phẩm) -left-|> (Quản lý sản phẩm)
(Chỉnh sửa sản phẩm) .up.> (Liệt kê sản phẩm) :extends
(Xóa sản phẩm) .up.> (Liệt kê sản phẩm) :extends
(Xem chi tiết sản phẩm) .up.> (Liệt kê sản phẩm) :extends
(Tìm kiếm sản phẩm) .up.> (Liệt kê sản phẩm) :extends
@enduml | false | true | true | false | uml-unknown |
b05ab4eb37ebe86f97880a469f3528a5b45c8541 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/UseCases/Manage-Service-Template/Update-Service-Template.puml | 1e2be138d7bbd38956aea3e3754834996c8712c0 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 279 | puml | @startuml
Actor "actorName" as A
box "Manage-Service-Template" #lightblue
participant CLI as CLI
participant Web as Web
participant "c3" as S
A -> CLI : c3-template-update()
CLI -> S : template/update()
A -> Web : template/update()
Web -> S : template/update()
end box
@enduml
| false | true | false | false | sequence |
9ccdf8849434760971b9f43145dcb38722cecbee | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/GhostWhite.puml | d060538b0ceb6269fe82fb84dd051fc8fb8d1765 | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 319 | puml | @startuml
skinparam ClassBackgroundColor #GhostWhite
skinparam ClassFontColor #GhostWhite
skinparam ClassBorderColor #GhostWhite
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
eff2c5c140dd3763787a9ad2dab7d8b925bf1cbb | 3495a3bc8450a240a21780fb8c795c215f88000a | /docs/UC11-WarnFreelancersAboutPerformance/UC11_CD.puml | f994dce74aa83dfb74763a00b683f9266a9ee269 | [] | no_license | 1190452/LAPR2 | f27ac4e485b91d04189dd0a37551bc108c070b12 | 97c5488c091243cf65f9e16821f56a5020e0ae2e | refs/heads/master | 2023-05-09T02:35:50.850483 | 2020-06-14T21:07:59 | 2020-06-14T21:07:59 | 372,570,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,291 | puml | @startuml
skinparam classAttributeIconSize 0
class WarnAboutFreelancerPerformanceUI{
}
class WarnAboutFreelancerPerformanceController{
+sendEmail()
}
class Platform {
+sendEmail()
}
class RegisterFreelancer {
+getListFreelancers()
+getDelayProb()
}
class Freelancer{
+getTaskList()
}
class TaskList{
+getTaskList()
}
class Task{
+getTexec()
}
class TaskExecution{
+getTaskDelay()
}
class Writer {
+sendEmail(free)
}
WarnAboutFreelancerPerformanceUI ..> WarnAboutFreelancerPerformanceController
WarnAboutFreelancerPerformanceController ..> Platform
WarnAboutFreelancerPerformanceController ..> RegisterFreelancer
WarnAboutFreelancerPerformanceController ..> Freelancer
WarnAboutFreelancerPerformanceController ..> TaskList
WarnAboutFreelancerPerformanceController ..> Task
WarnAboutFreelancerPerformanceController ..> TaskExecution
WarnAboutFreelancerPerformanceController ..> Writer
Platform "1"-- "1" RegisterFreelancer: has
Platform "1"-- "1" Writer: has
RegisterFreelancer "1" -- "*" Freelancer: has
Task "1" -- "1" Freelancer: made by
Freelancer "1" -- "1" Writer: receives email from
TaskList "1" -- "*" Task: has
Task "1" -- "1" TaskExecution : has
TaskExecution "1" -- "1" Freelancer: related to the work of
@enduml | false | true | false | false | class |
1a6c87585dd91f28d202a6ab6fd64ab4dc855259 | 042ce5c98b1adfc963c1f166bbe5823a6e67a9fa | /docs/class-diagram-uc8.plantuml | 649f5d3f27ea6dbc8bf61da5be854ff21e47921c | [] | no_license | Phoenix1355/I4PRJ4-Web | 2ef52a859f70b1914cfe81699e63c5633cb6b38a | 479dfa2caae9c6f00a8135c7c7c90f1e40e5027a | refs/heads/master | 2021-07-04T17:55:28.686958 | 2019-05-21T08:35:56 | 2019-05-21T08:35:56 | 171,445,702 | 2 | 0 | null | 2020-09-04T10:17:00 | 2019-02-19T09:33:09 | Vue | UTF-8 | PlantUML | false | false | 900 | plantuml | @startuml UC8-Logout
skinparam shadowing false
skinparam classAttributeIconSize 0
skinparam monochrome true
skinparam backgroundColor transparent
skinparam style strictuml
package Nuxt {
class $router <<domain>> {
+ currentRoute
--
+ push(path) : void
}
class $store <<domain>> {
+ state : object
--
+ commit(type, payload, options) : Promise
+ dispatch(type, payload) : Promise
}
}
class header <<controller>> {
--
- logout() : void
}
header-->$store
class auth <<domain>> {
+ token : string <<get, set>>
+ user : object <<get, set>>
--
+ logout() : void <<action>>
+ AuthToken(state, token) : void <<mutation>>
+ AuthUser(state, info) : void <<mutation>>
}
$store ---> auth
auth --> $router
class localStorage <<boundary>> {
--
+ clear() : void
}
auth --> localStorage
@enduml
| false | true | false | false | class |
e5e25f6f053aef248bcd10c5e728860749d24765 | 19f793bed6a7ddbe4f01616e2374a9ddc459e8b1 | /doc/创建型模式/原型模式-类图(3分).puml | aa953e07e5cad97164300749e0d84400ba84e94d | [] | no_license | 1wang1/design-patterns | 02a87e8c2f170f2a2de4993e8f11b9ef9a522627 | 5ebd98248ea5a035e19a843f823971676899a212 | refs/heads/master | 2022-12-19T04:30:30.790952 | 2020-09-27T11:42:41 | 2020-09-27T11:42:41 | 272,214,620 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 771 | puml | @startuml
package shape{
class Shape{
+ clone():Object
}
class Circle{
+ clone():Object
}
class Rectangle{
+ clone():Object
}
class Square{
+ clone():Object
}
Circle --|> Shape
Rectangle --|> Shape
Square --|> Shape
}
class Client{
+ main():void
}
class ShapeCache{
-shapeMap:HashMap
+getShape(String shape):Shape
+loadCache():void
}
Client..>ShapeCache
ShapeCache ..> shape:clone
note as NloadCache
loadCache:
shapeMap.put('Circle',new Circle())
shapeMap.put('Rectangle',new Rectangle())
shapeMap.put('Square',new Square())
end note
NloadCache--ShapeCache
note as NgetShape
getShape(String shape):
shapeMap.get('Circle').clone
shapeMap.get('Rectangle').clone
shapeMap.get('Square').clone
end note
NgetShape--ShapeCache
@enduml | false | true | false | false | class |
7a3ebc9c9df078868edbfa5148347a7295d2b5bd | 0866ffad95993d25d5ad7dbeaa60943814c985bf | /src/main/java/UML/sekvensdiagramShopPage.puml | c37d19f18f175fa21c25af920229298b2258ac71 | [] | no_license | NikolajX4000/CupCakeWebShop | 3e694d7972d5df4aa82dee9213821542bb3581cf | 6b3a15dcb6e70f16d36bd22bf4f5a996ab19cbd7 | refs/heads/master | 2021-01-25T09:43:35.820659 | 2018-04-05T21:32:55 | 2018-04-05T21:32:55 | 123,307,571 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 762 | puml | @startuml
title "Shop page - Sequence Diagram"
skinparam shadowing false
actor User
boundary "shopPage.jsp" as SP
boundary "userSpecificOrderPage.jsp" as IN
participant "shopPage.java" as SC
participant "DAO" as DAO
database "Database" as DB
group Add to cart
User -> SP : Input cupcake
SP -> SC : Add to cart
SC -> SC : Update cart
SC -> SP : Shopping cart
SP -> User : Show cart
end
group Update cart
User -> SP : Update cupcake
SP -> SC : Update cart
SC -> SC : Update cart
SC -> SP : Shopping cart
SP -> User : Show cart
end
group Chech out
User -> SP : Check out
SP -> SC : Check out
SC -> DAO : Shopping cart
DAO -> DB : Execute query
DB -> DAO : Result set
DAO -> SC : Invoice id
SC -> IN : Redirect to invoice
IN -> User : Show Order
end
@enduml | false | true | false | false | sequence |
d76fdeb8707e0925e2f2c3a5099a4752172811ce | af4761e34df2036a7b519bc492f96197d351e727 | /src/_diagrams/downtime_migrations.plantuml | e1c4e754e774159b99ae1dbacb42bf62382b07dd | [] | no_license | ylansegal/blog | f92da9bb1ad65c95d6dd3a1e3cff78efcc5b250b | 32cb9d5c3ee47f8b0ca4c369853bc5088926ee1d | refs/heads/master | 2023-08-16T17:58:22.354548 | 2023-08-12T20:02:53 | 2023-08-12T20:02:53 | 5,498,384 | 0 | 0 | null | 2022-12-26T21:05:40 | 2012-08-21T17:23:05 | HTML | UTF-8 | PlantUML | false | false | 297 | plantuml | @startuml
Title Downtime Deployment - Timing Diagram
hide time-axis
concise "Code Version" as code
concise "Database Schema State" as state
scale 10 as 200 pixels
code is "V0"
state is "S0"
@code
10 is {hidden}
20 is "V1"
code@10 <-> @20 : downtime
@state
10 is "S0 -> S1"
20 is "S1"
@enduml
| false | true | false | false | sequence |
3a68f1c718f1c2e7b1100c75cfdbfd0d6f6c4571 | 81df60c226e8c63ae64cd18c85ff54c3f608d01d | /UML/conection.puml | 65bf20bb0cbb890ddcb698c99ccc62abbda2f5fe | [] | no_license | kenchi-san/blog-pro | 18e974b855613e4841e631e3fc5ede32679ec859 | 02ca62ab553dd1c04a54d91dd3fecdd37006347e | refs/heads/master | 2023-02-12T00:14:23.721040 | 2021-01-13T00:32:54 | 2021-01-13T00:32:54 | 278,068,036 | 0 | 0 | null | 2020-11-22T20:45:10 | 2020-07-08T11:13:28 | TSQL | UTF-8 | PlantUML | false | false | 482 | puml | @startuml
title Sequence : Se connecter
actor Utilisateur as U
participant Application as A
participant SGBD as bdd
U->A : seConnecter(login,mdp)
activate A
A->bdd : verifierExistance(login)
activate bdd
alt login exist
bdd->A : user
A->A : checkPassword(user,mdp)
alt valid password
A->U: ok
else invalid password
A->U: invalidPassword
end
else invalid login
bdd->A : null
deactivate bdd
A->U: invalidLogin
deactivate A
end
@enduml | false | true | false | false | usecase |
fcad7f3d89de8d39dfc4da188914e170a1e783d7 | 268b9bb5916c81e53174145350804e72dc208ef8 | /src/main/java/ex46/ex46uml.puml | 7d0e2b64890de94de4f884775f65bc534056b5c9 | [] | no_license | theolinardic/Linardic-cop3330-Assignment3 | 4f98171c6cf90cf02064af8ad8ebde6388778242 | 718c7397dc6bf1da6c0bcaf1e7bb4dbe352936a5 | refs/heads/master | 2023-05-30T02:03:14.731736 | 2021-06-20T20:26:07 | 2021-06-20T20:26:07 | 378,733,689 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 149 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class app
abstract main
abstract processFile
main <|-- app
processFile <|-- main
@enduml | false | true | false | false | class |
27efdfcedec6d7728161f1d01e9c02624319076f | 77b62d62f7bb492cb0ba2fe62131338b495f3e52 | /Documents/Shos.Chatter.Server/Models/ChatterContext.puml | b5b9b1a0318ba20850931960fd141f25dd287ace | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter | 0dc94cda60eab49363b1b04b1e189d014edf5852 | 41a95faba18049f3934b5b4d1268583ee43abc35 | refs/heads/master | 2023-03-17T23:26:10.709285 | 2021-03-11T05:37:09 | 2021-03-11T05:37:09 | 323,569,958 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 703 | puml | @startuml
class User {
+ Id : int <<get>> <<set>>
+ Name : string <<get>> <<set>> = ""
+ HasDeleted : bool <<get>> <<set>> = false
+ <<virtual>> Chats : ICollection<Chat>? <<get>> <<set>>
}
class Chat {
+ Id : int <<get>> <<set>>
+ Message : string <<get>> <<set>> = ""
+ UserId : int <<get>> <<set>>
+ <<virtual>> User : User? <<get>> <<set>>
}
class ChatterContext {
+ ChatterContext(options:DbContextOptions)
+ <<virtual>> Users : DbSet<User>? <<get>> <<set>>
+ <<virtual>> Chats : DbSet<Chat>? <<get>> <<set>>
}
User --> "InsertDateTime" DateTime
Chat --> "InsertDateTime" DateTime
Chat --> "UpdateDateTime" DateTime
DbContext <|-- ChatterContext
@enduml
| false | true | false | false | class |
932cf58d5cc8fced517d2e651bbcf548b6b4a8de | ea1c235d799a63eb2ad7fab3a262b51199ab1c96 | /src/main/java/com/designpatterns/graph/pattern/struct/bridge/Bridge.puml | ae80c676ed99792be615cfcd2c279a7aa900da86 | [] | no_license | violet-Bin/designpatterns | f286a9f4b18674acc1f095a440b104402c5f9edc | fb73bc8f033a3248ef41c17874ccea13c439120a | refs/heads/master | 2022-07-13T02:43:34.134498 | 2021-11-25T16:25:42 | 2021-11-25T16:25:42 | 174,949,082 | 1 | 0 | null | 2022-06-17T03:35:02 | 2019-03-11T07:39:12 | Java | UTF-8 | PlantUML | false | false | 341 | puml | @startuml
interface Brand
class Huawei
class Xiaomi
abstract Phone
class BigPhone
class SmallPhone
class Client
Phone <|-- BigPhone
Phone <|-- SmallPhone
Brand <|.. Huawei
Brand <|.. Xiaomi
Phone o-- Brand
Client ..> Phone
Client ..> Brand
Phone : #brand:Brand
Phone : +toCall(brand: Brand):void
Brand : +call(msg: String):void
@enduml | false | true | false | false | class |
c65013ce4afbeff86e3e779863fb1769574590f9 | f769822cb51c5997fb6fd11cd7624d3d8385907f | /documents/uml/Domainmodel.puml | e61fc8791a831a438ce045a04b4c9a067f2e3986 | [
"MIT"
] | permissive | Raffy23/sepm_ss17_einzel | c3b31154a6c157029d4f06dff1961ec41c192fad | bf0e4cc75cafc2323020b5f54654944598379886 | refs/heads/master | 2021-09-20T04:16:56.082718 | 2018-08-03T13:40:32 | 2018-08-03T13:40:32 | 84,410,921 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
skinparam monochrome true
' skinparam backgroundColor transparent
skinparam classBackgroundColor transparent
' skinparam style strictuml
skinparam nodesep 80
skinparam ranksep 90
hide circle
hide members
Box "*" -- "1" Rechnung
Box "1 " *-- "1 " Foto
Reservierung "1" -- "*" Kunde
Reservierung "1" -- "*" Rechnung
Reservierung "1" -- "*" Pferd
@enduml | false | true | false | false | class |
4639185accaf644fa0b13b1a4a962dab3f2b3322 | 9738913f772d31eaa10b06e9771ea813a1d99b5f | /src/test/java/com/miss/artificial_city/artificial_city.plantuml | b92c1197eebec7689ab44a5f6c0386f9bf239298 | [] | no_license | Ferdudas97/artificial_city | 0b04f65d72b4ce997303116b15184e0004997f21 | 9945be63ca08137c4fd2c18b649fd152fbea25d5 | refs/heads/master | 2020-04-07T21:49:43.164094 | 2019-01-22T08:42:06 | 2019-01-22T08:42:06 | 158,742,335 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 374 | plantuml | @startuml
title __ARTIFICIAL_CITY's Class Diagram__\n
package com.miss.artificial_city {
class ArtificialCityApplicationTests {
+ contextLoads()
}
}
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 |
77aa0b4b495fb1cc33596bf3582fa6b8a8e434c3 | d975ba90a37d227caa0f1b7a6c9702356c6fd903 | /uml/libapgqt/Snapshot.iuml | f139c072f633ef83c6a3b24c6a491b2adce3325c | [] | no_license | MinhNghiaD/Airplug-ClearPath | 2beea0ff94574e19251700202862f25d3003c266 | da5625da3744254a95fa30f395d11c8f7f7863ea | refs/heads/master | 2022-11-12T17:13:37.167323 | 2020-06-17T06:35:10 | 2020-06-17T06:35:10 | 255,916,966 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,679 | iuml | @startuml(id=snapshotLaiyang)
' ==== LaiYangSnapshot ====
class Airplug::LaiYangSnapshot {
+explicit LaiYangSnapshot()
+~LaiYangSnapshot()
==FUNCTIONS==
+void setNbOfApp(int)
+void setNbOfNeighbor(int)
+void callElection()
+void init()
+void colorMessage(QJsonObject&, int)
+bool getColor(QJsonObject&)
+bool processStateMessage(ACLMessage&, bool)
+bool processPrePostMessage(const ACLMessage&)
+ACLMessage encodePrepostMessage(const ACLMessage&)
+void finishSnapshot()
+bool processRecoveringMessage(const ACLMessage&)
+bool processReadyMessage(const ACLMessage&)
-void requestSnapShot()
-void saveSnapshot() const
==SIGNALS==
+void signalRequestSnapshot(const Message&)
+void signalSendSnapshotMessage(ACLMessage&)
+void signalRequestElection()
+void signalFinishElection()
==ATTRIBUTES==
-class Private
-Private* d
}
class LaiYangSnapshot::Private {
+Private()
+~Private()
==FUNCTIONS==
+bool validateState(const QJsonObject&) const
+bool collectState(const QJsonObject&)
+bool verifyPrepost(const QJsonObject&, const QString&) const
+bool allStateColltected() const
+bool allPrepostCollected() const
+int nbCollectedPrepost() const
==ATTRIBUTES==
+Status status
+bool initiator
+int msgCounter
+int nbWaitPrepost
+int nbApp
+int nbNeighbor
+int nbReadyNeighbor
+QHash<QString, QJsonObject> states
+QHash<QString, QVector<QJsonObject>> prepostMessage
}
enum LaiYangSnapshot::Status {
READY = 0
RECORDED
RECOVERING
}
@enduml
@startuml(id=snapshotLinks)
namespace Airplug {
LaiYangSnapshot *-- LaiYangSnapshot::Private
LaiYangSnapshot o-- LaiYangSnapshot::Status
}
@enduml
| false | true | false | false | class |
daf53f7f319690c915a7b8564c7bbc2743158cbd | 487fe3499dd9b1480c42067416409603f311fe29 | /src/gui/gui.plantuml | 46f865c870b7fb6618392f395e93a6b14457aead | [] | no_license | ddoox/PO_EventsManagement_Project | 44dcad7e87ee61f0ce42c784c402d194cedffb39 | c8ad7e8148f75222e86cb9b719742c34f9a38a38 | refs/heads/master | 2022-07-27T00:16:35.673257 | 2020-05-18T16:00:09 | 2020-05-18T16:00:09 | 264,986,558 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,631 | plantuml | @startuml
title __GUI's Class Diagram__\n
package gui {
class bilet {
- tymczasowe : String
+ bilet_form : JPanel
- imie_textField1 : JTextField
- nazwisko_textField2 : JTextField
- wydarzenie_comboBox1 : JComboBox
- typbiletu_comboBox2 : JComboBox
- kupBiletButton : JButton
- wiek_textField1 : JTextField
+ komunikat_textField1 : JTextField
+ bilet()
- refreshBilet()
- createUIComponents()
+ save()
}
}
package gui {
class organizator_events {
- log : String
- pass : String
- parent : JFrame
- tymczasowyWybor : String
+ panel1 : JPanel
- Economy_progressBar1 : JProgressBar
- Regular_progressBar2 : JProgressBar
- VIP_progressBar3 : JProgressBar
- Zysk_textField1 : JTextField
- events_comboBox1 : JComboBox
- odświeżButton : JButton
- utwórzWydarzenieButton : JButton
- witaj : JLabel
- calkowityZysk_textField1 : JTextField
- usuńWydarzenieButton : JButton
+ organizator_events()
- createUIComponents()
- refresh()
- delete()
+ inform()
}
}
package gui {
class organizator_form {
- log : String
- pass : String
- parent : JFrame
+ panel1 : JPanel
- cenapodstawowa_textField2 : JTextField
- VIP_textField6 : JTextField
- Regular_textField7 : JTextField
- Econowmy_textField8 : JTextField
- typZespol_textField11 : JTextField
- nazwaWydarzenie_textField1 : JTextField
- typSali_comboBox2 : JComboBox
- pow_textField3 : JTextField
- Ramka : JPanel
- nazwaSali_textField4 : JTextField
- zapiszButton : JButton
- nazwaZespol_textField5 : JTextField
- cenaZespol_textField9 : JTextField
- lokalizacja_textField10 : JTextField
- data_textField1 : JTextField
- godzina_textField1 : JTextField
- takNieCheckBox : JCheckBox
+ organizator_form()
- createUIComponents()
}
}
package gui {
class organizator_login {
+ panel1 : JPanel
- textField1 : JTextField
- passwordField1 : JPasswordField
+ loginButton : JButton
- registerButton : JButton
+ organizator_login()
- createUIComponents()
}
}
package gui {
class witamyGUI {
+ panel1 : JPanel
- wejdźButton : JButton
- klientRadioButton : JRadioButton
- organizatorRadioButton : JRadioButton
+ witamyGUI()
{static} + main()
}
}
bilet o-- Wydarzenie : wydarzenie
bilet o-- ListaOrganizatorów : listaOrganizatorów
bilet o-- Organizator : organizator
organizator_events -up-|> Obserwator
organizator_events o-- Organizator : organizator
organizator_events o-- ListaOrganizatorów : lista
organizator_events o-- Zespół : zespol
organizator_events o-- Sala : sala
organizator_events o-- Obserwator : obserwator
organizator_form o-- Organizator : organizator
organizator_form o-- Wydarzenie : wydarzenie
organizator_form o-- Sala : sala
organizator_form o-- Zespół : zespół
organizator_form o-- ListaOrganizatorów : lista
organizator_login o-- ListaOrganizatorów : lista
witamyGUI o-- ListaOrganizatorów : lista
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 | true | false | class |
286c3f23f43a00ffe08fedddda43b239304d96d2 | 75732426f13d523ab1c7be7bee23c2152eb9a77c | /documents/diagrams/services_register_service_seq.puml | b7b35e6b411addd87349cef0259c855418afde21 | [
"Apache-2.0",
"BSD-3-Clause",
"MIT"
] | permissive | apache/celix | 841da4d364432bff49c796f908d64090cec1d759 | 28118976b802f421f4789ece0c15e791f542712f | refs/heads/master | 2023-09-04T22:17:43.815664 | 2023-09-04T01:22:00 | 2023-09-04T01:22:00 | 22,781,134 | 158 | 114 | Apache-2.0 | 2023-09-12T01:22:30 | 2014-08-09T07:00:07 | C | UTF-8 | PlantUML | false | false | 1,492 | puml | Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@startuml
actor Bundle
control celix_event_thread
Bundle -> celix_bundle_context_t ++: celix_bundleContext_registerService
celix_bundle_context_t -> celix_framework_t ++: celix_framework_registerServiceAsync
celix_framework_t -> celix_service_registry_t ++: celix_serviceRegistry_nextSvcId
return
celix_framework_t -> celix_framework_t
note right: Add new celix_framework_event_t to the event queue
return
celix_bundle_context_t -> celix_framework_t ++: celix_framework_waitForAsyncRegistration
note right: blocks until service registration
celix_event_thread -> celix_framework_t ++: fw_handleEventRequest
celix_framework_t -> celix_service_registry_t ++: celix_serviceRegistry_registerService
return
return
return
return
@enduml
| false | true | false | false | usecase |
f3e11ccbd6788360d2acd4d585a61af9d32d8464 | e6a585dfa5292761773d2d523832eef2b49e8e9d | /docs/diagrams/deleteSequence.plantuml | 36b17c62416450e4f5e8a23d70d4b2895367acbd | [] | no_license | AY2021S2-CS2113T-F08-3/tp | 82d8b49f18290b6e0d37f1aaa77b711455ace50f | 27db5d4a86be5478fc4e8258997fb8c83257cec6 | refs/heads/master | 2023-04-14T04:07:25.089995 | 2021-04-12T16:53:53 | 2021-04-12T16:53:53 | 344,644,739 | 0 | 4 | null | 2021-04-12T15:56:05 | 2021-03-05T00:12:02 | Java | UTF-8 | PlantUML | false | false | 1,391 | plantuml | @startuml Delete_Sequence_Diagram
!define LIGHTBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
skinparam style strictuml
participant Ui #Turquoise
participant Parser #PaleGreen
participant Commands #PaleGreen
participant ReviewList #Gold
participant RecommendationList #Gold
activate Ui #Turquoise
Ui -> Parser : determineCommand()
activate Parser #PaleGreen
Parser -> Commands : delete()
activate Commands #PaleGreen
alt isReviewMode
Commands -> ReviewList : deleteReview(title)
activate ReviewList #Gold
alt missing title
ReviewList --> Ui : missing title
else review does not exist
ReviewList --> Ui : invalid title
else review exists
ReviewList -> ReviewList : remove review
end
ReviewList --> Commands
deactivate ReviewList
else !isReviewMode
Commands -> RecommendationList : deleteRecommendation()
activate RecommendationList #Gold
alt missing title
RecommendationList --> Ui : missing title
else recommendation does not exist
RecommendationList --> Ui : invalid title
else recommendation exists
RecommendationList -> RecommendationList : remove recommendation
end
RecommendationList --> Commands
deactivate RecommendationList
end
Commands --> Parser
deactivate Commands
Parser --> Ui
deactivate Parser
@enduml | false | true | false | false | sequence |
9ae67f0c4a1778a34fe7f5402a82e88bad2a7b5a | 91fceecc2c8cf6309741e0fb715cec95f8558ca8 | /assets/dp-strategy.plantuml | 48ccda386d757501dc15438343f18decf1ea2ad4 | [
"MIT"
] | permissive | ohm-softa/ohm-softa.github.io | dd8b3fbbcce62d3625603376f0771ab62557d76a | 7479445d2b5598a9aaaa4f37ffd76436fc81482e | refs/heads/master | 2023-07-20T07:43:25.665737 | 2023-07-12T08:10:32 | 2023-07-12T08:10:32 | 170,150,460 | 20 | 42 | MIT | 2023-06-24T15:22:55 | 2019-02-11T15:16:01 | HTML | UTF-8 | PlantUML | false | false | 314 | plantuml | @startuml
skinparam linetype ortho
class Context
interface Strategy {
+ algorithm()
}
Context o--> Strategy
class ConcreteStrategyA implements Strategy {
+ algorithm()
}
class ConcreteStrategyC implements Strategy {
+ algorithm()
}
class ConcreteStrategyB implements Strategy {
+ algorithm()
}
@enduml
| false | true | false | false | class |
66b1577c5e6f156f7504bf7e04d9de241224d6bc | ba79765ee5ce3a4adf24fdc942ad66f2c43bb763 | /Population system.puml | 27a8c4e526d850e185cbf634132069dfdb993a60 | [
"Apache-2.0"
] | permissive | kaciyn/SEMGroupProject | c6729282991a6c8c6ff8a884eff99d962d8d1832 | 370aa6c3210dfcb99c12ff1c1bc4bc10acc5aa59 | refs/heads/master | 2021-06-24T13:06:08.470157 | 2019-05-14T14:55:50 | 2019-05-14T14:55:50 | 167,873,513 | 0 | 0 | Apache-2.0 | 2021-01-01T01:46:28 | 2019-01-28T00:07:20 | Java | UTF-8 | PlantUML | false | false | 401 | puml | @startuml
actor User as "Member"
rectangle Database
rectangle "Population System" {
usecase UC5 as "Continent/Region/Country"
usecase UC4 as "Overall Population"
usecase UCa as "Population living in cities in %"
usecase UCb as "population not living in cities in %"
User - UC5
UC4 ..> UCa : include
UC4 ..> UCb : include
UC4 - Database
UC5 ..> UC4
@enduml | false | true | false | false | usecase |
4eda341fc00ff31595be9f57ff55429f4c6b4012 | b07be2fd1f05f013b1e155e896008df155c64ea1 | /docs/use-case.puml | d2ee93b55c9485098c678b72cf33373d2aa05f18 | [
"Apache-2.0"
] | permissive | mverburg/toggl4taskwarrior | 4456e8bd87b395d665d8d977621695b4480ebc45 | adaad3cf4eea6533987d632ccdcd52eb5c935ff4 | refs/heads/master | 2023-07-06T11:11:30.618000 | 2021-08-06T13:16:05 | 2021-08-06T13:16:05 | 260,880,754 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 96 | puml | @startuml use cases
user --> (start task)
user --> (stop task)
user --> (rename project)
@enduml | false | true | false | false | uml-unknown |
36690bd4c602e5577a91b008edc3ab35f9b4a93b | ae18f3805c2044dd28acb0e54142ffa3a213decf | /templatemethod/class.puml | 128eb7559cf7d8ca6e9b3e44dfc24ee5fad534b4 | [] | no_license | GochenRyan/DesignPatternsInPython | c125bff53b4edc73cba0eef4ed4408033ff28711 | 47103f46d9b803c0f53902e83daf7b7be032903b | refs/heads/main | 2023-06-05T12:40:40.219251 | 2021-06-21T16:48:52 | 2021-06-21T16:49:05 | 366,058,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 310 | puml | @startuml
class CAbstract{
primitiveOperation1()
primitiveOperation2()
TemplateMethod()
}
class CConcreteA{
primitiveOperation1()
primitiveOperation2()
}
class CConcreteB{
primitiveOperation1()
primitiveOperation2()
}
CAbstract <|-- CConcreteA
CAbstract <|-- CConcreteB
@enduml | false | true | false | false | class |
165419725bf2193dd2f996f789f569b1265c8196 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetReturnItemCustomFieldAction.puml | 7252fc4a87886d9a8c9f3cf970f75f28ee2fef31 | [] | 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 | 570 | 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 StagedOrderSetReturnItemCustomFieldAction [[StagedOrderSetReturnItemCustomFieldAction.svg]] extends StagedOrderUpdateAction {
action: String
returnItemId: String
returnItemKey: String
name: String
value: [[Object.svg Object]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
5d743f134d6fbc85ded77d83c60125260ccbd9f7 | e5a780ec09b8d48b031307829c8b54a6c179c2c9 | /docs/diagrams/lobby_flow.puml | b5aad3f4b607939c697169ea5e75f1decfccc75c | [] | no_license | vpogorelovmapr/websocket-lobby-service | 870bb508c1a2b9d190ef04556907667495e67621 | 23e9a1be986bacdf3841f00a4c3cbb21bcc4c861 | refs/heads/develop | 2022-07-24T23:29:15.023454 | 2019-06-18T14:14:07 | 2019-06-18T14:14:07 | 193,068,382 | 0 | 0 | null | 2022-06-21T01:19:31 | 2019-06-21T09:14:52 | Java | UTF-8 | PlantUML | false | false | 9,283 | puml | @startuml cooperations
title
Sequence Diagram for lobby service flow
end title
legend
<u>User</u>: WePlay user
<u>Tournament service</u>: Tournament service
<u>Gateway</u>: Websocket api gateway
<u>WSS</u>: Websocket streaming service
<u>Lobby service</u>: Websocket lobby service
<u>RabbitMQ</u>: Messaging broker
<u>Redis</u>: Redis key-value storage
end legend
participant "Browser" as b
participant "Tournament service" as tm
participant "Gateway" as g
participant "WSS" as wss
participant "Lobby service" as l
participant "RabbitMQ" as rmq
database "Redis" as r
...
autonumber
tm -> tm: Lobby creation
tm -> rmq: Send lobby creation event
l <-- rmq: Receive lobby creation event
activate l
l -> l: Validate lobby event
l -> r: Persist lobby event
l -> rmq: Send lobby confirmation event to "tournament_events_<env>" queue
tm <-- rmq: Receive lobby confirmation event from "tournament_events_<env>" queue
activate tm
deactivate tm
l -> rmq: Send invitations to "private" queue
note right of l
""{ ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": "{LOBBY_ID}", ""
"" "attributes": { ""
"" "status": "UPCOMING", ""
"" "start_datetime": "{ISO_DATETIME}" ""
"" } ""
"" } ""
""} ""
end note
wss <-- rmq: Receive invitations from "private" queue
activate wss
wss --> b: Send invitation to users
deactivate wss
loop Wait 120 seconds till all members are connected to lobby
activate b
b -> wss: Send "MatchMember" events
note right of b
""{ ""
"" "data": { ""
"" "type": "MatchMember", ""
"" "id": {MEMBER_ID}, ""
"" "attributes": { ""
"" "status": "ONLINE" ""
"" }, ""
"" "relationships": { ""
"" "lobby": { ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": {LOBBY_ID} ""
"" } ""
"" } ""
"" } ""
"" } ""
""} ""
end note
deactivate b
activate wss
wss -> rmq: Send "MatchMember" event to "lobby_in_<env>" queue
deactivate wss
l <-- rmq: Receive 'MatchMember' event from "lobby_in_<env> queue"
l -> r: Update lobby entity with new online user
end
alt all members are present
l -> rmq: Send 'MatchStartedEvent' to "lobby_out_<env>" and "tournament_events_<env>"
note right of l
""{ ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": "{LOBBY_ID}", ""
"" "attributes": { ""
"" "status": "ONGOING" ""
"" } ""
"" } ""
""} ""
end note
l -> l: Start voting
else
l -> rmq: Send 'MatchCanceledEvent' event to "lobby_out_<env>" and "tournament_events_<env>" queues
note right of l
""{ ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": "{LOBBY_ID}", ""
"" "attributes": { ""
"" "status": "CANCELED" ""
"" } ""
"" } ""
""} ""
end note
end
wss <-- rmq: Receive 'MatchStartedEvent' or 'MatchCanceledEvent' event from "lobby_out_<env>" queue
activate wss
wss --> b: Send 'MatchStartedEvent' or 'MatchCanceledEvent' event to users
activate b
deactivate wss
tm <-- rmq: Receive 'MatchStartedEvent' or 'MatchCanceledEvent' event from "tournament_events_<env>" queue
activate tm
deactivate tm
loop every 15 seconds till voting ends
b -> wss: Send VoteEvent event
note right of b
""{ ""
"" "data": { ""
"" "type": "LobbyMap", ""
"" "id": {LOBBY_MAP_ID}, ""
"" "relationships": { ""
"" "map": { ""
"" "data": { ""
"" "type": "VoteItem", ""
"" "id": {CARD_ID} ""
"" } ""
"" }, ""
"" "lobby": { ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": {LOBBY_ID} ""
"" } ""
"" } ""
"" } ""
"" } ""
""} ""
end note
activate wss
wss -> rmq: Send VoteEvent event to "lobby_in_<env>" queue
l <-- rmq: Receive 'VoteEvent' event from "lobby_in_<env>" queue
l -> l: Validate vote item
l -> r: Update lobby entity with new vote item
alt User skipped his turn to vote
l -> l: Choose random card id
end
l -> rmq: Sent 'VoteEvent' event to "lobby_out_<env>" and "tournament_events_<env>" queues
wss <-- rmq: Receive 'VoteEvent' event from "lobby_out_<env>" queue
wss --> b: Send 'VoteEvent' event to users via websockets
deactivate wss
tm <-- rmq: Receive VoteEvent event from "tournament_events_<env>" queue
activate tm
deactivate tm
end
l -> rmq: Send 'MatchEndedEvent' event to "lobby_out_<env>" and "tournament_events_<env>" queues
note right of l
""{ ""
"" "data": { ""
"" "type": "Lobby", ""
"" "id": "{LOBBY_ID}", ""
"" "attributes": { ""
"" "status": "ENDED" ""
"" } ""
"" } ""
""} ""
end note
wss <-- rmq: Receive 'MatchEndedEvent' event from "lobby_out_<env>" queue
activate wss
wss --> b: Send 'MatchEndedEvent' event to users via websockets
deactivate wss
tm <-- rmq: Receive 'MatchEndedEvent' event from "tournament_events_<env>" queue
activate tm
deactivate tm
deactivate b
deactivate l
@enduml
| false | true | false | false | sequence |
1d5df0ae2058d2e154cd3209fe255defa6b47414 | 2dcdd926f9be227228d004fd56821e1bb06231db | /TD2.1.plantuml | 1c97c76cf65c42892a60fe24172e04f118bb58e3 | [
"MIT"
] | permissive | IUT-Blagnac/bcoo-Laurian-Dufrechou | cba6b9fe464a807a7e9f5798998c4df1fb51dbd7 | 36c0311cf21c29a5be2cc11a84b0db9974637629 | refs/heads/main | 2023-04-05T11:32:08.954076 | 2021-04-06T07:53:03 | 2021-04-06T07:53:03 | 337,647,380 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 276 | plantuml |
@startuml
class concours
{
classement
ville
date
}
class race
class chien
{
race
nom
dateNaissance
sexe
}
class proprietaire
{
adresse
nom
datePossession
}
proprietaire "1" -- "10" chien : possede
chien "1" -- "10" concours : participer
@enduml
| false | true | false | false | class |
c10010849381fbe0da9f3fd06e04eff3adaaf638 | 9b97649137eb308e83c86f20a537e84e3bac42e5 | /src/main/diagramas_puml/EstadosCanje.puml | 5c5207d12a6721d808f1b4026a46c7415fe6a457 | [
"MIT"
] | permissive | juanireil/algo3_tp2 | 3c8c2f724bbc4ea02f48ddcd358f1f758960fdbf | 199b47b4194222ecad2933e76695e5b2f295a1db | refs/heads/master | 2023-07-14T17:24:56.069727 | 2021-09-01T22:48:38 | 2021-09-01T22:48:38 | 382,445,125 | 0 | 0 | MIT | 2021-09-01T22:48:39 | 2021-07-02T19:35:17 | Java | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
[*] --> PrimerCanje
PrimerCanje --> SegundoCanje : actualizarCanje
SegundoCanje --> TresOMasCanjes : actualizarCanje
TresOMasCanjes --> [*]
@enduml | false | true | false | false | sequence |
0b0730c22e701c1ea3a4b8d6aa5185918293e407 | 74af905a30f55d9fca3223b6aaba7b1b880b8101 | /src/main/resources/ex28flowchart.puml | d501a7e356356ab525b09b3db2ce658f81384126 | [] | no_license | GSabiniPanini/little-cop3330-assignment2 | 0d70d5d97690f20e664d2e90840d4d05c3dffbef | e5bc9f9487e59f3d11089379b156e89a6edb7ed7 | refs/heads/master | 2023-05-21T00:55:07.902429 | 2021-06-13T16:15:34 | 2021-06-13T16:15:34 | 376,391,100 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 180 | puml | @startuml
class Solution28
{
system.out.println(sum)
}
class AddingLoop
{
int input[5]
int sum
+ readinput()
+ compute()
}
Solution28 *-- AddingLoop
@enduml | false | true | false | false | class |
1279c404213eae53fa050a382e7f88ca74737976 | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1090657/sp3/ssd_open.puml | d7b141bca426d1a7e84a27fa7ebe7d09c7f95a3d | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,896 | puml | @startuml ssd_share.png
skinparam handwritten false
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing true
actor User
boundary HomeView
control HomePresenter
control WorkbookService
database Database
box "NSheets Client"
participant HomeView
participant HomePresenter
participant WorkbookDesignationDTO
participant WorkbookDTO
participant AccessList
participant Access
participant WorkbookServiceAsync
end box
box "Server"
participant WorkbookService
participant WorkbookDesignationRepository
participant WorkbookDesignation
participant WorkbookServiceImpl
participant SaveWorkbookController
participant PersistanceContext
participant UserRepository
participant ipc06controller
participant Username
end box
box "Database"
participant Database
end box
User -> HomePresenter : refreshView
HomePresenter -> WorkbookServiceAsync : getUsersWorkbook(currentUser.username(),callback)
WorkbookServiceAsync -> WorkbookServiceImpl : getUsersWorkbooks(username)
WorkbookServiceImpl -> ipc06controller : getWorkbooksFromUser(username)
ipc06controller -> Username : create(username)
ipc06controller -> PersistanceContext : userrepo= repositories().users()
ipc06controller -> UserRepository : user = repo.findUserByUsername(u)
UserRepository -> Database : findUserbyUsername(u)
ipc06controller -> Database : publiclist = listPublicWorkbookDescriptions()
ipc06controller -> User : privateOwner = user.workbooksFromUser()
ipc06controller -> Database : privateShared = listPrivateWorkbookDescriptions(user.getEmail())
ipc06controller -> ipc06controller : allwb = addAll(publiclist,privateOwner,privateShared)
ipc06controller --> WorkbookServiceImpl : allwb
WorkbookServiceImpl --> WorkbookServiceImpl : listadto = all.toDTO()
WorkbookServiceImpl --> WorkbookServiceAsync : listadto
HomePresenter --> HomeView : setContents(listadto)
@enduml | false | true | false | false | usecase |
a25b9ac674b8e20e24bf47351c51ead2c99b2ff1 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Cloud-Broker/Logical.puml | 56a966300a71c97307f3b168921baf24606ce92d | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 1,373 | puml | @startuml
package "Artifact Repository" #dddddd {
class "Service" {
}
}
package "Application Orchestrator" #dddddd {
class "Service Instance" {
}
class "Resource Request" {
string type
number quantity
string name
}
class Request {
}
}
Service *--> "Service Instance"
package "Cloud Broker" #lightblue {
interface "Cloud Broker" {
broker()
resource()
cloud()
}
class Resource {
string name
boolean disabled
number capacity
number available
add(name, type, capacity)
remove(name, type, capacity)
list()
}
class ComputeResource {
}
class NetworkResource {
}
class StorageResource {
}
Resource <|-- ComputeResource
Resource <|-- StorageResource
Resource <|-- NetworkResource
}
package Cloud #dddddd {
class Reservation {
datetime goodTil
}
abstract Hardware {
}
class Compute {
}
class Network {
}
class Storage {
}
Hardware <|-- Compute
Hardware <|-- Storage
Hardware <|-- Network
}
CLI ()-- "Cloud Broker"
REST ()-- "Cloud Broker"
Web ()-- "Cloud Broker"
"Cloud Broker" .. Resource
Resource o--> Hardware
"Service Instance" o--> Resource
Request o-> "Service Instance"
Request *--> "Resource Request"
Reservation o--> "Request"
Reservation o--> "Hardware"
Reservation .. Resource
@enduml
| false | true | false | false | class |
e80769e89084a6f4e4290aef84b4b4bbeeafe23a | e3f608b2d2d160553212e823e0783e7d08f24c7b | /exercise45/docs/main.puml | 9df1571f14e8527be826a79d7c4b5b866ba7aaa7 | [] | no_license | nader-fares/fares-a04 | 3635a6f457bed61957ba581c90cca9a7ecf38299 | 3232d3ff5b3e4204189b67c6bd8f019dfce49873 | refs/heads/main | 2023-09-04T05:42:59.179310 | 2021-10-18T02:27:26 | 2021-10-18T02:27:26 | 415,470,723 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 334 | puml | @startuml
'https://plantuml.com/sequence-diagram
'only have one class for solution since nothing is being created; each instance of 'utilize' is simply being replaced with 'use'
class Solution45 {
String outputString
String outputFile
+main(String[])
+readAndReplace(): String
+writeToFile(String outputFile, String output)
}
@enduml | false | true | false | false | class |
1c3065340560dd0c5cb3dfa1e8a4efdceee5cacd | a6dacfed7998847d8edcb6dbf4bed16068cd83b1 | /time-based-domain-events/modelling/.assets/diagrams/financial_year_end_model.puml | 7b55e2d6a82ce3a6323c29bcfe374c8a7653dccb | [] | no_license | puncoz-bookmarks/ddd-public-materials | 689258869da350a2e74e069dbfd5ad8735c1c2b8 | 8ed0700c4b5b955efc2f1e8405628578bad484be | refs/heads/master | 2023-04-09T23:42:55.480926 | 2021-04-21T08:57:49 | 2021-04-21T08:57:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 832 | puml | @startuml
!include <tupadr3/common>
!include <tupadr3/font-awesome-5/clock>
!include <tupadr3/font-awesome-5/calendar_alt>
!include <tupadr3/font-awesome-5/gripfire>
skinparam defaultFontName Purisa
skinparam handwritten true
skinparam backgroundcolor transparent
skinparam defaultTextAlignment center
scale 1200*480
file DiscountCreated #Orange [
**DiscountCreated**
]
file DiscountRefreshed #Orange [
**DiscountRefreshed**
]
file Discount #Yellow [
**Discount**
<<aggregate>>
---
**EffectiveDiscount**
....
is Discount effective?
]
frame **FinancialYearEndProcessManager** #MediumPurple {
file RefreshDiscount #DeepSkyBlue [
<$clock>
**RefreshDiscount**
]
DiscountCreated -R-> RefreshDiscount
}
RefreshDiscount --R--> Discount
Discount -> DiscountRefreshed
@enduml | false | true | false | false | uml-unknown |
2d9240faeac06e169132bacd9f9003485b18149f | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Core/MORR/BootstrapperConventions.puml | ccd7ff01eb917620d922af8ff90ab391c58faadf | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class BootstrapperConventions {
+ {static} GetRegistrationBuilder() : RegistrationBuilder
}
!endsub
@enduml
| false | true | false | false | class |
4363bb0b69d41f3c340eaf641ff5ac9bc8f0230d | 7e4f5cb907490be4778083f1a4ad78ab271c2bb4 | /view/view.puml | 1b811ac91a8ffa7f2594420b14810fe6862e5d5d | [] | no_license | AndreasAnemyrLNU/iwish | 341e969a7d9003e9cfa05d5bf9e7e18608717252 | 3af58274887570a27ed40d4a0fa838f1a4b1b682 | refs/heads/master | 2016-09-01T12:20:30.585530 | 2015-11-19T19:02:02 | 2015-11-19T19:02:02 | 45,902,992 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 802 | puml | @startuml
namespace view #lightyellow{
class BootStrapCDN #white
class JqueryCDN #white
class GitCommits #white
class GitPayload #white
class IndexPage #white
class Navigation #white
class WebHookAdded #white
class WebHookAuthor #white
class WebHookCommitCollection #white
class WebHookCommits #white
class WebhookCommitter #white
class WebHookModified #white
class WebHookPusher #white
class WebHookRemoved #white
class WebHookRepository #white
class WebHookSender #white
}
@enduml | false | true | false | false | class |
1cd06fcd976ff04a5575a88c31e8825ba44d6494 | 61f77755f3ca65fa0a0dfbbdc51137e01ded03fc | /design_model/src/main/java/example/designpattern/behavioral/observer/Observer Pattern.puml | 9a2b52c258dfffad300e8741895799773e761053 | [] | no_license | lyszhen3/myWeb | 670e02a585ea3193f6c388b9cea37969a94792dc | c1543ec5f48d84e6c6481a95e54b84f04654b323 | refs/heads/master | 2023-07-11T02:29:33.530130 | 2019-02-25T01:39:29 | 2019-02-25T01:39:29 | 78,835,228 | 0 | 1 | null | 2022-12-16T04:38:41 | 2017-01-13T09:31:45 | Java | UTF-8 | PlantUML | false | false | 975 | puml | @startuml
interface Observer{
+{abstract} String getName();
+{abstract} void setName(String name);
+{abstract} void help();
+{abstract} void beAttacked(AllControlCenter acc);
}
class Player{
-String name;
+Player(String name);
+ void setName(String name);
+ void help();
+ void beAttacked(AllControlCenter acc);
}
note bottom:acc.notifyObserver(name);
abstract class AllyControlCenter{
#String allyName;
#ArrayList players;
+void setAllyName(String allyName);
+String getAllyName();
+void join(Observer obs);
+void quit(Observer obs);
+{abstract} void notifyObserver(String name);
}
class ConcreteAllyControlCenter{
+ConcreteAllyControlCenter(String allyName);
+void notifyObsever(String name);
}
note bottom:for(Observer obs:players){\nif(!((Observer)obs).getName().equalsIgnoreCase(name)){\n((Observer)obs).help();}}
Player .up.|>Observer
ConcreteAllyControlCenter-up-|>AllyControlCenter
AllyControlCenter o-right->Observer
Observer .left.>AllyControlCenter
@enduml | false | true | false | false | class |
02ce812ff3d524d0fbfe600e47d3127e57e8297c | 28a37bba319600046f93f3da70fc102b8445ea00 | /AndroidCodeBase/.idea/modules/BusinessBase/BusinessBase.plantuml | f3ed55572d48b7e0d890171c32dd3581ed4cda20 | [] | no_license | MaxonZhao/CPEN391_group25 | 600d7a4ec8059791cf083669b8b86817bddc2994 | 6fd9517b7ebc4cf48c227ae8de51ef62ac268161 | refs/heads/main | 2023-04-01T17:28:55.720909 | 2021-04-17T06:39:19 | 2021-04-17T06:39:19 | 332,349,573 | 3 | 2 | null | 2021-04-16T18:48:01 | 2021-01-24T02:15:48 | VHDL | UTF-8 | PlantUML | false | false | 922 | plantuml | @startuml
title __FLAPPYBIRD.BUSINESSBASE's Class Diagram__\n
namespace androidx.databinding {
interface androidx.databinding.DataBindingComponent {
}
}
namespace androidx.databinding {
namespace library.baseAdapters {
class androidx.databinding.library.baseAdapters.BR {
}
}
}
namespace com.cpen391.businessbase {
class com.cpen391.businessbase.BR {
}
}
namespace com.cpen391.businessbase {
class com.cpen391.businessbase.BuildConfig {
}
}
namespace com.cpen391.businessbase {
class com.cpen391.businessbase.DataBinderMapperImpl {
}
}
com.cpen391.businessbase.DataBinderMapperImpl -up-|> androidx.databinding.DataBinderMapper
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 |
a126a22bb446c5552e97f44c86096588b69bd3e0 | 101c24bddd6505285f2e73d4ba7f5bda9b125f57 | /17072020/umls/main_project_constraints.puml | 0df1fa595e19e5bf0e6fc6b41a7b9e54fc6b5198 | [] | no_license | JBL-PhD/Presentations | 5c9e99ecb876ed94c476eaec0e2fad469cca077c | a3c14c6225b036403a0ac22341beebaa953ef381 | refs/heads/master | 2022-12-07T20:51:55.557226 | 2020-08-20T08:55:15 | 2020-08-20T08:55:15 | 276,056,352 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 391 | puml | @startuml
package "Automotive industry" {
rectangle "Main constraints" #LightGray {
() "Legal compliance" as LC #Red
() "Time to market" as TTM #Red
() "Cost" as C #Red
() "Safety" as S #Red
}
[Fresh project] -down- TTM #Red
[Fresh project] -down- S #Red
[Fresh project] -down- LC #Red
[Fresh project] -down- C #Red
}
@enduml
| false | true | false | false | uml-unknown |
1627a0122da4866b1799ed064df7e83758d1ab30 | b4302cd63929941132f129b9d907434b65fc845d | /docs/workflow.puml | 1f8dca1144b1d314de697011413d25b3f10dd6eb | [] | no_license | pandoraboxchain/pyrrha-pyndora | 17a515f648c580b599f0c208b4ab9a7f6f001baa | 25f5339054aec836a6b26ca76ce4ce150dcbd2a8 | refs/heads/master | 2021-09-01T23:13:49.751080 | 2017-12-29T04:25:43 | 2017-12-29T04:25:43 | 105,304,466 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,559 | puml | @startuml
box "API Thread"
boundary webapi
end box
box "Main Thread"
control main
end box
== Initialization ==
[-> main: start
activate main
main -> main: read_config()
deactivate main
create webapi
main -->> webapi: thread
box "Ethereum Thread"
create entity eth
end box
main -->> eth: thread
loop
eth -> eth: connect
end
eth -> eth: read_contracts
alt failure
eth --\\ main: shutdown
destroy eth
destroy main
else success
eth --\\ main: connected
== Main workflows ==
eth ->>]: ask for state
loop
eth <<--]: state
group process_state
box "Processor"
create control processor
eth -->> processor: compute
activate processor
opt for DataValidation & Computing
create entity ipfs
processor -->> ipfs: instantiate
processor -> ipfs: connect
activate ipfs
ipfs -->> processor: connection status
deactivate ipfs
alt failure
processor --\\ eth: ipfs_failed
activate eth
eth ->]: decline_job
deactivate eth
else success
processor -> ipfs: load_data
activate ipfs
ipfs --> processor: loaded
deactivate ipfs
deactivate processor
create control model
processor -->> model: thread
model -> model: run
activate model
model --\\ processor: completed
activate processor
deactivate model
destroy model
processor -> ipfs: upload
activate ipfs
ipfs --> processor: uploaded
deactivate ipfs
end
end
processor --\\ eth: completed
deactivate processor
destroy processor
end box
end
eth ->]: change_state
eth -> eth: listen_events
...
end
end
== API requests ==
[-> webapi: request
activate webapi
webapi -> main: read_state
activate main
main -> eth: read_state
activate eth
eth -> processor: read_state
activate processor
processor -->> eth: data
deactivate processor
eth -->> main: data
deactivate eth
main -->> webapi: results
deactivate main
[<<-- webapi: data
deactivate webapi
@enduml | false | true | false | false | sequence |
df69841b7edc13a0a34df09e9b13c5538963a9ac | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-klasse-http-metoder.puml | e4fb70693fa9dd1909e278095b0c28b9fa20f610 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 282 | puml | @startuml
skinparam classAttributeIconSize 0
package "class Tjenester" <<Frame>> {
class REST-tjenester << interface >> {
+GET (Request) : Response
+PUT (Request) : Reponse
+POST (Request) : Response
+PATCH (Request) : Response
+DELETE (Request) : Response
}
}
@enduml
| false | true | false | false | class |
2ca59615f878f3240df4032ebe838a498a56533a | f8e41b4993b6abfde356ef50f28addade21ab376 | /Tooling-Landscape/Unanimous-Understanding/Data Structures/DataExchangeFormat.puml | 3cf7bf24f1af7492078f36054a2cde40710109ec | [
"CC0-1.0",
"LicenseRef-scancode-free-unknown"
] | permissive | Open-Source-Compliance/Sharing-creates-value | 60f287f1d5bcc43b8cb32b63707875b6cf308e2f | f3353131e220fd3fb0232bb562ffd5c850643833 | refs/heads/master | 2023-06-22T18:05:30.331647 | 2023-06-07T11:54:05 | 2023-06-07T11:54:05 | 47,191,645 | 86 | 33 | CC0-1.0 | 2022-12-22T21:37:35 | 2015-12-01T13:35:19 | Rich Text Format | UTF-8 | PlantUML | false | false | 2,821 | puml | @startuml
class BuildEnvDescription {
String name
String version
String uniqueIdentifier
Text description
}
class Content{
Enum type
String uniqueIdentifier
Archive artifact
URL externalSource
URL internalSource
URL softwareHeritageSource
}
class Constraint {
Enum type
String uniqueIdentifier
String name
Text description
Enum scope
}
class CopyrightECCInformation {
Enum type
Text content
}
class DataModelMetaInformation {
String name
String version
String uniqueIdentifier
}
class Deliverable{
Enum type
String uniqueIdentifier
String name
String version
Text description
Enum distributionModel
Enum licensingModel
Enum riskExposure
}
class DisclosureDocument {
String name
String version
String uniqueIdentifier
Text legalWording
Text contactData
}
class DigitalArtifact {
Enum type
String uniqueIdentifier
String name
String version
URL homepage
BOOLEAN isModified
Text generalLicenseAssessment
}
class Coordinate {
String coordinate
}
class LicenseExpression {
String UniqueIdentifier
String licenseExpression
}
class LicenseSelector {
}
class License {
String name
String uniqueIdentifier
String spdxShortIdentifier
Enum riskLevel
Enum category
String acknowledgement
Enum osiApproved
String text
Text notes
URL[] references
Text standardHeader
}
class ProductInformation {
String name
String version
String uniqueIdentifier
Text description
Enum criticality
Text developmentDetails
}
class SwBundle{
Enum type
}
LicenseExpression "0..1" -- DigitalArtifact : declaredLicenses
LicenseExpression "0..1" -- DigitalArtifact : foundLicenses
LicenseExpression "0..1" -- DigitalArtifact : concludedLicenses
LicenseExpression "1" -- LicenseSelector : usedLicenses
License "1..*" -- "1..*" LicenseExpression
License "0..*" - "0..*" Constraint
Constraint "0..*" - "0..*" ProductInformation
CopyrightECCInformation "0..*" -- DigitalArtifact : copyrightInformation
CopyrightECCInformation "0..*" -- DigitalArtifact : eccInformation
Coordinate "1..*" -- DigitalArtifact
Deliverable - SwBundle : deliveredItem
Deliverable -- DisclosureDocument
(Deliverable, SwBundle) .. BuildEnvDescription
Content "0..*" -- DigitalArtifact
DigitalArtifact "1..*" -o "1..*" Deliverable
(DigitalArtifact, Deliverable) .. "0..1" LicenseSelector
Content "1..*" -- SwBundle
ProductInformation -- "1..*" CopyrightECCInformation
ProductInformation -- "1..*" Deliverable
ProductInformation *- "0..*" ProductInformation
DigitalArtifact -- DisclosureDocument : readsDataFrom <
'Formatting
DigitalArtifact -[hidden]- Coordinate
DigitalArtifact -[hidden]- Content
LicenseSelector -[hidden]- Deliverable
LicenseExpression -[hidden]- LicenseSelector
LicenseSelector -[hidden]- DigitalArtifact
@enduml
| false | true | false | false | class |
f0a016bce6d613b5d760aa197b2b04fdba72ccd3 | f4f2dd57c8b94d4c9a754002d3e97b29cbf5ff5d | /uml/state_diagrams/settings.plantuml | a7d14bc7e1a97bbfd715560ef30f6ec03e50511c | [] | no_license | markroche92/sw-eng-smart-watch | 53870aad11967c1f600433c9e7b6afbf3e8ac69d | c6f13dbfe7f66950101fb60385b793f4f008a5e4 | refs/heads/master | 2023-02-02T10:41:52.534075 | 2020-12-20T18:19:41 | 2020-12-20T18:19:41 | 312,834,151 | 2 | 1 | null | 2020-12-20T18:19:42 | 2020-11-14T14:34:01 | null | UTF-8 | PlantUML | false | false | 2,062 | plantuml | @startuml
skinparam shadowing false
title Settings State Diagram
state "Settings Selection" as Ss{
state "Brightness Selection" as Bs {
state "Low Brightness" as Lb : entry: Set Brightness at 25%
state "Mid Brightness" as Mb : entry: Set Brightness at 50%
state "High Brightness" as Hb : entry: Set Brightness at 75%
state "Very High Brightness" as Vhb : entry: Set Brightness at 100%
[*]->Mb
Lb -up-> Mb : Press\nButton B
Mb -right-> Hb : Press\nButton B
Hb -down-> Vhb : Press\nButton B
Vhb -left-> Lb : Press\nButton B
}
state "Bluetooth Selection" as Bts {
state "Bluetooth On" as Ba : entry: Activate Bluetooth
state "Bluetooth Off" as Bd : entry: Deactivate Bluetooth
[*]->Ba
Ba -down-> Bd : Press\nButton B
Bd -up-> Ba : Press\nButton B
}
state "Health Check Notification Selection" as Hcn {
state "Notification On" as Na : entry: Activate Notification
state "Notification Off" as Nd : entry: Deactivate Notification
[*]->Na
Na -down-> Nd : Press\nButton B
Nd -up-> Na : Press\nButton B
}
state "Return to Display Selection" as R {
}
Bs : entry: Activate Brightness Selection Menu\nexit: Deactivate Brightness Selection Menu
Bts : entry: Activate Bluetooth Selection Menu\nexit: Deactivate Bluetooth Selection Menu
Hcn : entry: Activate Health Check Notification Selection Menu\nexit: Deactivate Health Check Notification Selection Menu
R : entry: Display option to return to Display Selection Menu
Bs -right-> Bts : Press\nButton A
Bts -down-> Hcn : Press\nButton A
Hcn -left-> R : Press\nButton A
R -up-> Bs : Press\nButton A
}
state "Settings Storage" as Sstor{
}
Sstor : do: Store Selected Settings\nexit: Return to Display Selection
[*]-down->Bs : Press\nButton B
R-down->Sstor : Press\nButton B
Ss : entry: Activate Settings Selection Menu\nexit: Deactivate Settings Selection Menu
Sstor->[*]
@enduml | false | true | false | false | sequence |
d604214017962516ab8acafa630d93ff2a9bfe78 | 25c79962dfac3b9caa8a6307d1b60ea53b32c428 | /docs/seq_diagrams/L1_seq.puml | 3f3035b612443bbe63a7a17eb774c5a7c242e638 | [] | no_license | isabella232/vbroker | ea7edbcb57b73db18603789a4f096f6af1c55e0b | 0122846487ceeb86915e83e66cf2b009e4c5207e | refs/heads/master | 2023-03-15T20:38:13.640054 | 2018-05-02T06:32:17 | 2018-05-02T06:32:17 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 636 | puml | @startuml
title L1 message flow
Producer -> SocketIn : Accept message
box "VBroker" #LightBlue
participant SocketIn
participant KPipe
participant SubscriberPipe
participant UserSpace
participant SocketOut
end box
SocketIn -> UserSpace : Read metadata to user space
SocketIn -> KPipe : Splice Data
KPipe -> SubscriberPipe : Tee Data
SubscriberPipe -> SocketOut : Splice Request Payload
SocketOut -> Destination : HTTP Call
Destination -> SocketOut : HTTP Response
SocketOut -> UserSpace : Read metadata to user space
SocketOut -> SocketIn : Splice Response Payload
SocketIn -> Producer : Forward HTTP Response
@enduml | false | true | false | false | sequence |
93fc877e20cfb9640c50c91d11533977125a3787 | c397157b643ccf0a7aa4f86a16e374026e6ed9be | /automatasUML.puml | ec532800ea869852e27ad0f6fed19623fffda495 | [] | no_license | DavidAnacona/automanas | 0b6f71307f5cde7d9708073867e74e48c153794d | ee32bcea1d7f44caf8412df514b7cac2a328a936 | refs/heads/master | 2023-08-14T12:09:29.626436 | 2021-09-09T04:17:25 | 2021-09-09T04:17:25 | 404,580,661 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 269 | puml | @startuml
class Controlador.Controlador
class Modelo.Modelo
class Vista.Vistas
interface java.awt.event.ActionListener
Controlador.Controlador ..> Modelo.Modelo
Controlador.Controlador ..> Vista.Vistas
Controlador.Controlador --|> java.awt.event.ActionListener
@enduml | false | true | false | false | class |
e3d6afb8831d64d21d2521020be300ca1d838aa1 | 573fd3fb5867c0f26fb2906f0478b234956e713f | /packages/cactus-plugin-ledger-connector-fabric/docs/architecture/run-transaction-endpoint-transact.puml | be85b8405d42c8c1896f885cb0439940f42b2f86 | [
"Apache-2.0"
] | permissive | RafaelAPB/blockchain-integration-framework | 65cd73a7115069d343da7d269db45918710a7bbd | 89d5102496adfe98a542a373e805dc38ecb8f269 | refs/heads/main | 2023-08-07T02:19:05.864116 | 2023-04-12T00:41:07 | 2023-04-14T07:37:08 | 241,220,244 | 5 | 0 | Apache-2.0 | 2023-05-24T02:04:39 | 2020-02-17T22:22:43 | TypeScript | UTF-8 | PlantUML | false | false | 1,691 | puml | @startuml
title Hyperledger Cactus\nSequence Diagram\nRun Transaction Endpoint\ntransact() method
skinparam sequenceArrowThickness 2
skinparam roundcorner 20
skinparam maxmessagesize 300
skinparam sequenceParticipant underline
actor "Caller" as caller
participant "PluginLedgerConnectorFabric" as t << (C,#ADD1B2) class >>
autoactivate on
activate caller
caller -> t: transact(req: RunTransactionRequest)
t -> t: req
t --> t: {signingCredential, channelName, contractName, invocationType, fnName as methodName, params}
t -> t: InMemoryWallet(new X509WalletMixin())
t --> t: wallet
t -> t: opts.pluginRegistry.findOneByKeychainID(signingCredential.keychainId)
t --> t: keychain
t -> t: keychain.get<string>(signingCredential.keychainRef)
t --> t: fabricX509IdentityJson
t -> t: JSON.parse(fabricX509IdentityJson)
t --> t: identity
t -> t: wait for wallter.import(signingCredential.keychainRef, identity)
deactivate t
t -> t: wait for gateway.connect(connectionProfile, gatewayOptions)
deactivate t
t -> t: wait gateway.getNetwork(channelName)
t --> t: network
t -> t: network.getContract(contractName)
t --> t: contract
group #LightBlue if invocationType == FabricContractInvocationType.Call
t -> t: wait for contract.evaluateTransaction(fnName, ...params)
t --> t: out, success: true
else #LightYellow if invocationType == FabricContractInvocationType.Send
t -> t: wait for contract.submitTransaction(fnName, ...params)
t --> t: out, success: true
else #LightCoral default
t --> caller: throw Error('unknown FabricContractInvocationType')
end
t -> t: out.toString("utf-8")
t --> t: outUtf8
t --> caller: return { functionOutput, success } as res
@enduml | false | true | false | false | usecase |
b2790e0712d3ee25d99e7774529a4680294b6c47 | bcb7fd9ec9e69e52780b27da867b8055dfdc043c | /src/lattice/ContextWriter.iuml | aded6457f28cc2748d5e99e867fec9635c9f2ff7 | [
"CECILL-B"
] | permissive | vanthonguyen/lattice-sequence | 2e962d089b0053ba90332932fe3881dfe8ec71ac | 72ebfe551ef013da521b81121e3f98164b2a00bf | refs/heads/master | 2020-04-15T07:22:32.920465 | 2015-02-01T17:33:59 | 2015-02-01T17:33:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 114 | iuml | package lattice {
interface ContextWriter {
+void write(Context context, BufferedWriter file)
}
}
| false | true | false | false | class |
b94e222c9ce8ef59bbc17cd782da4fb4ead3645a | 420a70c6860291c323e1cc0c60753a485b77737e | /app/UML/UseCase.puml | af5dbb03bbcc09c6949ded0e8e1834f66670052f | [] | no_license | tct0001/CopyAubie | 3c740b88c45d9819ef809d30becb37b5a107a634 | 0de4c6004e16e0775c8826dd3467c86863087b20 | refs/heads/master | 2020-03-11T09:45:30.641605 | 2018-05-01T18:45:50 | 2018-05-01T18:45:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 292 | puml | @startuml
title "Copy Aubie" Use Case Diagram
skinparam packageStyle rectangle
actor Player
rectangle {
Player -- (Select skill level)
Player -- (Play game)
(Play game) .-> (View “Aubie” series) : <<includes>>
(Play game) .-> (Enter “Aubie” series) : <<includes>>
}
@enduml | false | true | true | false | usecase |
4ed1148e0da9b8f3b74bac486204926387f77282 | b43991e55b5b0847b2906757bda4f889c97270b4 | /doc/client.puml | 16c8184ef714f81a672bbb68fabe0392f80a20d2 | [] | no_license | Westerdals/pgr200-eksamen-Alacho2 | 6d3ea7b447268f8ce7a51cec051a4df634f32baa | 02495cc3e00ebbc66575ae3f993c02299b281c69 | refs/heads/master | 2020-04-04T02:06:54.452177 | 2018-11-11T21:49:32 | 2018-11-11T21:49:32 | 155,689,635 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,223 | puml | @startuml
package no.kristiania.pgr200.cli {
class ClientMain {
}
class DecodeArgs {
}
class InteractiveClient {
}
class InteractiveRetrieve extends CommandHandler {
}
class InteractiveInsert extends CommandHandler {
}
class InteractiveUpdate extends CommandHandler {
}
class InteractiveDelete extends CommandHandler {
}
class InteractiveHelp extends CommandHandler {
}
abstract class CommandHandler {
}
class Command {
}
class StringCommand extends Command {
}
class NumberCommand extends Command {
}
class DateCommand extends Command {
}
class TimeCommand extends Command {
}
class BooleanCommand extends Command {
}
class BasicCommand extends Command {
}
class ParseCommands {
}
ClientMain -- DecodeArgs
ClientMain -- ParseCommands
Command -- ParseCommands
DecodeArgs -- InteractiveClient
InteractiveClient -- InteractiveInsert
InteractiveClient -- InteractiveRetrieve
InteractiveClient -- InteractiveUpdate
InteractiveClient -- InteractiveDelete
InteractiveClient -- InteractiveHelp
}
package no.kristiania.pgr200.io {
class RequestHandler{
}
class Request{
}
class RequestBodyHandler{
}
class Response{
}
Request *-- RequestHandler
Request -- RequestBodyHandler
Response *-- RequestHandler
}
@enduml | false | true | false | false | class |
e7d2ef10c6823e33660615c094699f82cc956f2f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.puml | c1661f329c50688b7e7e6b43346c865e5887a0f0 | [] | 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 | 678 | puml | @startuml
abstract class TestListGUI {
+ <<virtual>> PrintHeadPanel() : void
+ HasTreeData() : bool
+ <<virtual>> RenderTestList() : void
+ <<virtual>> RenderNoTestsInfo() : void
+ RenderDetails() : void
+ Reload() : void
+ Repaint() : void
+ Init(window:TestRunnerWindow, rootTest:ITestAdaptor) : void
+ UpdateResult(result:TestRunnerResult) : void
+ UpdateTestTree(test:ITestAdaptor) : void
+ RebuildUIFilter() : void
+ RepaintIfProjectPathChanged() : void
}
class "List`1"<T> {
}
TestListGUI o-> "newResultList<TestRunnerResult>" "List`1"
TestListGUI --> "TestMode" TestMode
TestListGUI --> "TestPlatform" TestPlatform
@enduml
| false | true | false | false | class |
d62a9ab912f1b4950ee18dc16f2fc3235c1fc1c5 | 9bd3363456776acaf2740dbb98d9a580ce0a33a5 | /application-components.puml | 70484514e6f7f67613522edfda763c478e358878 | [] | no_license | pgpbpadilla/reading-notes-angular | 14060f06ebf59cb8268d3b3e202def8f15a6f1bb | e740c63b4fa15e06cc26db3753e53bdd137ac9a9 | refs/heads/master | 2023-06-09T13:57:22.284069 | 2021-06-29T10:16:30 | 2021-06-29T10:16:30 | 316,340,119 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 476 | puml | @startuml
title Angular Application
component Workspace {
component App1 {
component Component1 {
[template.html] ..> [class.ts]: binds
[class.ts] .> [styles.css]: loads
[class.ts] .> [template.html]: loads
}
component Component2 {
[EmbeddedComponent1] -- [EmbeddedComponent2]: communication
}
[Component3]
Component1 ..> events
events )-- Component2
}
[angular.json] --> App1: configures
[angular.json] --> [App2]: configures
}
@enduml
| false | true | false | false | sequence |
c6488b370babce7a8d9cc48db884e54571f8d8f8 | 136ce57f474d035a700706c5a2c829b716c32f1e | /cdct/diagramme_de_sequence/plantuml/lister_routines.puml | 077e15622b3991ab16cb96332f12a384c534bb6d | [] | no_license | SKAVALT-io/esidom_doc | fe98aefe219afc0d5761244c7a65977ca2953d55 | b04889428a1a913e381cc5fc8615c4c7e450c854 | refs/heads/main | 2023-03-11T08:41:02.553855 | 2021-03-02T02:21:34 | 2021-03-02T02:21:34 | 322,641,413 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 371 | puml | @startuml lister routines
actor "Utilisateur" as u
participant "Esidom front-end" as fe
participant "Esidom back-end" as m
participant "Home Assistant" as ha
u -> fe: Lister les routines
fe -> m: GET /automations
m -> ha: WS: {type: "get_states"}
ha --> m: WS: {type: "result", success: true, result: []}
m --> fe: 200 - Ok
fe --> u: Les routines sont listées
@enduml | false | true | true | false | sequence |
7e42387d38f359641e82223462cccada2e091e63 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/common/results/runTotals/testsuite/successIndex/successIndex.plantuml | fc6b3d854dbad913b3729d29c69c5c664f8cfe53 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 791 | plantuml | @startuml
title __SUCCESSINDEX's Class Diagram__\n
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.successIndex {
class SuccessIndex {
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.successIndex {
class SuccessSpec {
+ sleep()
}
}
}
}
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 |
05e2216528934b5c15a4a9b1d3282d44e2d22094 | 808face7bec53d96453716444728a1b0d03fbfaa | /src/_uml/Onitama.puml | 7370b1baf6117fb7acf172803a347d462c9be94f | [] | no_license | danielbeeke/onitama | fe377d7b8aff80142caadaf2f0eb29a5dd32252d | ea34086c90c2c3dc1dd635b8677619c8dd2d3d14 | refs/heads/master | 2021-09-04T06:49:09.828223 | 2018-01-16T21:27:27 | 2018-01-16T21:27:27 | 107,873,516 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 628 | puml | @startuml
class Helpers {
+ fisherYatesShuffle(items)
+ flipCoordinates(x, y)
+ guid()
}
class Connection {
+ easyP2P
}
class Card {
- game
- name
- description
- color
- owner
- sets[]
+ swap()
}
class Piece {
- game
- x
- y
- player
+ hover()
+ click()
+ moveOffBoard()
}
class State {
- game
- player1
- player2
- selectedCards[]
+ serialize()
+ deserialize(state)
+ highlightCardSets(piece, card)
+ movePiece(piece, card, x, y)
}
class Tile {
- game
- x
- y
+ hover()
+ click()
}
class Game {
- allCards[]
- state
- tiles[]
+ newGame()
+ flipState(state)
}
class Player {
- game
- card1
- card2
- pieces[]
}
@enduml | false | true | false | false | class |
ed98342a45ae7bf6b648fabe391c54284ebe6ae1 | 80829fc2f588e2228fbfc38be958f22bcee70e6e | /docs/diagrams/DataDiagram.puml | 55712b50996facdd70b45a18b27a086d05229bc0 | [] | no_license | WeiXuanYap/tp | 2ed79a15a1688308b758a748a12343fde8bcb463 | e09617825d920e9132ce5a07aa473e0c7ad1d872 | refs/heads/master | 2023-09-01T22:28:11.481122 | 2021-11-12T15:22:58 | 2021-11-12T15:22:58 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,311 | puml | @startuml
'https://plantuml.com/class-diagram'
hide circle
skinparam classAttributeIconSize 0
class AllRecordList
class RecordList
enum Category <<enum>>
abstract class "{abstract}\n Record" as Record
AllRecordList -down->"12 " RecordList
RecordList -down->"1 " Budget
RecordList -down->"*" Loan
RecordList -down->"*" Expenditure
Budget -down-|> Record
Expenditure -down-|> Record
Loan -down-|> Record
Expenditure -up.> Category
RecordList -[hidden]left-> Category
class AllRecordList {
- year: int
}
class RecordList {
- budget: Budget
+ addBudget(double spendingLimit,
boolean isLoadingStorage): void
+ addExpenditure(String description, double amount,
LocalDate date, Category category): void
+ void addLoan(String name, double amount,
LocalDate date)
}
class Expenditure {
# description: String
# date: LocalDate
# category: Category
+ toString(int indexOfExpenditure): String
}
class Budget {
# description: String
# date: LocalDate
# category: Category
}
class Loan {
# debtorName : String
# date : LocalDate
# dueDate : LocalDate
+ getDueDateString() : String
}
class Record {
# amount : double
# month : int
}
enum Category {
XYZ
}
note left
XYZ = GENERAL,
GIFTS, TECH etc.
end note
@enduml | false | true | false | false | class |
590f64292713e75c91ef9d24f9e759869aa2363a | a4780f35709afddcca3092a870ec7d5e67444f6f | /DOC/Metric_01.puml | facea87e5432eabebeab8cd48b0d08c0046e70aa | [] | no_license | marekz/metric_test | 9caa905146e8d3239c55764755d9ac18ca66417f | 2430aae769660e24d1df4ac94d365dad1b18e55b | refs/heads/master | 2021-01-01T16:29:07.438848 | 2017-10-31T15:09:08 | 2017-10-31T15:09:08 | 97,843,867 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 753 | puml | @startuml
class Metric {
resultCompare()
sendNotification()
}
class ResultCompare{
currentValue
previousValue
dataSetType
--
CmpMethods()
-- return --
(-1;0;1)
}
class Notification {
sendTo
message
--
sendMethod()
-- return --
send message
}
Metric .down.> ResultCompare
Metric .down.> Notification
class SendMethod{
sendMethod()
-- return --
send method
}
class DataSet {
value
date
dataSetType
--
getValue()
getDate()
getDataSetType()
-- return --
return date to compare
and info about metric type
}
Notification .right.> SendMethod
ResultCompare .left.> DataSet
class CmpMethods {
cmpMethod()
-- return --
select method
}
ResultCompare .down.> CmpMethods
@enduml
| false | true | false | false | class |
c51ca4dc455d7e035c1a0b82c8528bc8a9e5654e | 4cabba3859d6c3239fb2616a86ee760341a70249 | /TD2 2.1.plantuml | c7f0ad3020896b3238e1d053b4040a235b4de77f | [
"MIT"
] | permissive | El-FaroukA/bcoo-El-FaroukA | 2ed63255825fb8ba923a0e69dbf11eb8ff340167 | 1e01736ddfbbfd5e09d06e7a955344881924bb08 | refs/heads/main | 2023-03-14T16:15:49.166454 | 2021-03-11T09:55:04 | 2021-03-11T09:55:04 | 335,656,627 | 0 | 0 | MIT | 2021-02-03T14:46:51 | 2021-02-03T14:46:50 | null | UTF-8 | PlantUML | false | false | 491 | plantuml | @startuml
class Proprietaire {
nom
adresse
}
class Chien {
nom
dateDeNaissance
sexe
}
class Race {
}
class Ville {
dateOrg
}
class Concours {
classement
}
class Participer {
dateParticipation
}
class Posseder{
dateDePossession
}
Proprietaire "0..*" -- "1..10" Chien
Chien "0..10" -- "2..*" Concours
Chien -- "1" Race
Concours "0..1" -- "*" Ville
(Chien, Proprietaire) . Posseder
(Chien, Concours) . Participer
@enduml | false | true | false | false | class |
c80debe0dae05a3d0ee2de010b5d42f49506ff10 | 875e2380585b82697b0c0f072079256e29a64853 | /Documentation/UML/db.puml | 01e669ced5f70344510a739b835560027567b978 | [] | no_license | PreXident/TextAn | abd0d9272c0d05438a05e780c0b03382124872be | fd68064b5b9bd9371d0c32b50624b7d143a430ec | refs/heads/master | 2021-01-17T11:11:52.636674 | 2016-10-17T20:55:21 | 2016-10-17T20:55:21 | 13,558,103 | 1 | 1 | null | 2014-05-06T09:48:11 | 2013-10-14T10:10:56 | Java | UTF-8 | PlantUML | false | false | 1,855 | puml | @startuml
!define table(x) class x << (T,#FFAAAA) >>
!define primary_key(x) <u><<PK>> x</u>
!define foreign_key(x) <i><<FK>> x</i>
hide methods
hide stereotypes
table(Object) {
primary_key(id_object)
foreign_key(id_object_type)
alreadyJoined: Boolean
data
}
table(ObjectType) {
primary_key(id_object_type)
name
}
table(Relation) {
primary_key(id_relation)
foreign_key(id_relation_type)
}
table(RelationType) {
primary_key(id_relation_type)
name
}
table(IsInRelation) {
primary_key(id_is_in_relation)
foreign_key(id_relation)
foreign_key(id_object)
order
}
table(JoinedObjects) {
primary_key(id_new_object)
foreign_key(id_old_object1)
foreign_key(id_old_object2)
from: Date
to: Date
}
table(Document) {
primary_key(id_document)
added: Date
processed: Date
text
}
table(RelationOccurrence) {
primary_key(id_relation_occurrence)
foreign_key(id_relation)
foreign_key(id_documet)
anchor: String
position
}
table(Alias) {
primary_key(id_alias)
foreign_key(id_object)
alias
}
table(AliasOccurrence) {
primary_key(id_alias_occurrence)
foreign_key(id_alias)
foreign_key(id_documet)
position
}
Document <- AliasOccurrence
AliasOccurrence -> Alias
Alias --> Object
Object <- JoinedObjects
Object <- JoinedObjects
Object <- JoinedObjects
Object --> ObjectType
RelationOccurrence -> Document
RelationOccurrence --> Relation
IsInRelation -> Object
Relation <- IsInRelation
Relation --> RelationType
note top of AliasOccurrence
Alias se muze v jednom
dokumentu vyskytovat
na vice mistech
end note
note top of RelationOccurrence
Vzah se muze v jednom
dokumentu vyskytovat
na vice mistech
end note
note bottom of IsInRelation
Teoreticky mohou existovat vztahy
objektu se sebou samym
end note
note as N1
Plus ke kazde tabulce logovaci tabulka,
ktera navic obsahuje:
kdo, kdy a co (I/U/D) udelal
end note
@enduml | false | true | false | false | class |
b23a7ff7b240fb0021e1bd13d14441d80852ee95 | 6d7b98134a0a7e7f28dca95baf823e0001efee1b | /src/main/java/App28.puml | a32658f5228868e5aa315509ba11898c9e7f9139 | [] | no_license | ifeoma2000/chukwu-cop3330-assignment2 | b2d511b99509fa049cb79c7abfe0bddfe543030f | 8ef6ebef658bd06c0e3bb8495aabf8bd38290bb8 | refs/heads/master | 2023-05-25T07:48:29.758972 | 2021-06-14T04:03:17 | 2021-06-14T04:03:17 | 376,698,298 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 280 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
main -> numberCalculator: Prompts User for Five Numbers
numberCalculator --> main: Computes The Addition Of The Five Numbers
main -> numberCalculator: Calls The Function And Computes The Sum Of The Five Numbers
@enduml | false | true | false | false | sequence |
077f03efd8b8361a082aa1a01910d3b432b699be | 5037fa8d593da60bfc0ffabc20430d62ed78a1c1 | /docs/datamodel/contextual-work-comm-advanced.puml | 4de2d5041ca5b4707eeb61be0a69c7cefa2a7452 | [
"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 | 758 | puml | @startuml "advanced-work-context-design.png"
class WorkContext {
}
class WorkProjectContext {
}
class WorkTaskContext {
}
WorkContext -|> ContextualComm.CompositeContextualComm
WorkContext *-down- "0..*" WorkProjectContext
WorkProjectContext *-down- "0..*" WorkTaskContext
WorkProjectContext -|> ContextualComm.CompositeContextualComm
WorkTaskContext -|> ContextualComm.CompositeContextualComm
WorkTaskContext *-- "0..*" WorkTaskContextPeer
WorkProjectContext *-- "0..*" WorkProjectContextPeer
WorkContext *-- "0..*" WorkContextPeer
WorkTaskContextPeer -|> ContextualComm.AtomicContextualComm
WorkProjectContextPeer -|> ContextualComm.AtomicContextualComm
WorkContextPeer -|> ContextualComm.AtomicContextualComm
@enduml
| false | true | false | false | class |
88c0d41dad8f51bbaafa702c2765ffc689d143c5 | 27bade928da247751c05e64b7baa7cd79bbc4766 | /oodesignpatterns/diagrams/decorator.puml | 1639892b16d5c9c0d0bba162f5caf2752b5dc020 | [] | no_license | zweibit0110/design-patterns | 7ef005c8f49752545d3093e2de3d7f058c48e278 | c8f88aa916ffdd556026722c4ca80e7555e535fa | refs/heads/master | 2021-07-24T07:50:11.906876 | 2019-11-29T12:51:53 | 2019-11-29T12:51:53 | 224,854,326 | 0 | 0 | null | 2020-10-13T17:50:56 | 2019-11-29T12:55:42 | Java | UTF-8 | PlantUML | false | false | 2,002 | puml | @startuml
skinparam note {
borderColor grey
backgroundColor white
}
skinparam legend {
borderColor white
fontSize 20
fontColor grey
}
package com.deloitte.training.oodesignpatterns.structural.decorator {
' Classes and interfaces
interface Beverage {
+ getIngredients() : List<Ingredient>
}
class Tea {
+ getIngredients() : List<Ingredient>
}
class Coffee {
+ getIngredients() : List<Ingredient>
}
class BeverageDecorator {
- beverage : Beverage
+ getIngredients() : List<Ingredient>
}
class WithLemon {
+ getIngredients() : List<Ingredient>
}
class WithMilk {
+ getIngredients() : List<Ingredient>
}
class WithSugar {
+ getIngredients() : List<Ingredient>
}
class WithCinnamon {
+ getIngredients() : List<Ingredient>
}
class BeverageVendingMachineTest
' relationships
Beverage <-- Tea : implements
Beverage <-- Coffee : implements
Beverage <-- BeverageDecorator : implements
Beverage --* BeverageDecorator : contains
BeverageDecorator <|-- WithLemon : extends
BeverageDecorator <|-- WithMilk : extends
BeverageDecorator <|-- WithSugar : extends
BeverageDecorator <|-- WithCinnamon : extends
Beverage -o BeverageVendingMachineTest : use
' hide garbage
hide empty fields
hide empty methods
' notes
note bottom of BeverageVendingMachineTest
<i><size:10><color:grey>Create <b>Beverage</b> and decorate it with some ingredients:</color></size></i>
beverage = new WithSugar(new WithMilk(new Coffee()))
<i><size:10><color:grey>Apply decoration by calling <b>getIngredients()</b> method:</color></size></i>
beverage.getIngredients()
<i><size:10><color:grey>Output: <b>Cost of: coffee+milk+sugar is 25.</b></color></size></i>
end note
}
'legend
legend bottom left
DECORATOR [design pattern]
end legend
@enduml
| false | true | false | false | class |
766308f409a8f312f44ac32b9323f40e61d0e17d | a08d18fffd5657f2eea3307191d3e5159398ee16 | /PaooGameEtapa2.plantuml | f7276c6b744ee296d22c6e0c2f3676a4e2daf1ee | [] | no_license | raducornea/Joc-PAOO | 9436b9b0e74af3020d746fe9400828cd17e9aaae | 1f597ba2db22d662c624f7c0329727539e81fe04 | refs/heads/master | 2023-07-30T12:00:36.361135 | 2021-09-19T07:10:59 | 2021-09-19T07:10:59 | 408,056,883 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,390 | plantuml | @startuml
title __PAOOGAMEETAPA1's Class Diagram__\n
namespace PaooGame {
class PaooGame.Game {
}
}
namespace PaooGame {
namespace GameWindow {
class PaooGame.GameWindow.GameWindow {
}
}
}
namespace PaooGame {
namespace Graphics {
class PaooGame.Graphics.Assets {
}
}
}
namespace PaooGame {
namespace Graphics {
class PaooGame.Graphics.Camera {
}
}
}
namespace PaooGame {
namespace Graphics {
class PaooGame.Graphics.ImageLoader {
}
}
}
namespace PaooGame {
namespace Graphics {
class PaooGame.Graphics.SpriteSheet {
}
}
}
namespace PaooGame {
namespace Input {
class PaooGame.Input.KeyManager {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Breakable {
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Character {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Decorations {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Hero {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Indestructible {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Inventory {
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Item {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Menu {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.NPC {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Pickable {
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Terrain {
}
}
}
namespace PaooGame {
class PaooGame.Main {
}
}
namespace PaooGame {
namespace Maps {
class PaooGame.Maps.Map {
}
}
}
namespace PaooGame {
class PaooGame.RefLinks {
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.AboutState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.BattleState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.InventoryState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.MenuState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.PlayState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.Sample {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.SettingsState {
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.Singleton {
}
}
}
namespace PaooGame {
namespace States {
abstract class PaooGame.States.State {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.GrassTile {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.MountainTile {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.SoilTile {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.Tile {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.TreeTile {
}
}
}
namespace PaooGame {
namespace Tiles {
class PaooGame.Tiles.WaterTile {
}
}
}
PaooGame.Game .up.|> java.lang.Runnable
PaooGame.Game o-- PaooGame.States.State : aboutState
PaooGame.Game o-- PaooGame.States.State : battleState
PaooGame.Game o-- PaooGame.States.State : inventoryState
PaooGame.Game o-- PaooGame.Input.KeyManager : keyManager
PaooGame.Game o-- PaooGame.States.State : menuState
PaooGame.Game o-- PaooGame.States.State : playState
PaooGame.Game o-- PaooGame.RefLinks : refLink
PaooGame.Game o-- PaooGame.States.State : settingsState
PaooGame.Game o-- PaooGame.Tiles.Tile : tile
PaooGame.Game o-- PaooGame.GameWindow.GameWindow : wnd
PaooGame.Graphics.Camera o-- PaooGame.RefLinks : reflink
PaooGame.Input.KeyManager .up.|> java.awt.event.KeyListener
PaooGame.Input.KeyManager o-- PaooGame.RefLinks : reflink
PaooGame.Items.Character -up-|> PaooGame.Items.Item
PaooGame.Items.Hero -up-|> PaooGame.Items.Character
PaooGame.Items.Hero o-- PaooGame.Graphics.Camera : camera
PaooGame.Items.Inventory -up-|> PaooGame.Items.Item
PaooGame.Items.Item o-- PaooGame.RefLinks : refLink
PaooGame.Items.Menu -up-|> PaooGame.Items.Item
PaooGame.Items.NPC -up-|> PaooGame.Items.Character
PaooGame.Items.Pickable -up-|> PaooGame.Items.Terrain
PaooGame.Items.Terrain -up-|> PaooGame.Items.Item
PaooGame.Maps.Map o-- PaooGame.RefLinks : refLink
PaooGame.RefLinks o-- PaooGame.Game : game
PaooGame.RefLinks o-- PaooGame.Maps.Map : map
PaooGame.RefLinks o-- PaooGame.Items.NPC : npc
PaooGame.States.AboutState -up-|> PaooGame.States.State
PaooGame.States.BattleState -up-|> PaooGame.States.State
PaooGame.States.BattleState o-- PaooGame.States.Singleton : mySingleton
PaooGame.States.BattleState o-- PaooGame.Items.Hero : hero
PaooGame.States.BattleState o-- PaooGame.Items.NPC : npc
PaooGame.States.InventoryState -up-|> PaooGame.States.State
PaooGame.States.MenuState -up-|> PaooGame.States.State
PaooGame.States.PlayState -up-|> PaooGame.States.State
PaooGame.States.PlayState o-- PaooGame.Maps.Map : map
PaooGame.States.SettingsState -up-|> PaooGame.States.State
PaooGame.States.State o-- PaooGame.RefLinks : refLink
PaooGame.Tiles.GrassTile -up-|> PaooGame.Tiles.Tile
PaooGame.Tiles.MountainTile -up-|> PaooGame.Tiles.Tile
PaooGame.Tiles.SoilTile -up-|> PaooGame.Tiles.Tile
PaooGame.Tiles.TreeTile -up-|> PaooGame.Tiles.Tile
PaooGame.Tiles.WaterTile -up-|> PaooGame.Tiles.Tile
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 |
ed177681b14349e3d941d479646487264626a209 | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /4.Behavioral Design Patterns/7.Observer/src/main/resources/diagram/ObserverClassDiagram.puml | 0ed6d362766f718fdb06433d44f00fa19fba1429 | [] | 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 | 750 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class Subject {
Attach (Observer)
Detach (Observer)
Notify ()
}
note left of Subject::Notify
for all o in observers {
o -> Update()
}
end note
class ConcreteSubject {
subjectState
GetState ()
Detach ()
}
note left of ConcreteSubject::GetState
return subjectState
end note
class Observer {
Update()
}
hide Observer members
show Observer methods
class ConcreteObserver {
observerState
Update ()
}
note right of ConcreteObserver::Update
observerState = subject -> GetState()
end note
Subject <|-- ConcreteSubject
Observer <|-- ConcreteObserver
Subject -right-> Observer : observers
ConcreteSubject -right-> ConcreteObserver : subject
@enduml | false | true | false | false | sequence |
e2fc6d17d2daaf7e83d90e143a3af0dcc1d08a0b | 28b7c4adfb32998ef9f08ade774a3280d0c5f725 | /designpatterns/store_inventory.plantuml | 58c30e36d271a825c46864875cc1e087d1bc60d3 | [] | no_license | laurenpengyan/advancedjava | 1cd41c635b6d5647d7a820f8b1f244033fe918d0 | aa1e9fd9b9770fa007b427a0ec4c4cc37d8b076f | refs/heads/master | 2020-04-17T13:00:06.998926 | 2019-05-12T01:36:15 | 2019-05-12T01:36:15 | 166,598,597 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,353 | plantuml | @startuml
title Store Inventory
class Product {
+name:String
+code:int
.. Methods ..
+show()
+getName(): String
+getCode(): int
+setName(): StringÍ
+setCode() :int
}
class Clothing {
+size: String
+idealFor: String
.. Methods ..
+show(): void
+getSize(): String
+getIdealFor(): String
}
class Electronics {
+brand: String
+warranty: String
.. Methods ..
+show(): void
+getSize(): String
+getWarranty(): String
}
Product <|-- Clothing: Inheritance
Product <|-- Electronics: Inheritance
class Department {
{abstract} +getProduct(): Product
{abstract} +sell(product: Product)
}
class ClothingDepartment {
+getProduct(): Product
+sell(product: Product)
}
class ElectronicsDepartment {
+getProduct(): Product
+sell(product: Product)
}
Department <|-- ClothingDepartment: Inheritance
Department <|-- ElectronicsDepartment: Inheritance
note right of Department: Factory method pattern.\nDefines an abstract factory method getProduct().\nIt is used to get product from inventory to sell.
note bottom of ClothingDepartment: Concrete implementation of getProduct()\nto return clothing product from inventory.
note bottom of ElectronicsDepartment: Concrete implementation of getProduct()\nto return electronics product from inventory.
@enduml | false | true | true | false | class |
3aec3aeed5cf8eca9873d7c48bc270f2c2b8e012 | 71a886e08b95bc6eb6bcf83fee1e494a0be5c231 | /architecture/src/main/resources/diagrams/ext-claim-int/claims-int-component.puml | beabdaee6359c0e93da567040ce94d899e62b39c | [] | no_license | siarhei/java8 | 6cfce577f9c25daecc930042a71347998a5988e1 | 18201e75ddfca19415a63dbddfe031162c4738e2 | refs/heads/master | 2021-09-08T04:01:25.935910 | 2021-09-06T17:01:51 | 2021-09-06T17:01:51 | 147,394,381 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,025 | puml | @startuml
top to bottom direction
package "EIS" {
node "claims-int-app" {
[Claims Integration] as ci #lightgreen
}
node "ipb-app" {
[Base Claims] as bcl #lightblue
[Claims Integration Layer] as claims #lightgreen
bcl <.> claims : event driven
}
node "Messaging System" {
queue "Claims" as cq #lightgreen
queue "Payments" as pq #lightgreen
queue "Claims Status Update" as csupq #lightgreen
queue "Payments Status Update" as psuq #lightgreen
}
claims --> cq : read
cq <-- ci : write
claims --> pq : read
pq <-- ci : write
claims --> csupq : write
csupq <-- ci : read
claims --> psuq : write
psuq <-- ci : read
}
package "External Claims System" {
interface SOAP #red
[External Claims] as extcl #red
SOAP - extcl
ci <--> SOAP
}
legend
|= |= Type |
|<back:#red> </back>| Third Party |
|<back:#lightgreen> </back>| Integration |
|<back:#lightblue> </back>| EIS |
endlegend
@enduml | false | true | false | false | sequence |
ddfc4b504c922056b3ab28e6ff3f8fe492159583 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1130383/sprint2/sort_extension_1.puml | 48663ef9e439db36b99d0ba059a1842bb0c2a3c2 | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 369 | puml | @startuml doc-files/sort_extension_1.png
title: Class Diagram <<Analysis>>
class SortAction {
}
class SortMenu
class SortExtension {
-String NAME;
}
class SortUI
class JMenuItem
SortExtension -> SortUI : getUIExtension(UIController)
SortUI -> SortMenu : getMenu()
SortMenu -> JMenuItem : 'items'
JMenuItem o-> SortAction : action
@enduml
| false | true | false | false | sequence |
610cd436ccf4fb12e3bd9606c07ffa328161445f | 4d37d8ed5b25c85f0b62994ee16e075c1694049f | /src/Strategy/TYDP/before/before.puml | 923d1610f6a6249cca9aa5ad7183ec60c1a6beba | [] | no_license | kyamashiro/DesignPatterns | dd3bbe21f2d710ed5b088a0e3bc00d6dd8229eb5 | 605d3f48b78d1914e0926de8114741d3178f237e | refs/heads/master | 2020-04-12T10:21:50.580364 | 2018-12-23T14:49:01 | 2018-12-23T14:49:01 | 162,427,765 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 140 | puml | @startuml
class Client {
anOperation()
}
class DialectSpeaker {
sayWelcome()
sayThanks()
}
Client -r- DialectSpeaker
@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.